diff options
author | Alastair Tse <liquidx@gentoo.org> | 2005-01-13 15:38:28 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2005-01-13 15:38:28 +0000 |
commit | 1cd0f39400fe1360ca41363a5ee85d9a7cc432e3 (patch) | |
tree | bdefd20e651663a88ec2cb0f9e90789d50604412 /media-gfx/gphoto2/gphoto2-2.1.5.ebuild | |
parent | version bump (#74640) thanks to Robert Davis <rdavis@unico.com>. updated libu... (diff) | |
download | gentoo-2-1cd0f39400fe1360ca41363a5ee85d9a7cc432e3.tar.gz gentoo-2-1cd0f39400fe1360ca41363a5ee85d9a7cc432e3.tar.bz2 gentoo-2-1cd0f39400fe1360ca41363a5ee85d9a7cc432e3.zip |
version bump (#74640) thanks to Robert Davis <rdavis@unico.com>.
Diffstat (limited to 'media-gfx/gphoto2/gphoto2-2.1.5.ebuild')
-rw-r--r-- | media-gfx/gphoto2/gphoto2-2.1.5.ebuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/media-gfx/gphoto2/gphoto2-2.1.5.ebuild b/media-gfx/gphoto2/gphoto2-2.1.5.ebuild new file mode 100644 index 000000000000..88e60c9043bc --- /dev/null +++ b/media-gfx/gphoto2/gphoto2-2.1.5.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.1.5.ebuild,v 1.1 2005/01/13 15:38:28 liquidx Exp $ + +inherit libtool flag-o-matic + +DESCRIPTION="free, redistributable digital camera software application" +HOMEPAGE="http://www.gphoto.org/" +SRC_URI="mirror://sourceforge/gphoto/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~ia64 ~ppc64" +IUSE="nls jpeg readline ncurses aalib" + +# jpeg useflag -> exif support +# aalib -> needs libjpeg +RDEPEND=">=dev-libs/libusb-0.1.6 + dev-libs/popt + >=media-libs/libgphoto2-2.1.3 + ncurses? ( dev-libs/cdk ) + aalib? ( media-libs/aalib + media-libs/jpeg ) + jpeg? ( media-libs/libexif ) + readline? ( sys-libs/readline )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + elibtoolize + + aclocal + # -pipe does no work + # liquidx: why doesn't it work? bug #? + # filter-flags -pipe + + local myconf + use nls \ + || myconf="${myconf} --disable-nls" + + # command-line frontend + use ncurses \ + && myconf="${myconf} --with-cdk-prefix=/usr" \ + || myconf="${myconf} --without-cdk" + + use aalib \ + && myconf="${myconf} --with-jpeg-prefix=/usr" \ + || myconf="${myconf} --without-aalib --without-jpeg" + + use jpeg \ + && myconf="${myconf} --with-exif-prefix=/usr" \ + || myconf="${myconf} --without-exif" + + use readline \ + || myconf="${myconf} --without-readline" + + econf ${myconf} || die "econf failed" + emake || die +} + +src_install() { + einstall \ + gphotodocdir=${D}/usr/share/doc/${PF} \ + HTML_DIR=${D}/usr/share/doc/${PF}/sgml \ + || die + + dodoc ChangeLog NEWS* README AUTHORS COPYING + rm -rf ${D}/usr/share/doc/${PF}/sgml/gphoto2 +} |