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 A086F13997D for ; Wed, 13 Nov 2019 01:03:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B85ABE08D0; Wed, 13 Nov 2019 01:03:11 +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 A01A0E08D0 for ; Wed, 13 Nov 2019 01:03:11 +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 677B834CCEA for ; Wed, 13 Nov 2019 01:03:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98E908B8 for ; Wed, 13 Nov 2019 01:03:06 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1573606947.d9dabb40eb6c05cead74a46861e2df8655e66d06.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmpeg3/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmpeg3/libmpeg3-1.8.ebuild X-VCS-Directories: media-libs/libmpeg3/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: d9dabb40eb6c05cead74a46861e2df8655e66d06 X-VCS-Branch: master Date: Wed, 13 Nov 2019 01:03:06 +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: 183a7e45-50e4-4d51-8704-2707cdaa6638 X-Archives-Hash: 77935cd52f1c2a8ab25aa7e710855a69 commit: d9dabb40eb6c05cead74a46861e2df8655e66d06 Author: Aaron Bauman gentoo org> AuthorDate: Tue Nov 12 23:47:10 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Nov 13 01:02:27 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9dabb40 media-libs/libmpeg3: drop old EAPI Signed-off-by: Aaron Bauman gentoo.org> media-libs/libmpeg3/libmpeg3-1.8.ebuild | 59 --------------------------------- 1 file changed, 59 deletions(-) diff --git a/media-libs/libmpeg3/libmpeg3-1.8.ebuild b/media-libs/libmpeg3/libmpeg3-1.8.ebuild deleted file mode 100644 index a4a6d7b7420..00000000000 --- a/media-libs/libmpeg3/libmpeg3-1.8.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils autotools toolchain-funcs - -DESCRIPTION="An mpeg library for linux" -HOMEPAGE="http://heroinewarrior.com/libmpeg3.php" -SRC_URI="mirror://sourceforge/heroines/${P}-src.tar.bz2 - mirror://gentoo/${PN}-1.7-gentoo.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86" -IUSE="cpu_flags_x86_mmx" - -RDEPEND="sys-libs/zlib - virtual/jpeg - media-libs/a52dec" -DEPEND="${RDEPEND} - cpu_flags_x86_mmx? ( dev-lang/nasm )" - -src_prepare() { - epatch "${WORKDIR}"/${PN}-1.7-mpeg3split.patch - epatch "${WORKDIR}"/${PN}-1.7-textrel.patch - epatch "${WORKDIR}"/${PN}-1.7-gnustack.patch - epatch "${WORKDIR}"/${PN}-1.7-a52.patch - epatch "${WORKDIR}"/${PN}-1.7-all_gcc4.patch - epatch "${WORKDIR}"/${PN}-1.7-all_pthread.patch - - cp -rf "${WORKDIR}"/1.7/* . - eautoreconf -} - -src_configure() { - #disabling css since it's a fake one. - #One can find in the sources this message : - # Stubs for deCSS which can't be distributed in source form - - econf \ - $(use_enable cpu_flags_x86_mmx mmx) \ - --disable-css -} - -src_install() { - default - dohtml -r docs - # This is a workaround, it wants to rebuild - # everything if the headers have changed - # So we patch them after install... - cd "${ED}/usr/include/libmpeg3" - # This patch patches the .h files that get installed into /usr/include - # to show the correct include syntax '<>' instead of '""' This patch - # was also generated using info from SF's src.rpm - epatch "${WORKDIR}"/gentoo-p2.patch - - find "${ED}" -name '*.la' -exec rm -f '{}' + -}