summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2017-06-16 11:25:31 +0200
committerAlexis Ballier <aballier@gentoo.org>2017-06-16 11:36:30 +0200
commite30e931275c8520846ed552c4926e402192218e8 (patch)
treed2ff0164ed494b1f00066f1067ddf4c2a94efa63 /media-libs/fdk-aac/fdk-aac-0.1.2.ebuild
parentmedia-libs/xvid: keyword ~arm64 (diff)
downloadgentoo-e30e931275c8520846ed552c4926e402192218e8.tar.gz
gentoo-e30e931275c8520846ed552c4926e402192218e8.tar.bz2
gentoo-e30e931275c8520846ed552c4926e402192218e8.zip
media-libs/fdk-aac: remove old
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'media-libs/fdk-aac/fdk-aac-0.1.2.ebuild')
-rw-r--r--media-libs/fdk-aac/fdk-aac-0.1.2.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/media-libs/fdk-aac/fdk-aac-0.1.2.ebuild b/media-libs/fdk-aac/fdk-aac-0.1.2.ebuild
deleted file mode 100644
index cb190b6eb8ae..000000000000
--- a/media-libs/fdk-aac/fdk-aac-0.1.2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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"
-SLOT="0"
-
-[[ ${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"
-}