blob: 2c6c41f067e324cdfb7560449edd520f2709b203 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-rack/jack-rack-1.4.2.ebuild,v 1.1 2003/10/16 19:46:45 mholzer Exp $
DESCRIPTION="JACK Rack is an effects rack for the JACK low latency audio API."
HOMEPAGE="http://pkl.net/~node/jack-rack.html"
SRC_URI="http://pkl.net/~node/software/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="gnome"
DEPEND="media-libs/ladcca \
media-libs/liblrdf \
>=gtk+-2.0.6-r2 \
>=ladspa-sdk-1.12 \
dev-libs/libxml2 \
virtual/jack"
S=${WORKDIR}/${P}
src_compile() {
local myconf
use gnome || myconf="${myconf} --disable-gnome"
./configure ${myconf} \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
make || die
}
src_install() {
make DESTDIR=${D} install || die
}
|