blob: 1cfde881fc9a6a71f55b32989df157ac1e5842e3 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.99.0-r3.ebuild,v 1.6 2008/04/13 18:56:36 drac Exp $
inherit flag-o-matic eutils
DESCRIPTION="A low-latency audio server"
HOMEPAGE="http://jackit.sourceforge.net/"
SRC_URI="mirror://sourceforge/jackit/${P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~mips"
IUSE="altivec alsa caps doc debug jack-tmpfs oss portaudio"
RDEPEND="dev-libs/glib
>=media-libs/libsndfile-1.0.0
sys-libs/ncurses
caps? ( sys-libs/libcap )
portaudio? ( media-libs/portaudio )
alsa? ( >=media-libs/alsa-lib-0.9.1 )
!media-sound/jack-cvs"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( app-doc/doxygen )"
src_unpack() {
unpack ${A}
cd "${S}"
# Add doc option and fix --march=pentium2 in caps test
epatch "${FILESDIR}"/${PN}-0.98.1-configure.patch && \
WANT_AUTOCONF=2.5 autoconf
# compile and install jackstart, see #92895, #94887
if use caps ; then
epatch "${FILESDIR}"/${P}-jackstart.patch
fi
}
src_compile() {
local myconf
sed -i "s/^CFLAGS=\$JACK_CFLAGS/CFLAGS=\"\$JACK_CFLAGS $(get-flag -march)\"/" configure
if use doc; then
myconf="--enable-html-docs --with-html-dir=/usr/share/doc/${PF}"
else
myconf="--disable-html-docs"
fi
if use jack-tmpfs; then
myconf="${myconf} --with-default-tmpdir=/dev/shm"
else
myconf="${myconf} --with-default-tmpdir=/var/run/jack"
fi
econf \
$(use_enable altivec) \
$(use_enable alsa) \
$(use_enable caps capabilities) $(use_enable caps stripped-jackd) \
$(use_enable debug) \
$(use_enable oss) \
$(use_enable portaudio) \
${myconf} || die "configure failed"
emake || die "compilation failed"
}
src_install() {
make DESTDIR="${D}" datadir="${D}/usr/share" install || die
if ! use jack-tmpfs; then
keepdir /var/run/jack
chmod 4777 "${D}"/var/run/jack
fi
if use doc; then
mv "${D}"/usr/share/doc/${PF}/reference/html \
"${D}"/usr/share/doc/${PF}/
mv "${S}"/example-clients \
"${D}"/usr/share/doc/${PF}/
fi
rm -rf "${D}"/usr/share/doc/${PF}/reference
}
|