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 60A0B138334 for ; Mon, 25 Jun 2018 04:44:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4C13E0938; Mon, 25 Jun 2018 04:44:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 98053E091F for ; Mon, 25 Jun 2018 04:44:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3AB92335CB2 for ; Mon, 25 Jun 2018 04:44:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B1C7350 for ; Mon, 25 Jun 2018 04:44:45 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1529901829.f75718a34594f3a88764d9c148f59e72beee7b5e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/aften/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/aften/aften-0.0.8.ebuild X-VCS-Directories: media-libs/aften/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f75718a34594f3a88764d9c148f59e72beee7b5e X-VCS-Branch: master Date: Mon, 25 Jun 2018 04:44:45 +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: 7d060927-5ad7-4165-8e09-0c7651a2fb73 X-Archives-Hash: aa2b999edc0e692c9ce426d0ae07fad9 commit: f75718a34594f3a88764d9c148f59e72beee7b5e Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jun 24 21:21:31 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Jun 25 04:43:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f75718a3 media-libs/aften: Drop old Closes: https://bugs.gentoo.org/657258 Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-libs/aften/aften-0.0.8.ebuild | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/media-libs/aften/aften-0.0.8.ebuild b/media-libs/aften/aften-0.0.8.ebuild deleted file mode 100644 index 1b01dc33c91..00000000000 --- a/media-libs/aften/aften-0.0.8.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit cmake-utils - -DESCRIPTION="An A/52 (AC-3) audio encoder" -HOMEPAGE="http://aften.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2.1 BSD" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="cxx" - -PATCHES=( - "${FILESDIR}/${P}-multilib.patch" - "${FILESDIR}/${P}-ppc.patch" -) - -src_configure() { - local mycmakeargs="-DSHARED=1" - use cxx && mycmakeargs+=" -DBINDINGS_CXX=1" - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - dodoc README Changelog - # File collision with media-sound/wavbreaker, upstream informed - mv "${D}/usr/bin/wavinfo" "${D}/usr/bin/wavinfo-aften" || die -}