diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-07-11 22:42:35 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-07-11 22:42:35 +0000 |
commit | be5b5856da6e4caed371d9eb41d82ea62be8c605 (patch) | |
tree | a87c4fbfd08906d7efd787591552bbfbafa135bd /media-libs/libfishsound | |
parent | Version bump. (diff) | |
download | historical-be5b5856da6e4caed371d9eb41d82ea62be8c605.tar.gz historical-be5b5856da6e4caed371d9eb41d82ea62be8c605.tar.bz2 historical-be5b5856da6e4caed371d9eb41d82ea62be8c605.zip |
Remove old.
Package-Manager: portage-2.2.0_alpha116/cvs/Linux x86_64
Diffstat (limited to 'media-libs/libfishsound')
-rw-r--r-- | media-libs/libfishsound/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/libfishsound/libfishsound-0.9.1.ebuild | 42 | ||||
-rw-r--r-- | media-libs/libfishsound/libfishsound-0.9.2.ebuild | 48 |
3 files changed, 5 insertions, 91 deletions
diff --git a/media-libs/libfishsound/ChangeLog b/media-libs/libfishsound/ChangeLog index a1656f24e321..5318b20fdb6e 100644 --- a/media-libs/libfishsound/ChangeLog +++ b/media-libs/libfishsound/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libfishsound # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.14 2012/05/23 16:21:03 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/ChangeLog,v 1.15 2012/07/11 22:38:52 radhermit Exp $ + + 11 Jul 2012; Tim Harder <radhermit@gentoo.org> -libfishsound-0.9.1.ebuild, + -libfishsound-0.9.2.ebuild: + Remove old. 23 May 2012; Johannes Huber <johu@gentoo.org> libfishsound-1.0.0.ebuild: Stable for x86, wrt bug #393779 diff --git a/media-libs/libfishsound/libfishsound-0.9.1.ebuild b/media-libs/libfishsound/libfishsound-0.9.1.ebuild deleted file mode 100644 index 51ef09402191..000000000000 --- a/media-libs/libfishsound/libfishsound-0.9.1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-0.9.1.ebuild,v 1.4 2010/03/08 06:35:48 sping Exp $ - -DESCRIPTION="Simple programming interface for decoding and encoding audio data using vorbis or speex" -HOMEPAGE="http://www.xiph.org/fishsound/" -SRC_URI="http://downloads.xiph.org/releases/libfishsound/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc vorbis" - -RDEPEND="vorbis? ( media-libs/libvorbis media-libs/libogg ) - media-libs/speex" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen virtual/latex-base )" - -src_unpack() { - unpack ${A} - cd "${S}" - use doc || sed -i -e "s/doxygen/doxygen-dummy/" configure - rm -rf "${S}/doc/libfishsound" -} - -src_compile() { - local myconf - use vorbis || myconf="--disable-vorbis" - econf $myconf - - emake || die "emake failed" - if use doc; then - export VARTEXFONTS="${T}/fonts" - cd "${S}/doc/libfishsound/latex" - emake refman.ps || die "failed to create refman.ps" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog README -} diff --git a/media-libs/libfishsound/libfishsound-0.9.2.ebuild b/media-libs/libfishsound/libfishsound-0.9.2.ebuild deleted file mode 100644 index 042d6ce1392f..000000000000 --- a/media-libs/libfishsound/libfishsound-0.9.2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libfishsound/libfishsound-0.9.2.ebuild,v 1.4 2012/05/05 08:02:35 jdhore Exp $ - -DESCRIPTION="Simple programming interface for decoding and encoding audio data using vorbis or speex" -HOMEPAGE="http://www.xiph.org/fishsound/" -SRC_URI="http://downloads.xiph.org/releases/libfishsound/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc speex" - -RDEPEND="media-libs/libvorbis media-libs/libogg - speex? ( media-libs/speex )" -# flac? ( media-libs/flac )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-doc/doxygen virtual/latex-base )" - -src_unpack() { - unpack ${A} - cd "${S}" - use doc || sed -i -e "s/doxygen/doxygen-dummy/" configure - rm -rf "${S}/doc/libfishsound" -} - -src_compile() { - local myconf="" - # use flac || - # disable it for now, it causes compile failures in sonic-visualiser because - # it adds -I/usr/include/FLAC to pkgconfig cflags... - myconf="$myconf --disable-flac" - use speex || myconf="$myconf --disable-speex" - econf $myconf - - emake || die "emake failed" - if use doc; then - export VARTEXFONTS="${T}/fonts" - cd "${S}/doc/libfishsound/latex" - emake refman.ps || die "failed to create refman.ps" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog README -} |