blob: 2098cf53d5448f9eccebd31a786e2ca230d3a61a (
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
51
52
53
54
55
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/beast/beast-0.5.4.ebuild,v 1.7 2005/02/18 21:31:42 chainsaw Exp $
inherit eutils
IUSE="debug mad static"
DESCRIPTION="BEAST - the Bedevilled Sound Engine"
HOMEPAGE="http://beast.gtk.org"
SRC_URI="ftp://beast.gtk.org/pub/beast/v${PV%.[0-9]}/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
KEYWORDS="~x86"
SLOT="0"
RDEPEND=">=dev-libs/glib-2.0
>=x11-libs/gtk+-2.0.0
>=sys-libs/zlib-1.1.3
>=dev-util/guile-1.6
>=media-libs/libart_lgpl-2.3.8
>=gnome-base/libgnomecanvas-2.0
>=media-libs/libogg-1.0
>=media-libs/libvorbis-1.0
mad? ( media-sound/madplay )"
DEPEND="dev-util/pkgconfig
dev-lang/perl
media-libs/ladspa-cmt
media-libs/ladspa-sdk
${RDEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/docs-reorg-0.5.4.patch
}
src_compile() {
local myconf="--with-gnu-ld"
use debug || myconf="${myconf} --disable-debug"
use static || myconf="${myconf} --disable-static"
econf ${myconf} || die "configure failed"
emake || die "configure failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS ChangeLog COPYING NEWS README TODO
}
|