blob: fbb4abcd757bc4a72b7f1427e95eca68f7446e6c (
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
|
# Copyright 1999-2002 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.34.0.ebuild,v 1.4 2002/10/20 18:49:33 vapier Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A low-latency audio server"
HOMEPAGE="http://jackit.sourceforge.net/"
SRC_URI="mirrors://sourceforge/jackit/${P}.tar.gz"
# libjack is LGPL, the rest is GPL
SLOT="0"
LICENSE="GPL-2 LGPL-2.1"
KEYWORDS="x86"
DEPEND="dev-libs/glib
>=media-libs/alsa-lib-0.9.0_rc1"
src_compile() {
econf || die "./configure failed"
emake || die "compilation failed"
}
src_install () {
make DESTDIR=${D} DOC_DIR=${D}/usr/share/doc/${P} install || die
dodoc README
}
|