diff options
author | 2022-01-10 13:11:48 -0800 | |
---|---|---|
committer | 2022-01-10 13:30:27 -0800 | |
commit | 018b444ed39443847dfcc9a22e93d0e9bcfc4a07 (patch) | |
tree | 4625eb7d79040de593b6534d226a42bad8598f37 /media-gfx/gphoto2/gphoto2-2.5.28.ebuild | |
parent | media-libs/libgphoto2: Version bump to 2.5.28 (diff) | |
download | gentoo-018b444ed39443847dfcc9a22e93d0e9bcfc4a07.tar.gz gentoo-018b444ed39443847dfcc9a22e93d0e9bcfc4a07.tar.bz2 gentoo-018b444ed39443847dfcc9a22e93d0e9bcfc4a07.zip |
media-gfx/gphoto2: Version bump to 2.5.28
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'media-gfx/gphoto2/gphoto2-2.5.28.ebuild')
-rw-r--r-- | media-gfx/gphoto2/gphoto2-2.5.28.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/media-gfx/gphoto2/gphoto2-2.5.28.ebuild b/media-gfx/gphoto2/gphoto2-2.5.28.ebuild new file mode 100644 index 000000000000..d63911b2960c --- /dev/null +++ b/media-gfx/gphoto2/gphoto2-2.5.28.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2022 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 ncurses nls readline" + +# aalib -> needs libjpeg +RDEPEND=" + >=dev-libs/popt-1.6.1 + >=media-libs/libexif-0.6.9 + >=media-libs/libgphoto2-2.5.17:=[exif] + aalib? ( + media-libs/aalib + virtual/jpeg:0 ) + 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 + # 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 ncurses cdk) \ + $(use_enable nls) \ + $(use_with readline) +} |