diff options
author | Tim Harder <radhermit@gentoo.org> | 2015-06-29 07:02:08 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2015-06-29 07:02:08 +0000 |
commit | 932f02f9abb90864b402e37dd1915a447b2c453e (patch) | |
tree | 1dc9532a07997f95aacb3e9a0e1e60dfebfd7c93 /media-libs/exiftool | |
parent | Mark -hppa (bug #552336). (diff) | |
download | gentoo-2-932f02f9abb90864b402e37dd1915a447b2c453e.tar.gz gentoo-2-932f02f9abb90864b402e37dd1915a447b2c453e.tar.bz2 gentoo-2-932f02f9abb90864b402e37dd1915a447b2c453e.zip |
Version bump, add doc use flag that controls html docs install.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-libs/exiftool')
-rw-r--r-- | media-libs/exiftool/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/exiftool/exiftool-9.98.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/media-libs/exiftool/ChangeLog b/media-libs/exiftool/ChangeLog index 169ebe8e792c..80cb6626eacd 100644 --- a/media-libs/exiftool/ChangeLog +++ b/media-libs/exiftool/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/exiftool # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/exiftool/ChangeLog,v 1.167 2015/06/12 00:50:38 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/exiftool/ChangeLog,v 1.168 2015/06/29 07:02:08 radhermit Exp $ + +*exiftool-9.98 (29 Jun 2015) + + 29 Jun 2015; Tim Harder <radhermit@gentoo.org> +exiftool-9.98.ebuild: + Version bump, add doc use flag that controls html docs install. *exiftool-9.97 (12 Jun 2015) diff --git a/media-libs/exiftool/exiftool-9.98.ebuild b/media-libs/exiftool/exiftool-9.98.ebuild new file mode 100644 index 000000000000..c950ffb15540 --- /dev/null +++ b/media-libs/exiftool/exiftool-9.98.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/exiftool/exiftool-9.98.ebuild,v 1.1 2015/06/29 07:02:08 radhermit Exp $ + +EAPI=5 + +MY_PN=Image-ExifTool +MY_P=${MY_PN}-${PV} +inherit perl-module + +DESCRIPTION="Read and write meta information in image, audio and video files" +HOMEPAGE="http://www.sno.phy.queensu.ca/~phil/exiftool/ ${HOMEPAGE}" +SRC_URI="http://www.sno.phy.queensu.ca/~phil/exiftool/${MY_P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x64-macos" +IUSE="doc" + +SRC_TEST="do" + +src_install() { + perl-module_src_install + use doc && dohtml -r html/ +} |