Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdv/
Date: Tue, 24 Dec 2019 23:02:02
Message-Id: 1577228508.dd51b1f28a69c4603ec037c482ecb8979d904417.soap@gentoo
1 commit: dd51b1f28a69c4603ec037c482ecb8979d904417
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 24 23:01:48 2019 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 24 23:01:48 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd51b1f2
7
8 media-libs/libdv: Remove old
9
10 Closes: https://github.com/gentoo/gentoo/pull/14104
11 Package-Manager: Portage-2.3.82, Repoman-2.3.20
12 Signed-off-by: David Seifert <soap <AT> gentoo.org>
13
14 media-libs/libdv/libdv-1.0.0-r3.ebuild | 49 ----------------------------------
15 1 file changed, 49 deletions(-)
16
17 diff --git a/media-libs/libdv/libdv-1.0.0-r3.ebuild b/media-libs/libdv/libdv-1.0.0-r3.ebuild
18 deleted file mode 100644
19 index e73f715b82f..00000000000
20 --- a/media-libs/libdv/libdv-1.0.0-r3.ebuild
21 +++ /dev/null
22 @@ -1,49 +0,0 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=4
27 -
28 -inherit epatch epunt-cxx libtool ltprune flag-o-matic multilib-minimal
29 -
30 -DESCRIPTION="Software codec for dv-format video (camcorders etc)"
31 -HOMEPAGE="http://libdv.sourceforge.net/"
32 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
33 - mirror://gentoo/${PN}-1.0.0-pic.patch.bz2"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
38 -IUSE="static-libs"
39 -
40 -RDEPEND="dev-libs/popt"
41 -DEPEND="${RDEPEND}
42 - virtual/pkgconfig"
43 -
44 -DOCS=( AUTHORS ChangeLog INSTALL NEWS TODO )
45 -
46 -src_prepare() {
47 - epatch "${FILESDIR}"/${PN}-0.99-2.6.patch
48 - epatch "${WORKDIR}"/${PN}-1.0.0-pic.patch
49 - elibtoolize
50 - epunt_cxx #74497
51 -
52 - append-cppflags "-I${S}"
53 -}
54 -
55 -multilib_src_configure() {
56 - ECONF_SOURCE="${S}" econf \
57 - $(use_enable static-libs static) \
58 - --without-debug \
59 - --disable-gtk \
60 - --disable-gtktest
61 - if ! multilib_is_native_abi ; then
62 - sed -i \
63 - -e 's/ encodedv//' \
64 - Makefile || die
65 - fi
66 -}
67 -
68 -multilib_src_install_all() {
69 - prune_libtool_files --all
70 - einstalldocs
71 -}