Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libdc1394/
Date: Mon, 19 Feb 2018 10:17:24
Message-Id: 1519035425.2086e31e4ce9c1f72c43ec54b72b612242c64753.asturm@gentoo
1 commit: 2086e31e4ce9c1f72c43ec54b72b612242c64753
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 18 22:41:24 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 19 10:17:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2086e31e
7
8 media-libs/libdc1394: Drop 2.2.5 (r0)
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 media-libs/libdc1394/libdc1394-2.2.5.ebuild | 52 -----------------------------
13 1 file changed, 52 deletions(-)
14
15 diff --git a/media-libs/libdc1394/libdc1394-2.2.5.ebuild b/media-libs/libdc1394/libdc1394-2.2.5.ebuild
16 deleted file mode 100644
17 index 954f2ee2150..00000000000
18 --- a/media-libs/libdc1394/libdc1394-2.2.5.ebuild
19 +++ /dev/null
20 @@ -1,52 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -inherit autotools eutils multilib-minimal
27 -
28 -DESCRIPTION="Library to interface with IEEE 1394 cameras following the IIDC specification"
29 -HOMEPAGE="https://sourceforge.net/projects/libdc1394/"
30 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
31 - https://dev.gentoo.org/~ssuominen/sdl.m4-20140620.tar.xz"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="2"
35 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
36 -IUSE="doc static-libs X"
37 -
38 -RDEPEND=">=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}]
39 - >=virtual/libusb-1-r1:1[${MULTILIB_USEDEP}]"
40 -DEPEND="${RDEPEND}
41 - virtual/pkgconfig
42 - doc? ( app-doc/doxygen )"
43 -
44 -src_prepare() {
45 - epatch \
46 - "${FILESDIR}"/${PN}-2.2.1-pthread.patch
47 -
48 - AT_M4DIR=${WORKDIR}/aclocal eautoreconf
49 -}
50 -
51 -multilib_src_configure() {
52 - local myconf="$(use_enable doc doxygen-html)"
53 - multilib_is_native_abi || myconf="--disable-doxygen-html --disable-examples"
54 -
55 - # X is only useful for examples that are not installed.
56 - ECONF_SOURCE="${S}" econf \
57 - $(use_enable static-libs static) \
58 - --program-suffix=2 \
59 - --without-x \
60 - ${myconf}
61 -}
62 -
63 -multilib_src_compile() {
64 - default
65 - multilib_is_native_abi && use doc && emake doc
66 -}
67 -
68 -multilib_src_install() {
69 - default
70 - multilib_is_native_abi && use doc && dohtml doc/html/*
71 - find "${ED}" -name '*.la' -exec rm -f {} +
72 -}