blob: ca55f02601e0f30fe0c35c84ac2e775939199ceb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/wavesurfer/wavesurfer-1.8.1.ebuild,v 1.3 2005/10/18 14:00:17 gustavoz Exp $
inherit eutils
DESCRIPTION="tool for recording, playing, editing, viewing and labeling of audio"
HOMEPAGE="http://www.speech.kth.se/wavesurfer/"
SRC_URI="http://www.speech.kth.se/wavesurfer/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc ~ppc64 sparc x86"
IUSE=""
RDEPEND=">=dev-tcltk/snack-2.2.4"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e 's/wish[0-9.]\+/wish/' wavesurfer.tcl || die
}
src_install() {
local mydir="wsurf${PV%.*}"
newbin wavesurfer.tcl wavesurfer
dodir /usr/$(get_libdir)/${mydir}
cp -r ${mydir} ${D}/usr/$(get_libdir)/
insinto /usr/$(get_libdir)/${mydir}/plugins
doins plugins/*.plug
insinto /usr/$(get_libdir)/${mydir}/icons
doins icons/*
dodoc README.txt
dohtml doc/*
for mydir in demos msgs python tools
do
docinto ${mydir}
dodoc ${mydir}/*
done
}
|