diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-19 22:33:05 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-19 22:33:05 +0000 |
commit | 70de76855692dcd5fc209d5064ef81c601402061 (patch) | |
tree | 3dbcca4448c1b79c087ff202ffabd45f0e29daf1 /media-sound/jack-audio-connection-kit | |
parent | keyworded ~arch for ppc64, bug 272075 (diff) | |
download | gentoo-2-70de76855692dcd5fc209d5064ef81c601402061.tar.gz gentoo-2-70de76855692dcd5fc209d5064ef81c601402061.tar.bz2 gentoo-2-70de76855692dcd5fc209d5064ef81c601402061.zip |
remove old
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/jack-audio-connection-kit')
4 files changed, 6 insertions, 217 deletions
diff --git a/media-sound/jack-audio-connection-kit/ChangeLog b/media-sound/jack-audio-connection-kit/ChangeLog index 6d1c1f6f8555..8ef70b2ea22c 100644 --- a/media-sound/jack-audio-connection-kit/ChangeLog +++ b/media-sound/jack-audio-connection-kit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/jack-audio-connection-kit # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-audio-connection-kit/ChangeLog,v 1.120 2009/02/19 08:04:02 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/jack-audio-connection-kit/ChangeLog,v 1.121 2009/06/19 22:33:05 aballier Exp $ + + 19 Jun 2009; Alexis Ballier <aballier@gentoo.org> + -jack-audio-connection-kit-0.103.0.ebuild, + -jack-audio-connection-kit-0.116.1.ebuild, metadata.xml: + remove old *jack-audio-connection-kit-0.116.2 (19 Feb 2009) diff --git a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.103.0.ebuild b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.103.0.ebuild deleted file mode 100644 index b24abd9423b5..000000000000 --- a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.103.0.ebuild +++ /dev/null @@ -1,149 +0,0 @@ -# Copyright 1999-2008 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.103.0.ebuild,v 1.17 2008/12/03 05:58:09 ssuominen Exp $ - -inherit flag-o-matic eutils multilib linux-info autotools multilib - -NETJACK=netjack-0.12 - -DESCRIPTION="A low-latency audio server" -HOMEPAGE="http://www.jackaudio.org" -SRC_URI="mirror://sourceforge/jackit/${P}.tar.gz netjack? ( mirror://sourceforge/netjack/${NETJACK}.tar.bz2 )" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86" -IUSE="altivec alsa caps coreaudio doc debug jack-tmpfs mmx oss sse netjack cpudetection" - -RDEPEND=">=media-libs/libsndfile-1.0.0 - sys-libs/ncurses - caps? ( sys-libs/libcap ) - alsa? ( >=media-libs/alsa-lib-0.9.1 ) - netjack? ( media-libs/libsamplerate ) - !media-sound/jack-cvs" - -DEPEND="${RDEPEND} - dev-util/pkgconfig - doc? ( app-doc/doxygen ) - netjack? ( dev-util/scons )" - -pkg_setup() { - if use caps; then - if kernel_is 2 4 ; then - einfo "will build jackstart for 2.4 kernel" - else - einfo "using compatibility symlink for jackstart" - fi - fi - - if use netjack; then - einfo "including support for experimental netjack, see http://netjack.sourceforge.net/" - fi -} - -src_unpack() { - unpack ${A} - - cd "${S}" - epatch "${FILESDIR}/${PN}-transport.patch" - epatch "${FILESDIR}/${P}-riceitdown.patch" - epatch "${FILESDIR}/${P}-ppc64fix.patch" - - eautoreconf -} - -src_compile() { - local myconf="" - - if use jack-tmpfs; then - myconf="${myconf} --with-default-tmpdir=/dev/shm" - else - myconf="${myconf} --with-default-tmpdir=/var/run/jack" - fi - - if [[ ${CHOST} == *-darwin* ]] ; then - append-flags -fno-common - use altivec && append-flags -force_cpusubtype_ALL \ - -maltivec -mabi=altivec -mhard-float -mpowerpc-gfxopt - fi - - # CPU Detection (dynsimd) uses asm routines which requires 3dnow, mmx and sse. - # Also, without -O2 it will not compile as well. - # we test if it is present before enabling the configure flag. - if use cpudetection ; then - if (! grep 3dnow /proc/cpuinfo >/dev/null) ; then - ewarn "Can't build cpudetection (dynsimd) without cpu 3dnow support. see bug #136565." - elif (! grep sse /proc/cpuinfo >/dev/null) ; then - ewarn "Can't build cpudetection (dynsimd) without cpu sse support. see bug #136565." - elif (! grep mmx /proc/cpuinfo >/dev/null) ; then - ewarn "Can't build cpudetection (dynsimd) without cpu mmx support. see bug #136565." - else - einfo "Enabling cpudetection (dynsimd). Adding -mmmx, -msse, -m3dnow and -O2 to CFLAGS." - myconf="${myconf} --enable-dynsimd" - - filter-flags -O* - append-flags -mmmx -msse -m3dnow -O2 - fi - fi - - use doc || export ac_cv_prog_HAVE_DOXYGEN=false - - econf \ - $(use_enable altivec) \ - $(use_enable alsa) \ - $(use_enable caps capabilities) \ - $(use_enable coreaudio) \ - $(use_enable debug) \ - $(use_enable mmx) \ - $(use_enable oss) \ - --disable-portaudio \ - $(use_enable sse) \ - --with-html-dir=/usr/share/doc/${PF} \ - --disable-dependency-tracking \ - ${myconf} || die "configure failed" - emake || die "compilation failed" - - if use caps && kernel_is 2 4 ; then - einfo "Building jackstart for 2.4 kernel" - cd "${S}/jackd" - emake jackstart || die "jackstart build failed." - fi - - if use netjack; then - cd "${WORKDIR}/${NETJACK}" - scons jack_source_dir="${S}" - fi - -} - -src_install() { - make DESTDIR="${D}" install || die - - if use caps; then - if kernel_is 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 - insinto /usr/share/doc/${PF} - doins -r "${S}/example-clients" - fi - - if use netjack; then - cd "${WORKDIR}/${NETJACK}" - dobin alsa_in - dobin alsa_out - dobin jacknet_client - insinto /usr/$(get_libdir)/jack - doins jack_net.so - fi -} diff --git a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.116.1.ebuild b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.116.1.ebuild deleted file mode 100644 index 46da111b2f0a..000000000000 --- a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.116.1.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2008 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.116.1.ebuild,v 1.2 2008/12/14 20:18:33 armin76 Exp $ - -inherit flag-o-matic eutils multilib multilib - -DESCRIPTION="A low-latency audio server" -HOMEPAGE="http://www.jackaudio.org" -SRC_URI="http://www.jackaudio.org/downloads/${P}.tar.gz" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="-alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86" -IUSE="3dnow altivec alsa coreaudio doc debug examples mmx oss sse cpudetection" - -RDEPEND=">=media-libs/libsndfile-1.0.0 - sys-libs/ncurses - alsa? ( >=media-libs/alsa-lib-0.9.1 ) - media-libs/libsamplerate - !media-sound/jack-cvs" -DEPEND="${RDEPEND} - dev-util/pkgconfig - doc? ( app-doc/doxygen )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${PN}-sparc-cpuinfo.patch" -} - -src_compile() { - local myconf="" - - # CPU Detection (dynsimd) uses asm routines which requires 3dnow, mmx and sse. - if use cpudetection && use 3dnow && use mmx && use sse ; then - einfo "Enabling cpudetection (dynsimd). Adding -mmmx, -msse, -m3dnow and -O2 to CFLAGS." - myconf="${myconf} --enable-dynsimd" - append-flags -mmmx -msse -m3dnow -O2 - fi - - use doc || export ac_cv_prog_HAVE_DOXYGEN=false - - econf \ - $(use_enable altivec) \ - $(use_enable alsa) \ - $(use_enable coreaudio) \ - $(use_enable debug) \ - $(use_enable mmx) \ - $(use_enable oss) \ - --disable-portaudio \ - $(use_enable sse) \ - --with-html-dir=/usr/share/doc/${PF} \ - --disable-dependency-tracking \ - ${myconf} || die "configure failed" - emake || die "compilation failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "install failed" - dodoc AUTHORS TODO README - - if use examples; then - insinto /usr/share/doc/${PF} - doins -r "${S}/example-clients" - fi -} diff --git a/media-sound/jack-audio-connection-kit/metadata.xml b/media-sound/jack-audio-connection-kit/metadata.xml index be02cc13b5fb..e1255d00b059 100644 --- a/media-sound/jack-audio-connection-kit/metadata.xml +++ b/media-sound/jack-audio-connection-kit/metadata.xml @@ -5,7 +5,6 @@ <use> <flag name="coreaudio">Build the CoreAudio driver on Mac OS X systems</flag> <flag name="cpudetection">Enables runtime cpudetection</flag> - <flag name="jack-tmpfs">Compile in a tmpf path</flag> <flag name="netjack">Build with support for Realtime Audio Transport over generic IP</flag> </use> </pkgmetadata> |