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 080A81396D0 for ; Wed, 27 Sep 2017 20:37:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 437B52BC048; Wed, 27 Sep 2017 20:37:29 +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 1EB442BC048 for ; Wed, 27 Sep 2017 20:37:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5ACF8340AC7 for ; Wed, 27 Sep 2017 20:37:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1CEDE9087 for ; Wed, 27 Sep 2017 20:37:27 +0000 (UTC) From: "Daniel Pielmeier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Daniel Pielmeier" Message-ID: <1506544640.8b7c4ee51d55cde8a291b21810290296bb0c9322.billie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mac/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mac/mac-3.99.4.5.7-r2.ebuild X-VCS-Directories: media-sound/mac/ X-VCS-Committer: billie X-VCS-Committer-Name: Daniel Pielmeier X-VCS-Revision: 8b7c4ee51d55cde8a291b21810290296bb0c9322 X-VCS-Branch: master Date: Wed, 27 Sep 2017 20:37:27 +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: 733bf326-bd39-40c8-8feb-e588e15d82a9 X-Archives-Hash: cdba4d87e9b3015af91dbdef6a7d193d commit: 8b7c4ee51d55cde8a291b21810290296bb0c9322 Author: Daniel Pielmeier gentoo org> AuthorDate: Wed Sep 27 20:37:20 2017 +0000 Commit: Daniel Pielmeier gentoo org> CommitDate: Wed Sep 27 20:37:20 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b7c4ee5 media-sound/mac: Remove old. Package-Manager: Portage-2.3.8, Repoman-2.3.1 media-sound/mac/mac-3.99.4.5.7-r2.ebuild | 55 -------------------------------- 1 file changed, 55 deletions(-) diff --git a/media-sound/mac/mac-3.99.4.5.7-r2.ebuild b/media-sound/mac/mac-3.99.4.5.7-r2.ebuild deleted file mode 100644 index c3ba536f269..00000000000 --- a/media-sound/mac/mac-3.99.4.5.7-r2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic versionator - -MY_PV=$(version_format_string '$1.$2-u$3-b$4') -PATCH=s$(get_version_component_range 5) -MY_P=${PN}-${MY_PV}-${PATCH} - -DESCRIPTION="Monkey's Audio Codecs" -HOMEPAGE="http://etree.org/shnutils/shntool/" -SRC_URI="http://etree.org/shnutils/shntool/support/formats/ape/unix/${MY_PV}-${PATCH}/${MY_P}.tar.gz" - -LICENSE="mac" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86" -IUSE="cpu_flags_x86_mmx static-libs" - -RDEPEND="" -DEPEND="sys-apps/sed - cpu_flags_x86_mmx? ( dev-lang/yasm )" - -S=${WORKDIR}/${MY_P} - -PATCHES=( "${FILESDIR}"/${P}-gcc6.patch ) - -HTML_DOCS=( src/Readme.htm ) -DOCS=( AUTHORS ChangeLog NEWS TODO README src/History.txt src/Credits.txt ChangeLog.shntool ) - -RESTRICT="mirror" - -src_prepare() { - default - sed -i -e 's:-O3::' configure || die -} - -src_configure() { - append-cppflags -DSHNTOOL - use cpu_flags_x86_mmx && append-ldflags -Wl,-z,noexecstack - - econf \ - $(use_enable static-libs static) \ - $(use_enable cpu_flags_x86_mmx assembly) -} - -src_install() { - default - - insinto /usr/include/${PN} - doins src/MACLib/{BitArray,UnBitArrayBase,Prepare}.h #409435 - - find "${D}" -name '*.la' -delete || die -}