From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 52B24138330 for ; Wed, 14 Sep 2016 19:00:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D433E0B2A; Wed, 14 Sep 2016 19:00:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4E77AE0B96 for ; Wed, 14 Sep 2016 19:00:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01CD1340A51 for ; Wed, 14 Sep 2016 19:00:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36BB82484 for ; Wed, 14 Sep 2016 19:00:19 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1473879610.1bec0af9862755d173b3bd3d76436e2c2da16d16.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/fdk-aac/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/fdk-aac/fdk-aac-0.1.4.ebuild X-VCS-Directories: media-libs/fdk-aac/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 1bec0af9862755d173b3bd3d76436e2c2da16d16 X-VCS-Branch: master Date: Wed, 14 Sep 2016 19:00:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 378c40b3-ea28-4f40-83d4-795b8bef96fe X-Archives-Hash: 536172c190bd42b1b03737e494b53108 commit: 1bec0af9862755d173b3bd3d76436e2c2da16d16 Author: David Seifert gentoo org> AuthorDate: Wed Sep 14 18:58:55 2016 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Sep 14 19:00:10 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bec0af9 media-libs/fdk-aac: Remove old ebuild Package-Manager: portage-2.3.0 media-libs/fdk-aac/fdk-aac-0.1.4.ebuild | 51 --------------------------------- 1 file changed, 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 3923033..00000000 --- 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" -}