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 EC616138334 for ; Tue, 24 Dec 2019 23:02:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 236E5E0AF2; Tue, 24 Dec 2019 23:02:02 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 034B7E0AE5 for ; Tue, 24 Dec 2019 23:02:01 +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 65EF634D9FD for ; Tue, 24 Dec 2019 23:02:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E42352C for ; Tue, 24 Dec 2019 23:01:57 +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: <1577228508.dd51b1f28a69c4603ec037c482ecb8979d904417.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libdv/libdv-1.0.0-r3.ebuild X-VCS-Directories: media-libs/libdv/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: dd51b1f28a69c4603ec037c482ecb8979d904417 X-VCS-Branch: master Date: Tue, 24 Dec 2019 23:01:57 +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: 235e8ef3-ec26-408f-907a-0ff359401cec X-Archives-Hash: 7cb6ccde1bb8df8aebe5832d82aa6a10 commit: dd51b1f28a69c4603ec037c482ecb8979d904417 Author: David Seifert gentoo org> AuthorDate: Tue Dec 24 23:01:48 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Dec 24 23:01:48 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd51b1f2 media-libs/libdv: Remove old Closes: https://github.com/gentoo/gentoo/pull/14104 Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> media-libs/libdv/libdv-1.0.0-r3.ebuild | 49 ---------------------------------- 1 file changed, 49 deletions(-) diff --git a/media-libs/libdv/libdv-1.0.0-r3.ebuild b/media-libs/libdv/libdv-1.0.0-r3.ebuild deleted file mode 100644 index e73f715b82f..00000000000 --- a/media-libs/libdv/libdv-1.0.0-r3.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit epatch epunt-cxx libtool ltprune flag-o-matic multilib-minimal - -DESCRIPTION="Software codec for dv-format video (camcorders etc)" -HOMEPAGE="http://libdv.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz - mirror://gentoo/${PN}-1.0.0-pic.patch.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86" -IUSE="static-libs" - -RDEPEND="dev-libs/popt" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS=( AUTHORS ChangeLog INSTALL NEWS TODO ) - -src_prepare() { - epatch "${FILESDIR}"/${PN}-0.99-2.6.patch - epatch "${WORKDIR}"/${PN}-1.0.0-pic.patch - elibtoolize - epunt_cxx #74497 - - append-cppflags "-I${S}" -} - -multilib_src_configure() { - ECONF_SOURCE="${S}" econf \ - $(use_enable static-libs static) \ - --without-debug \ - --disable-gtk \ - --disable-gtktest - if ! multilib_is_native_abi ; then - sed -i \ - -e 's/ encodedv//' \ - Makefile || die - fi -} - -multilib_src_install_all() { - prune_libtool_files --all - einstalldocs -}