summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-05-26 00:33:29 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-06-05 22:22:06 +0200
commitd7ce13a67be15c32880c2ddced9656cc83f50773 (patch)
tree6d4b258fa8504a316ca976e228becb2d99fdea25
parentdev-texlive/texlive-latexextra: add more blockers (diff)
downloadgentoo-d7ce13a6.tar.gz
gentoo-d7ce13a6.tar.bz2
gentoo-d7ce13a6.zip
media-gfx/gphoto2: Drop 2.5.15
Bug: https://bugs.gentoo.org/678706 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--media-gfx/gphoto2/Manifest1
-rw-r--r--media-gfx/gphoto2/gphoto2-2.5.15.ebuild62
2 files changed, 0 insertions, 63 deletions
diff --git a/media-gfx/gphoto2/Manifest b/media-gfx/gphoto2/Manifest
index e02ca6fa294d..72328f0be877 100644
--- a/media-gfx/gphoto2/Manifest
+++ b/media-gfx/gphoto2/Manifest
@@ -1,2 +1 @@
-DIST gphoto2-2.5.15.tar.bz2 790513 BLAKE2B e8a22d014ebd33f5e0976d72c5df8373e29106def5da575b69d21f2a58e9408c6ce399476135909e57111196d6e61ead953f66a00c9f440b7cf92e0da0f4a0f6 SHA512 46058a12a81379f3311911e103cf934b6eb616d7f81180615b385d01e855bf6ce998eb12811b9d032328ebed6acfc4456f3a383cfedb93c6967c9699654d4f40
DIST gphoto2-2.5.20.tar.bz2 790065 BLAKE2B 6e10aa468696bc3eff51aaa3e886ad2373997f91597e42b33777ac56bf668f918c2fa0cb8b70eb8f7cb45507e67c9cfc3a46a7408449ad35cc3b743daf74859d SHA512 0350c38c264e5ba858ee14952fbf6ad271e7fef05e3f5f8eb3d45102099ae435fec63b09881efa99af60d4e086a9c2f69be92a7e49617643ab13146a5e4655f3
diff --git a/media-gfx/gphoto2/gphoto2-2.5.15.ebuild b/media-gfx/gphoto2/gphoto2-2.5.15.ebuild
deleted file mode 100644
index f3f04bd08f16..000000000000
--- a/media-gfx/gphoto2/gphoto2-2.5.15.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-DESCRIPTION="Free, redistributable digital camera software application"
-HOMEPAGE="http://www.gphoto.org/"
-SRC_URI="mirror://sourceforge/gphoto/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86"
-IUSE="aalib exif ncurses nls readline"
-
-# aalib -> needs libjpeg
-RDEPEND="
- dev-libs/popt
- >=media-libs/libgphoto2-2.5.10:=[exif?]
- aalib? (
- media-libs/aalib
- virtual/jpeg:0 )
- exif? ( media-libs/libexif )
- ncurses? ( dev-libs/cdk:0= )
- readline? ( sys-libs/readline:0= )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- nls? ( >=sys-devel/gettext-0.14.1 )
-"
-
-src_prepare() {
- default
- if ! use exif ; then
- # Remove tests that require EXIF to pass, bug 610024
- rm "${S}"/tests/data/test0{35,36,37,40}* || die
- fi
- # Leave GCC debug builds under user control
- sed -r '/(C|LD)FLAGS/ s/ -g( |")/\1/' \
- -i configure{.ac,} || die
- eautoreconf
-}
-
-src_configure() {
- CPPFLAGS="-I/usr/include/cdk" \
- econf \
- $(use_with aalib) \
- $(use_with aalib jpeg) \
- $(use_with exif libexif auto) \
- $(use_with ncurses cdk) \
- $(use_enable nls) \
- $(use_with readline)
-}
-
-src_install() {
- emake DESTDIR="${D}" \
- HTML_DIR="${D}"/usr/share/doc/${PF}/sgml \
- install
-
- einstalldocs
- rm -rf "${D}"/usr/share/doc/${PF}/sgml/gphoto2
-}