blob: 2aba907e8e2feaca594906fb27999ce958dab1a1 (
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
|
# 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-audio-connection-kit/jack-audio-connection-kit-0.71.2-r1.ebuild,v 1.3 2003/09/10 05:08:45 msterret Exp $
IUSE="doc jack-tmpfs"
DESCRIPTION="A low-latency audio server"
HOMEPAGE="http://jackit.sourceforge.net/"
SRC_URI="mirror://sourceforge/jackit/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
KEYWORDS="x86 ~ppc"
DEPEND="dev-libs/glib
>=media-libs/alsa-lib-0.9.0_rc6
>=media-libs/libsndfile-1.0.0
!media-sound/jack-cvs
doc? ( app-doc/doxygen )"
PROVIDE="virtual/jack"
src_compile() {
local myconf
use doc \
&& myconf="--with-html-dir=/usr/share/doc/${PF}/html" \
|| myconf="--without-html-dir"
use jack-tmpfs && myconf="${myconf} --with-default-tmpdir=/dev/shm"
econf ${myconf} || die "configure failed"
emake || die "compilation failed"
}
src_install() {
use doc && dodir /usr/share/doc/${PF}/html
make \
DESTDIR=${D} \
datadir=${D}/usr/share \
install || die
use doc && mv \
${D}/usr/share/jack-audio-connection-kit/reference/html/* \
${D}/usr/share/doc/${PF}/html
use doc && rm -rf ${D}/usr/share/jack-audio-connection-kit
}
|