diff options
author | 2016-09-14 20:58:55 +0200 | |
---|---|---|
committer | 2016-09-14 21:00:10 +0200 | |
commit | 1bec0af9862755d173b3bd3d76436e2c2da16d16 (patch) | |
tree | 9f87be0d9d296a174dc6a1b225fde836efb5af1e /media-libs/fdk-aac | |
parent | media-libs/fdk-aac: Allow for compiling with GCC 6 (diff) | |
download | gentoo-1bec0af9862755d173b3bd3d76436e2c2da16d16.tar.gz gentoo-1bec0af9862755d173b3bd3d76436e2c2da16d16.tar.bz2 gentoo-1bec0af9862755d173b3bd3d76436e2c2da16d16.zip |
media-libs/fdk-aac: Remove old ebuild
Package-Manager: portage-2.3.0
Diffstat (limited to 'media-libs/fdk-aac')
-rw-r--r-- | media-libs/fdk-aac/fdk-aac-0.1.4.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/media-libs/fdk-aac/fdk-aac-0.1.4.ebuild b/media-libs/fdk-aac/fdk-aac-0.1.4.ebuild deleted file mode 100644 index 3923033057d5..000000000000 --- a/media-libs/fdk-aac/fdk-aac-0.1.4.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -if [[ ${PV} == *9999 ]] ; then - SCM="git" - EGIT_REPO_URI="git://github.com/mstorsjo/${PN}.git" - [[ ${PV%9999} != "" ]] && EGIT_BRANCH="release/${PV%.9999}" - AUTOTOOLS_AUTORECONF=yes -fi - -inherit autotools-multilib ${SCM} - -DESCRIPTION="Fraunhofer AAC codec library" -HOMEPAGE="https://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" -# subslot == N where N is libfdk-aac.so.N -SLOT="0/1" - -[[ ${PV} == *9999 ]] || \ -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-macos" -IUSE="static-libs examples" - -AUTOTOOLS_PRUNE_LIBTOOL_FILES=all - -src_configure() { - local myeconfargs=( - "$(use_enable examples example)" - ) - autotools-multilib_src_configure -} - -src_install() { - autotools-multilib_src_install - use examples && mv "${ED}/usr/bin/aac-enc" "${ED}/usr/bin/fdk-aac-enc" -} - -pkg_postinst() { - use examples && einfo "aac-enc was renamed to fdk-aac-enc to prevent file collision with other packages" -} |