diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-11-19 20:08:22 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-11-19 20:08:22 +0000 |
commit | 40709101acec89c705f1bfef933b7b27f98775b5 (patch) | |
tree | dad573a05846805a1b7b626faad4af4ed79ec136 /media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.99.0-r2.ebuild | |
parent | old (diff) | |
download | gentoo-2-40709101acec89c705f1bfef933b7b27f98775b5.tar.gz gentoo-2-40709101acec89c705f1bfef933b7b27f98775b5.tar.bz2 gentoo-2-40709101acec89c705f1bfef933b7b27f98775b5.zip |
Cleanup old ebuilds and patches.
(Portage version: 2.1.3.19)
Diffstat (limited to 'media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.99.0-r2.ebuild')
-rw-r--r-- | media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.99.0-r2.ebuild | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.99.0-r2.ebuild b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.99.0-r2.ebuild deleted file mode 100644 index 0b705bd70a8b..000000000000 --- a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.99.0-r2.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# 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.99.0-r2.ebuild,v 1.7 2007/08/04 12:28:54 grobian 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="alpha ~amd64 ~hppa ia64 ~mips ~ppc ppc64 ~sparc ~x86" -IUSE="altivec alsa caps doc debug jack-tmpfs oss portaudio" - -RDEPEND="dev-libs/glib - dev-util/pkgconfig - >=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} - 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 - epatch ${FILESDIR}/${P}-jackstart.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 - - 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 -} |