blob: 8d760276d9294bc02a6e9d375d788b67725d2818 (
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
45
46
47
48
49
50
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.1.3.ebuild,v 1.5 2003/12/18 23:09:17 mholzer Exp $
inherit eutils
DESCRIPTION="A free, crossplatform audio editor."
HOMEPAGE="http://audacity.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.tgz"
RESTRICT="nomirror"
LICENSE="GPL-2"
IUSE="encode oggvorbis"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=x11-libs/wxGTK-2.2.9
>=app-arch/zip-2.3
>=media-sound/mad-0.14
>=media-libs/id3lib-3.8.0
>=media-libs/libsndfile-1.0.0
>=media-libs/libsamplerate-0.0.14
>=dev-libs/fftw-2.1.3
>=media-libs/ladspa-sdk-1.12
oggvorbis? ( >=media-libs/libvorbis-1.0 )
encode? ( >=media-sound/lame-3.92 )"
S="${WORKDIR}/${PN}-src-${PV}"
src_unpack() {
if [ `use gtk2` ]; then
eerror ""
eerror "Audacity will not build with wxGTK compiled"
eerror "against gtk2. Make sure you have set"
eerror "-gtk2 in use for this program to compile"
eerror ""
die "Make sure -gtk2 is in USE"
fi
unpack ${PN}-src-${PV}.tgz
}
src_compile() {
econf --with-libsndfile=system --without-libflac || die
MAKEOPTS=-j1 emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc LICENSE.txt README.txt
}
|