summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2011-11-13 18:42:04 +0000
committerMichael Weber <xmw@gentoo.org>2011-11-13 18:42:04 +0000
commit01012cff1ee6ea90e11b360e845e4d578eae4ce0 (patch)
treee37761ff73c3eac4fc0828bc6384a8ec9408bd14 /media-libs/libexif
parentRemove old. (diff)
downloadgentoo-2-01012cff1ee6ea90e11b360e845e4d578eae4ce0.tar.gz
gentoo-2-01012cff1ee6ea90e11b360e845e4d578eae4ce0.tar.bz2
gentoo-2-01012cff1ee6ea90e11b360e845e4d578eae4ce0.zip
bump EAPI to 4, sed configure directly, prepalldocs restored, -Wall restored (thanks ssuominen for the review)
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libexif')
-rw-r--r--media-libs/libexif/ChangeLog6
-rw-r--r--media-libs/libexif/libexif-0.6.20.ebuild19
2 files changed, 14 insertions, 11 deletions
diff --git a/media-libs/libexif/ChangeLog b/media-libs/libexif/ChangeLog
index 2ebcd6e1fae5..404203e0c4f3 100644
--- a/media-libs/libexif/ChangeLog
+++ b/media-libs/libexif/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libexif
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/ChangeLog,v 1.117 2011/11/13 18:07:16 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/ChangeLog,v 1.118 2011/11/13 18:42:04 xmw Exp $
+
+ 13 Nov 2011; Michael Weber <xmw@gentoo.org> libexif-0.6.20.ebuild:
+ bump EAPI to 4, sed configure directly, prepalldocs restored, -Wall restored
+ (thanks ssuominen for the review)
13 Nov 2011; Michael Weber <xmw@gentoo.org> libexif-0.6.20.ebuild:
remove -g from FLAGS, as pointed out by Agostino Sarubbo (bug 390249)
diff --git a/media-libs/libexif/libexif-0.6.20.ebuild b/media-libs/libexif/libexif-0.6.20.ebuild
index 09185c98156e..6dd8f192bce5 100644
--- a/media-libs/libexif/libexif-0.6.20.ebuild
+++ b/media-libs/libexif/libexif-0.6.20.ebuild
@@ -1,9 +1,10 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.20.ebuild,v 1.2 2011/11/13 18:07:16 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.20.ebuild,v 1.3 2011/11/13 18:42:04 xmw Exp $
-EAPI=2
-inherit autotools eutils libtool
+EAPI=4
+
+inherit eutils libtool
DESCRIPTION="Library for parsing, editing, and saving EXIF data"
HOMEPAGE="http://libexif.sourceforge.net/"
@@ -22,16 +23,14 @@ DEPEND="${RDEPEND}
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.6.13-pkgconfig.patch
- #elibtoolize # FreeBSD .so version
- sed -e '/FLAGS=/s:-g::g' \
- -e '/FLAGS=/s:-Wall::g' \
- -i configure.ac
- eautoreconf
+ elibtoolize # FreeBSD .so version
+
+ # remove -g from FLAGS bug (#390249)
+ sed -i -e '/FLAGS=/s:-g::g' -i configure || die
}
src_configure() {
econf \
- --disable-dependency-tracking \
$(use_enable static-libs static) \
$(use_enable nls) \
$(use_enable doc docs) \
@@ -39,7 +38,7 @@ src_configure() {
}
src_install() {
- emake DESTDIR="${D}" install || die
+ emake DESTDIR="${D}" install
find "${D}" -name '*.la' -exec rm -f {} +
rm -f "${D}"usr/share/doc/${PF}/{ABOUT-NLS,COPYING}
}