diff options
author | Romain Perier <mrpouet@gentoo.org> | 2009-08-30 16:46:01 +0000 |
---|---|---|
committer | Romain Perier <mrpouet@gentoo.org> | 2009-08-30 16:46:01 +0000 |
commit | 7ac627186b2dfeb2dcc3bf0457411168daeaca9c (patch) | |
tree | 40bae87f1080ef54ac55e01c5c4576a9cab9f1d3 /media-gfx/gphoto2 | |
parent | ppc stable #283035 (diff) | |
download | gentoo-2-7ac627186b2dfeb2dcc3bf0457411168daeaca9c.tar.gz gentoo-2-7ac627186b2dfeb2dcc3bf0457411168daeaca9c.tar.bz2 gentoo-2-7ac627186b2dfeb2dcc3bf0457411168daeaca9c.zip |
Version bump, add support for largefiles, various bugfixes, new cmdline options, updates translations, bug #283133
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/gphoto2')
-rw-r--r-- | media-gfx/gphoto2/ChangeLog | 9 | ||||
-rw-r--r-- | media-gfx/gphoto2/gphoto2-2.4.7.ebuild | 51 |
2 files changed, 59 insertions, 1 deletions
diff --git a/media-gfx/gphoto2/ChangeLog b/media-gfx/gphoto2/ChangeLog index b98765c48b77..e9020e3e2fc2 100644 --- a/media-gfx/gphoto2/ChangeLog +++ b/media-gfx/gphoto2/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-gfx/gphoto2 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v 1.84 2009/08/30 16:23:42 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/ChangeLog,v 1.85 2009/08/30 16:46:01 mrpouet Exp $ + +*gphoto2-2.4.7 (30 Aug 2009) + + 30 Aug 2009; Romain Perier <mrpouet@gentoo.org> + +gphoto2-2.4.7.ebuild: + Version bump, add support for largefiles, various bugfixes, new cmdline + options, updates translations 30 Aug 2009; nixnut <nixnut@gentoo.org> gphoto2-2.4.5.ebuild: ppc stable #282849 diff --git a/media-gfx/gphoto2/gphoto2-2.4.7.ebuild b/media-gfx/gphoto2/gphoto2-2.4.7.ebuild new file mode 100644 index 000000000000..ae1da5260fe6 --- /dev/null +++ b/media-gfx/gphoto2/gphoto2-2.4.7.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gphoto2/gphoto2-2.4.7.ebuild,v 1.1 2009/08/30 16:46:01 mrpouet Exp $ + +EAPI=2 + +inherit eutils + +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 +# raise libgphoto to get a proper .pc +RDEPEND="=virtual/libusb-0* + dev-libs/popt + >=media-libs/libgphoto2-2.4.7[exif] + ncurses? ( dev-libs/cdk ) + aalib? ( + media-libs/aalib + media-libs/jpeg ) + exif? ( media-libs/libexif ) + readline? ( sys-libs/readline )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + nls? ( >=sys-devel/gettext-0.14 )" + +src_configure() { + econf \ + --docdir=/usr/share/doc/${PF} \ + $(use_with aalib) \ + $(use_with aalib jpeg) \ + $(use_with exif) \ + $(use_with ncurses cdk) \ + $(use_enable nls) \ + $(use_with readline) +} + +src_install() { + emake DESTDIR="${D}" \ + HTML_DIR="${D}"/usr/share/doc/${PF}/sgml \ + install || die "installation failed" + + dodoc ChangeLog NEWS* README AUTHORS || die "dodoc failed" + rm -rf "${D}"/usr/share/doc/${PF}/sgml/gphoto2 +} |