diff options
author | Matt Turner <mattst88@gentoo.org> | 2022-03-18 12:18:03 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2022-03-18 12:23:06 -0700 |
commit | 7963d9e4816be266395313a9104cf51c573678fe (patch) | |
tree | 764521576855f0143b14caff7757e1b8a635f69d /media-gfx/gphoto2 | |
parent | media-gfx/gnome-screenshot: Drop old versions (diff) | |
download | gentoo-7963d9e4816be266395313a9104cf51c573678fe.tar.gz gentoo-7963d9e4816be266395313a9104cf51c573678fe.tar.bz2 gentoo-7963d9e4816be266395313a9104cf51c573678fe.zip |
media-gfx/gphoto2: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'media-gfx/gphoto2')
-rw-r--r-- | media-gfx/gphoto2/Manifest | 1 | ||||
-rw-r--r-- | media-gfx/gphoto2/gphoto2-2.5.27.ebuild | 53 |
2 files changed, 0 insertions, 54 deletions
diff --git a/media-gfx/gphoto2/Manifest b/media-gfx/gphoto2/Manifest index 207b98e46dcb..8f1f5b0c0921 100644 --- a/media-gfx/gphoto2/Manifest +++ b/media-gfx/gphoto2/Manifest @@ -1,2 +1 @@ -DIST gphoto2-2.5.27.tar.bz2 803602 BLAKE2B ad62abc3e91ce3cee1edd8f991ac84616144997bff425eef5cea10c340f9c98694ecda783ec5762f4583d05f38cfecbb7b47e0884c05f114f931a7af8b0a676d SHA512 47001025d3647ac809ab7fd2d9319a2966d72b00471f9a9c865dfad7091c7cac2e299ecd41dfc7997a6665cf2612d4317591964f51a9d336f848e8199e3928b7 DIST gphoto2-2.5.28.tar.bz2 797600 BLAKE2B 78a89eaf5f68f3b902751792404702fa656680e904bc750e6a51934b5cefd8458c95ffd553024e16977270f4b4806c5dc68d9e3accd8759b1357e0619a0dc6a3 SHA512 ca83c677bdaf7c16ed2bc22865bdcc24e1c5721dbcd36a76e2ebe8bb992d46614fd012cd8f38b37598b30b6b57e6bf533318f6a0d490e186f3026676249735c8 diff --git a/media-gfx/gphoto2/gphoto2-2.5.27.ebuild b/media-gfx/gphoto2/gphoto2-2.5.27.ebuild deleted file mode 100644 index 7e2fd259acb4..000000000000 --- a/media-gfx/gphoto2/gphoto2-2.5.27.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -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 ~arm64 ~hppa ppc ppc64 ~sparc x86" -IUSE="aalib exif ncurses nls readline" - -# aalib -> needs libjpeg -RDEPEND=" - dev-libs/popt - >=media-libs/libgphoto2-2.5.17:=[exif?] - aalib? ( - media-libs/aalib - virtual/jpeg:0 ) - exif? ( media-libs/libexif ) - ncurses? ( dev-libs/cdk:0= ) - readline? ( sys-libs/readline:0= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - 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() { - econf \ - $(use_with aalib) \ - $(use_with aalib jpeg) \ - $(use_with exif libexif auto) \ - $(use_with ncurses cdk) \ - $(use_enable nls) \ - $(use_with readline) -} |