diff options
author | 2002-10-26 07:26:17 +0000 | |
---|---|---|
committer | 2002-10-26 07:26:17 +0000 | |
commit | 6baad1b62fc54d3c8e9ff2403048786053d3a4af (patch) | |
tree | 93ca910f26ac9f87667414aac3ca990cc8cf391c /media-sound/jack-audio-connection-kit | |
parent | Added missing changelog (diff) | |
download | historical-6baad1b62fc54d3c8e9ff2403048786053d3a4af.tar.gz historical-6baad1b62fc54d3c8e9ff2403048786053d3a4af.tar.bz2 historical-6baad1b62fc54d3c8e9ff2403048786053d3a4af.zip |
Updated dependancies. Added configure fixes for fltk
Diffstat (limited to 'media-sound/jack-audio-connection-kit')
3 files changed, 47 insertions, 4 deletions
diff --git a/media-sound/jack-audio-connection-kit/ChangeLog b/media-sound/jack-audio-connection-kit/ChangeLog index 40b0325ee98d..4d132ebaedf1 100644 --- a/media-sound/jack-audio-connection-kit/ChangeLog +++ b/media-sound/jack-audio-connection-kit/ChangeLog @@ -1,13 +1,20 @@ # ChangeLog for media-sound/jack-audio-connection-kit # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-audio-connection-kit/ChangeLog,v 1.1 2002/06/06 12:22:31 stroke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-audio-connection-kit/ChangeLog,v 1.2 2002/10/26 07:26:17 raker Exp $ + +*jack-audio-connection-kit-0.34.0-r1 (26 Oct 2002) + + 26 Oct 2002; Nick Hadaway <raker@gentoo.org> + jack-audio-connection-kit-0.34.0-r1.ebuild, + files/digest-jack-audio-connection-kit-0.34.0-r1 : + Added dependancies info for fltk and libsndfile. Added fixes for + detecting the fltk libraries. *jack-audio-connection-kit-0.34.0 (6 Jun 2002) - - 6 Jun 2002; Ryan Shaw <ryan.shaw@stanfordalumni.org> ChangeLog : + 6 Jun 2002; Ryan Shaw <ryan.shaw@stanfordalumni.org> ChangeLog : Added initial ChangeLog which should be updated whenever the package is updated in any way. This changelog is targetted to users. This means that the comments should well explained and written in clean English. The details about writing correct changelogs are explained in the skel.ChangeLog file which you - can find in the root directory of the portage repository.
\ No newline at end of file + can find in the root directory of the portage repository. diff --git a/media-sound/jack-audio-connection-kit/files/digest-jack-audio-connection-kit-0.34.0-r1 b/media-sound/jack-audio-connection-kit/files/digest-jack-audio-connection-kit-0.34.0-r1 new file mode 100644 index 000000000000..9de31feb1926 --- /dev/null +++ b/media-sound/jack-audio-connection-kit/files/digest-jack-audio-connection-kit-0.34.0-r1 @@ -0,0 +1 @@ +MD5 eddc87ae83e364edfd0e5289362757ba jack-audio-connection-kit-0.34.0.tar.gz 295629 diff --git a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.34.0-r1.ebuild b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.34.0-r1.ebuild new file mode 100644 index 000000000000..d02956c0df0b --- /dev/null +++ b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.34.0-r1.ebuild @@ -0,0 +1,35 @@ +# 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-r1.ebuild,v 1.1 2002/10/26 07:26:17 raker Exp $ + +IUSE="" + +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_rc2 + <media-libs/libsndfile-1.0.0 + >=x11-libs/fltk-1.1.0_rc7" + +src_compile() { + + export LDFLAGS="-L/usr/lib/fltk-1.1" + export CPPFLAGS="-I/usr/include/fltk-1.1" + + econf || die "./configure failed" + emake || die "compilation failed" +} + +src_install () { + + make DESTDIR=${D} DOC_DIR=${D}/usr/share/doc/${P} install || die + dodoc README +} |