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 8C1DC138334 for ; Fri, 3 May 2019 08:44:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FD37E08A0; Fri, 3 May 2019 08:44:51 +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 5FDBCE08A0 for ; Fri, 3 May 2019 08:44:51 +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 28EEC34335C for ; Fri, 3 May 2019 08:44:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D99A95DA for ; Fri, 3 May 2019 08:44:46 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1556872922.36de7e6926d99f22ae779668f47b08c7e40aa707.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mac/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mac/mac-4.11.4.5.7.ebuild X-VCS-Directories: media-sound/mac/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 36de7e6926d99f22ae779668f47b08c7e40aa707 X-VCS-Branch: master Date: Fri, 3 May 2019 08:44:46 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e2908470-1b77-4d72-a413-8d95c927f482 X-Archives-Hash: ac06000d3c8eceff74cc2079d25a9c11 commit: 36de7e6926d99f22ae779668f47b08c7e40aa707 Author: Pacho Ramos gentoo org> AuthorDate: Fri May 3 08:42:02 2019 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Fri May 3 08:42:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36de7e69 media-sound/mac: Drop old Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Pacho Ramos gentoo.org> media-sound/mac/mac-4.11.4.5.7.ebuild | 59 ----------------------------------- 1 file changed, 59 deletions(-) diff --git a/media-sound/mac/mac-4.11.4.5.7.ebuild b/media-sound/mac/mac-4.11.4.5.7.ebuild deleted file mode 100644 index a76614813ce..00000000000 --- a/media-sound/mac/mac-4.11.4.5.7.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit flag-o-matic versionator - -MY_PN=monkeys-audio -MY_PV=$(version_format_string '$1.$2-u$3-b$4') -PATCH=s$(get_version_component_range 5) -MY_P=${MY_PN}_${MY_PV}-${PATCH} - -DESCRIPTION="Monkey's Audio Codecs" -HOMEPAGE="http://www.deb-multimedia.org/dists/testing/main/binary-amd64/package/monkeys-audio.php" -SRC_URI="http://www.deb-multimedia.org/pool/main/m/monkeys-audio/${MY_P}.orig.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}-output.patch - "${FILESDIR}"/${P}-gcc6.patch -) - -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 -}