# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/marcusmeissner.asc inherit autotools verify-sig DESCRIPTION="Free, redistributable digital camera software application" HOMEPAGE="http://www.gphoto.org/" SRC_URI=" https://downloads.sourceforge.net/gphoto/${P}.tar.xz verify-sig? ( https://downloads.sourceforge.net/gphoto/${P}.tar.xz.asc ) " 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 media-libs/libjpeg-turbo ) ncurses? ( >=dev-libs/cdk-5.0.20240331:= ) readline? ( sys-libs/readline:= ) " DEPEND="${RDEPEND}" BDEPEND=" virtual/pkgconfig nls? ( >=sys-devel/gettext-0.19.1 ) verify-sig? ( sec-keys/openpgp-keys-marcusmeissner ) " 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) }