diff options
author | Alexis Ballier <aballier@gentoo.org> | 2017-02-11 11:59:26 +0100 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2017-02-11 12:03:34 +0100 |
commit | e36582f873b58231948cba2183fda4790ba31391 (patch) | |
tree | 93a50b4859cc21626e5c09bf61b773e06d123ff5 /media-libs/vo-aacenc | |
parent | net-p2p/syncthing: remove old (diff) | |
download | gentoo-e36582f873b58231948cba2183fda4790ba31391.tar.gz gentoo-e36582f873b58231948cba2183fda4790ba31391.tar.bz2 gentoo-e36582f873b58231948cba2183fda4790ba31391.zip |
media-libs/vo-aacenc: remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'media-libs/vo-aacenc')
-rw-r--r-- | media-libs/vo-aacenc/Manifest | 1 | ||||
-rw-r--r-- | media-libs/vo-aacenc/vo-aacenc-0.1.2.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/media-libs/vo-aacenc/Manifest b/media-libs/vo-aacenc/Manifest index 4b9679faccc1..c035bfa76dc3 100644 --- a/media-libs/vo-aacenc/Manifest +++ b/media-libs/vo-aacenc/Manifest @@ -1,2 +1 @@ -DIST vo-aacenc-0.1.2.tar.gz 599983 SHA256 d1911edba77f0406aa45ef630cdf340a4f35fd42e1d37a6e3ee01365d86f3959 SHA512 28eb60656738c205b3e7734b997691246b6786d4a11ff6ad32d6e2b512cc0c8ddaeec352f69bc7006923a9b66c90fb9b8679bb52d9954cb3152f4aa780051427 WHIRLPOOL 8390428255d61daa4b9fe9b9233cacb45ec89a34761995cf6ebb88803883e6cbfade492a204aae96abb392d6cf7613c9bb12dc3318ef2fb5c19aa84aafb40ba8 DIST vo-aacenc-0.1.3.tar.gz 612463 SHA256 e51a7477a359f18df7c4f82d195dab4e14e7414cbd48cf79cc195fc446850f36 SHA512 c8f00dfa758270ba9cad35dd6e24905dc7cf33d7717454b7c2c56c40dbf54f682450aa010a410a0350d70119d2aaa2e5ba4471b5bbe05ccec1f9d20ab3e57853 WHIRLPOOL 92a969fca0f2ab6758cb6d2a0f7e56991ceeb3ff6c1d68d7731008c3c31ebdaa222211d6153b6a125ddbcc529f65652ce64d902d6a533d3d3782946f764c76a3 diff --git a/media-libs/vo-aacenc/vo-aacenc-0.1.2.ebuild b/media-libs/vo-aacenc/vo-aacenc-0.1.2.ebuild deleted file mode 100644 index 7218a7f471eb..000000000000 --- a/media-libs/vo-aacenc/vo-aacenc-0.1.2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -if [[ ${PV} == *9999 ]] ; then - SCM="git-2" - EGIT_REPO_URI="git://github.com/mstorsjo/${PN}.git" - [[ ${PV%9999} != "" ]] && EGIT_BRANCH="release/${PV%.9999}" -fi - -inherit eutils multilib autotools ${SCM} - -DESCRIPTION="VisualOn AAC encoder 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="Apache-2.0" -SLOT="0" - -# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 -[[ ${PV} == *9999 ]] || \ -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos" -IUSE="examples static-libs neon" - -src_prepare() { - [[ ${PV} == *9999 ]] && eautoreconf -} - -src_configure() { - econf \ - --disable-silent-rules \ - --disable-dependency-tracking \ - $(use_enable examples example) \ - $(use_enable neon armv7neon) \ - $(use_enable static-libs static) -} - -src_install() { - emake DESTDIR="${D}" install || die - find "${D}"usr/$(get_libdir) -name '*.la' -delete -} |