summaryrefslogtreecommitdiff
blob: 78b661c0365549d56cd60b807811f57375da3368 (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
# Copyright 1999-2004 Gentoo Foundation
# 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.7 2004/06/25 00:07:00 agriffis Exp $

DESCRIPTION="JACK Rack is an effects rack for the JACK low latency audio API."
HOMEPAGE="http://arb.bash.sh/~rah/software/jack-rack/"
SRC_URI="http://arb.bash.sh/~rah/software/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"

# ~arch because of bug #43572
KEYWORDS="~x86"

IUSE="gnome"

DEPEND="media-libs/ladcca \
	media-libs/liblrdf \
	>=x11-libs/gtk+-2.0.6-r2 \
	>=media-libs/ladspa-sdk-1.12 \
	dev-libs/libxml2 \
	media-sound/jack-audio-connection-kit"

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
}