summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Meier <maekke@gentoo.org>2008-12-21 09:30:37 +0000
committerMarkus Meier <maekke@gentoo.org>2008-12-21 09:30:37 +0000
commit3afca67b01f98aa02b978a5a61aeb444c429aec3 (patch)
treec5ee4d07acc8db0701f90fc6b8660cc1f29d554a /media-gfx/exif
parentbump to 0.6.17, bug #248249; graphics herd will maintain this. (diff)
downloadgentoo-2-3afca67b01f98aa02b978a5a61aeb444c429aec3.tar.gz
gentoo-2-3afca67b01f98aa02b978a5a61aeb444c429aec3.tar.bz2
gentoo-2-3afca67b01f98aa02b978a5a61aeb444c429aec3.zip
bump to 0.6.17, bug #248249
(Portage version: 2.1.6.1/cvs/Linux 2.6.28-rc9 i686)
Diffstat (limited to 'media-gfx/exif')
-rw-r--r--media-gfx/exif/ChangeLog7
-rw-r--r--media-gfx/exif/exif-0.6.17.ebuild28
2 files changed, 34 insertions, 1 deletions
diff --git a/media-gfx/exif/ChangeLog b/media-gfx/exif/ChangeLog
index 0ff9925e3e9a..dce45a387963 100644
--- a/media-gfx/exif/ChangeLog
+++ b/media-gfx/exif/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-gfx/exif
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/exif/ChangeLog,v 1.23 2008/10/31 03:33:01 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exif/ChangeLog,v 1.24 2008/12/21 09:30:37 maekke Exp $
+
+*exif-0.6.17 (21 Dec 2008)
+
+ 21 Dec 2008; Markus Meier <maekke@gentoo.org> +exif-0.6.17.ebuild:
+ bump to 0.6.17, bug #248249
31 Oct 2008; Jeroen Roovers <jer@gentoo.org> exif-0.6.15.ebuild:
Stable for HPPA too.
diff --git a/media-gfx/exif/exif-0.6.17.ebuild b/media-gfx/exif/exif-0.6.17.ebuild
new file mode 100644
index 000000000000..60cecd70412b
--- /dev/null
+++ b/media-gfx/exif/exif-0.6.17.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/exif/exif-0.6.17.ebuild,v 1.1 2008/12/21 09:30:37 maekke Exp $
+
+IUSE="nls"
+
+DESCRIPTION="Small CLI util to show EXIF infos hidden in JPEG files"
+SRC_URI="mirror://sourceforge/libexif/${P}.tar.gz"
+HOMEPAGE="http://libexif.sf.net"
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+SLOT="0"
+
+RDEPEND="dev-libs/popt
+ >=media-libs/libexif-0.6.15"
+
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig"
+
+src_compile() {
+ econf $(use_enable nls)
+ emake || die
+}
+
+src_install () {
+ emake DESTDIR="${D}" install || die
+ dodoc AUTHORS ChangeLog README
+}