blob: 1dea2ea0b801e81ba4df04d5eb3b5a61d15d9d95 (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
# Copyright 1999-2006 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.100.0-r1.ebuild,v 1.4 2006/01/07 01:30:42 vapier Exp $
inherit flag-o-matic eutils multilib
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="-alpha ~amd64 -hppa -ia64 -mips ~ppc ~ppc-macos -ppc64 -sparc ~x86"
IUSE="altivec alsa caps coreaudio doc debug jack-tmpfs mmx oss portaudio sndfile sse"
RDEPEND="dev-util/pkgconfig
sndfile? ( >=media-libs/libsndfile-1.0.0 )
sys-libs/ncurses
caps? ( sys-libs/libcap )
portaudio? ( =media-libs/portaudio-18* )
alsa? ( >=media-libs/alsa-lib-0.9.1 )
!media-sound/jack-cvs"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
pkg_setup() {
if ! use sndfile ; then
ewarn "sndfile not in USE flags. jack_rec will not be installed!"
fi
if use caps; then
if [[ "${KV:0:3}" == "2.4" ]]; then
einfo "will build jackstart for 2.4 kernel"
else
einfo "using compatibility symlink for jackstart"
fi
fi
}
src_unpack() {
unpack ${A}
cd ${S}
# the docs option is in upstream, I'll leave the pentium2 foobage
# for the x86 folks...... kito@gentoo.org
# Add doc option and fix --march=pentium2 in caps test
#epatch ${FILESDIR}/${PN}-doc-option.patch
# compile and install jackstart, see #92895, #94887
#if use caps ; then
# epatch ${FILESDIR}/${PN}-0.99.0-jackstart.patch
#fi
epatch ${FILESDIR}/${PN}-transport.patch
epatch ${FILESDIR}/${P}-coreaudio.patch
epatch ${FILESDIR}/${P}-driver_interface.patch
}
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
if use userland_Darwin ; then
append-flags -fno-common
use altivec && append-flags -force_cpusubtype_ALL \
-maltivec -mabi=altivec -mhard-float -mpowerpc-gfxopt
fi
use sndfile && \
export SNDFILE_CFLAGS="-I/usr/include" \
export SNDFILE_LIBS="-L/usr/$(get_libdir) -lsndfile"
econf \
$(use_enable altivec) \
$(use_enable alsa) \
$(use_enable caps capabilities) $(use_enable caps stripped-jackd) \
$(use_enable coreaudio) \
$(use_enable debug) \
$(use_enable mmx) \
$(use_enable oss) \
$(use_enable portaudio) \
$(use_enable sse) \
--with-pic \
${myconf} || die "configure failed"
emake || die "compilation failed"
if use caps && [[ "${KV:0:3}" == "2.4" ]]; then
einfo "Building jackstart for 2.4 kernel"
cd ${S}/jackd
emake jackstart || die "jackstart build failed."
fi
}
src_install() {
make DESTDIR=${D} datadir=${D}/usr/share install || die
if use caps; then
if [[ "${KV:0:3}" == "2.4" ]]; then
cd ${S}/jackd
dobin jackstart
else
dosym /usr/bin/jackd /usr/bin/jackstart
fi
fi
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
}
|