blob: a0cdf2c4eaf2926f1f47b501df681fe3d0a46091 (
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.4.ebuild,v 1.1 2005/10/15 11:21:42 matsuu 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
}
|