diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-07-28 19:39:00 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-07-28 19:39:00 +0000 |
commit | 6bcb5b5d84ce19ef71c265bd5492f67baba0c655 (patch) | |
tree | 96f3e2be13b253027b3281d0a20316bd1da499c6 /media-libs/fdk-aac | |
parent | keyword ~amd64-fbsd, bug #477750 (diff) | |
download | gentoo-2-6bcb5b5d84ce19ef71c265bd5492f67baba0c655.tar.gz gentoo-2-6bcb5b5d84ce19ef71c265bd5492f67baba0c655.tar.bz2 gentoo-2-6bcb5b5d84ce19ef71c265bd5492f67baba0c655.zip |
remove old
(Portage version: 2.2.0_alpha190/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/fdk-aac')
-rw-r--r-- | media-libs/fdk-aac/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/fdk-aac/fdk-aac-0.1.0.ebuild | 47 |
2 files changed, 4 insertions, 48 deletions
diff --git a/media-libs/fdk-aac/ChangeLog b/media-libs/fdk-aac/ChangeLog index 1a2de1832c91..f93876a4dea2 100644 --- a/media-libs/fdk-aac/ChangeLog +++ b/media-libs/fdk-aac/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/fdk-aac # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/fdk-aac/ChangeLog,v 1.9 2013/06/29 15:30:19 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/fdk-aac/ChangeLog,v 1.10 2013/07/28 19:39:00 aballier Exp $ + + 28 Jul 2013; Alexis Ballier <aballier@gentoo.org> -fdk-aac-0.1.0.ebuild: + remove old 29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> fdk-aac-0.1.1.ebuild: Stable for arm, wrt bug #473302 diff --git a/media-libs/fdk-aac/fdk-aac-0.1.0.ebuild b/media-libs/fdk-aac/fdk-aac-0.1.0.ebuild deleted file mode 100644 index 0a45dc3900ff..000000000000 --- a/media-libs/fdk-aac/fdk-aac-0.1.0.ebuild +++ /dev/null @@ -1,47 +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/fdk-aac/fdk-aac-0.1.0.ebuild,v 1.3 2012/11/14 17:05:39 lu_zero Exp $ - -EAPI=4 - -if [[ ${PV} == *9999 ]] ; then - SCM="git" - EGIT_REPO_URI="git://github.com/mstorsjo/${PN}.git" - [[ ${PV%9999} != "" ]] && EGIT_BRANCH="release/${PV%.9999}" -fi - -inherit eutils multilib autotools ${SCM} - -DESCRIPTION="Fraunhofer AAC codec library" -HOMEPAGE="http://sourceforge.net/projects/opencore-amr/" - -if [[ ${PV} == *9999 ]] ; then - SRC_URI="" -elif [[ ${PV%_p*} != ${PV} ]] ; then # Gentoo snapshot - SRC_URI="mirror://gentoo/${P}.tar.xz" -else # Official release - SRC_URI="mirror://sourceforge/opencore-amr/${P}.tar.gz" -fi - -LICENSE="FraunhoferFDK" -SLOT="0" - -[[ ${PV} == *9999 ]] || \ -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~x64-macos" -IUSE="static-libs" - -src_prepare() { - [[ ${PV} == *9999 ]] && eautoreconf -} - -src_configure() { - econf \ - --disable-silent-rules \ - --disable-dependency-tracking \ - $(use_enable static-libs static) -} - -src_install() { - emake DESTDIR="${D}" install || die - find "${D}"usr/$(get_libdir) -name '*.la' -delete -} |