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-gfx/gphoto2/
Date: Wed, 05 Jun 2019 20:22:29
Message-Id: 1559766126.d7ce13a67be15c32880c2ddced9656cc83f50773.asturm@gentoo
1 commit: d7ce13a67be15c32880c2ddced9656cc83f50773
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 25 22:33:29 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 5 20:22:06 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7ce13a6
7
8 media-gfx/gphoto2: Drop 2.5.15
9
10 Bug: https://bugs.gentoo.org/678706
11 Package-Manager: Portage-2.3.66, Repoman-2.3.12
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 media-gfx/gphoto2/Manifest | 1 -
15 media-gfx/gphoto2/gphoto2-2.5.15.ebuild | 62 ---------------------------------
16 2 files changed, 63 deletions(-)
17
18 diff --git a/media-gfx/gphoto2/Manifest b/media-gfx/gphoto2/Manifest
19 index e02ca6fa294..72328f0be87 100644
20 --- a/media-gfx/gphoto2/Manifest
21 +++ b/media-gfx/gphoto2/Manifest
22 @@ -1,2 +1 @@
23 -DIST gphoto2-2.5.15.tar.bz2 790513 BLAKE2B e8a22d014ebd33f5e0976d72c5df8373e29106def5da575b69d21f2a58e9408c6ce399476135909e57111196d6e61ead953f66a00c9f440b7cf92e0da0f4a0f6 SHA512 46058a12a81379f3311911e103cf934b6eb616d7f81180615b385d01e855bf6ce998eb12811b9d032328ebed6acfc4456f3a383cfedb93c6967c9699654d4f40
24 DIST gphoto2-2.5.20.tar.bz2 790065 BLAKE2B 6e10aa468696bc3eff51aaa3e886ad2373997f91597e42b33777ac56bf668f918c2fa0cb8b70eb8f7cb45507e67c9cfc3a46a7408449ad35cc3b743daf74859d SHA512 0350c38c264e5ba858ee14952fbf6ad271e7fef05e3f5f8eb3d45102099ae435fec63b09881efa99af60d4e086a9c2f69be92a7e49617643ab13146a5e4655f3
25
26 diff --git a/media-gfx/gphoto2/gphoto2-2.5.15.ebuild b/media-gfx/gphoto2/gphoto2-2.5.15.ebuild
27 deleted file mode 100644
28 index f3f04bd08f1..00000000000
29 --- a/media-gfx/gphoto2/gphoto2-2.5.15.ebuild
30 +++ /dev/null
31 @@ -1,62 +0,0 @@
32 -# Copyright 1999-2019 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -inherit autotools
37 -
38 -DESCRIPTION="Free, redistributable digital camera software application"
39 -HOMEPAGE="http://www.gphoto.org/"
40 -SRC_URI="mirror://sourceforge/gphoto/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
45 -IUSE="aalib exif ncurses nls readline"
46 -
47 -# aalib -> needs libjpeg
48 -RDEPEND="
49 - dev-libs/popt
50 - >=media-libs/libgphoto2-2.5.10:=[exif?]
51 - aalib? (
52 - media-libs/aalib
53 - virtual/jpeg:0 )
54 - exif? ( media-libs/libexif )
55 - ncurses? ( dev-libs/cdk:0= )
56 - readline? ( sys-libs/readline:0= )
57 -"
58 -DEPEND="${RDEPEND}
59 - virtual/pkgconfig
60 - nls? ( >=sys-devel/gettext-0.14.1 )
61 -"
62 -
63 -src_prepare() {
64 - default
65 - if ! use exif ; then
66 - # Remove tests that require EXIF to pass, bug 610024
67 - rm "${S}"/tests/data/test0{35,36,37,40}* || die
68 - fi
69 - # Leave GCC debug builds under user control
70 - sed -r '/(C|LD)FLAGS/ s/ -g( |")/\1/' \
71 - -i configure{.ac,} || die
72 - eautoreconf
73 -}
74 -
75 -src_configure() {
76 - CPPFLAGS="-I/usr/include/cdk" \
77 - econf \
78 - $(use_with aalib) \
79 - $(use_with aalib jpeg) \
80 - $(use_with exif libexif auto) \
81 - $(use_with ncurses cdk) \
82 - $(use_enable nls) \
83 - $(use_with readline)
84 -}
85 -
86 -src_install() {
87 - emake DESTDIR="${D}" \
88 - HTML_DIR="${D}"/usr/share/doc/${PF}/sgml \
89 - install
90 -
91 - einstalldocs
92 - rm -rf "${D}"/usr/share/doc/${PF}/sgml/gphoto2
93 -}