blob: 0ea14e8f7cc2e52e1b60f5811f81ccf880e8580c (
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-2010 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.7-r1.ebuild,v 1.4 2010/10/24 16:41:10 armin76 Exp $
EAPI=2
WANT_AUTOMAKE="1.9"
inherit autotools eutils
DESCRIPTION="JACK Rack is an effects rack for the JACK low latency audio API."
HOMEPAGE="http://jack-rack.sourceforge.net/"
SRC_URI="mirror://sourceforge/jack-rack/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="alsa gnome lash nls xml"
RDEPEND=">=x11-libs/gtk+-2
>=media-libs/ladspa-sdk-1.12
media-sound/jack-audio-connection-kit
alsa? ( media-libs/alsa-lib )
lash? ( >=media-sound/lash-0.5 )
gnome? ( >=gnome-base/libgnomeui-2 )
nls? ( virtual/libintl )
xml? ( dev-libs/libxml2
media-libs/liblrdf )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
src_prepare() {
epatch "${FILESDIR}"/${PN}-1.4.5-asneeded.patch
epatch "${FILESDIR}"/${PN}-1.4.6-noalsa.patch
eautomake
}
src_configure() {
local myconf="--disable-ladcca --enable-desktop-inst"
econf \
$(use_enable alsa aseq) \
$(use_enable gnome) \
$(use_enable lash) \
$(use_enable nls) \
$(use_enable xml) \
$(use_enable xml lrdf ) \
--disable-dependency-tracking \
${myconf}
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS BUGS ChangeLog NEWS README THANKS TODO WISHLIST
}
|