diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-07-13 12:57:03 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-07-13 12:57:03 +0000 |
commit | 480a86f6b0b734a6341c795e0ab06e787c2bcce7 (patch) | |
tree | 4134600b9b2251be53319a058cd1c72b12d2aaee /media-libs/libexif | |
parent | Version bump. (diff) | |
download | gentoo-2-480a86f6b0b734a6341c795e0ab06e787c2bcce7.tar.gz gentoo-2-480a86f6b0b734a6341c795e0ab06e787c2bcce7.tar.bz2 gentoo-2-480a86f6b0b734a6341c795e0ab06e787c2bcce7.zip |
Version bump wrt #426366 by Dan Fandrich
(Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libexif')
-rw-r--r-- | media-libs/libexif/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libexif/libexif-0.6.21.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/media-libs/libexif/ChangeLog b/media-libs/libexif/ChangeLog index 525491ea2523..081df1755872 100644 --- a/media-libs/libexif/ChangeLog +++ b/media-libs/libexif/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libexif # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/ChangeLog,v 1.128 2012/05/09 00:24:05 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/ChangeLog,v 1.129 2012/07/13 12:57:03 ssuominen Exp $ + +*libexif-0.6.21 (13 Jul 2012) + + 13 Jul 2012; Samuli Suominen <ssuominen@gentoo.org> +libexif-0.6.21.ebuild: + Version bump wrt #426366 by Dan Fandrich 09 May 2012; Alexis Ballier <aballier@gentoo.org> libexif-0.6.20.ebuild: keyword ~amd64-fbsd diff --git a/media-libs/libexif/libexif-0.6.21.ebuild b/media-libs/libexif/libexif-0.6.21.ebuild new file mode 100644 index 000000000000..6e4de3489096 --- /dev/null +++ b/media-libs/libexif/libexif-0.6.21.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.21.ebuild,v 1.1 2012/07/13 12:57:03 ssuominen Exp $ + +EAPI=4 +inherit eutils libtool + +DESCRIPTION="Library for parsing, editing, and saving EXIF data" +HOMEPAGE="http://libexif.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="doc nls static-libs" + +RDEPEND="nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( app-doc/doxygen ) + nls? ( sys-devel/gettext )" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.6.13-pkgconfig.patch + sed -i -e '/FLAGS=/s:-g::' configure || die #390249 + elibtoolize # For *-bsd +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable nls) \ + $(use_enable doc docs) \ + --with-doc-dir="${EPREFIX}"/usr/share/doc/${PF} +} + +src_install() { + emake DESTDIR="${D}" install + prune_libtool_files + rm -f "${ED}"/usr/share/doc/${PF}/{ABOUT-NLS,COPYING} +} |