summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2011-11-13 18:07:16 +0000
committerMichael Weber <xmw@gentoo.org>2011-11-13 18:07:16 +0000
commit19ae6e7e7664999f9a266a2401359f7f91f40c69 (patch)
tree0127f84bb7fad56aad397e95f5d45e4fa0d6c249 /media-libs/libexif
parentBump, drop old. Lots of bugfixes, particularly for the printers panel. (diff)
downloadgentoo-2-19ae6e7e7664999f9a266a2401359f7f91f40c69.tar.gz
gentoo-2-19ae6e7e7664999f9a266a2401359f7f91f40c69.tar.bz2
gentoo-2-19ae6e7e7664999f9a266a2401359f7f91f40c69.zip
remove -g from FLAGS, as pointed out by Agostino Sarubbo (bug 390249)
(Portage version: 2.1.10.11/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libexif')
-rw-r--r--media-libs/libexif/ChangeLog5
-rw-r--r--media-libs/libexif/libexif-0.6.20.ebuild11
2 files changed, 11 insertions, 5 deletions
diff --git a/media-libs/libexif/ChangeLog b/media-libs/libexif/ChangeLog
index 1d8cc826173b..2ebcd6e1fae5 100644
--- a/media-libs/libexif/ChangeLog
+++ b/media-libs/libexif/ChangeLog
@@ -1,6 +1,9 @@
# 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.116 2011/04/04 23:20:46 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/ChangeLog,v 1.117 2011/11/13 18:07:16 xmw Exp $
+
+ 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)
*libexif-0.6.20 (04 Apr 2011)
diff --git a/media-libs/libexif/libexif-0.6.20.ebuild b/media-libs/libexif/libexif-0.6.20.ebuild
index 9c845fe91e42..09185c98156e 100644
--- a/media-libs/libexif/libexif-0.6.20.ebuild
+++ b/media-libs/libexif/libexif-0.6.20.ebuild
@@ -1,9 +1,9 @@
# 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.1 2011/04/04 23:20:46 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libexif/libexif-0.6.20.ebuild,v 1.2 2011/11/13 18:07:16 xmw Exp $
EAPI=2
-inherit eutils libtool
+inherit autotools eutils libtool
DESCRIPTION="Library for parsing, editing, and saving EXIF data"
HOMEPAGE="http://libexif.sourceforge.net/"
@@ -22,7 +22,11 @@ DEPEND="${RDEPEND}
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.6.13-pkgconfig.patch
- elibtoolize # FreeBSD .so version
+ #elibtoolize # FreeBSD .so version
+ sed -e '/FLAGS=/s:-g::g' \
+ -e '/FLAGS=/s:-Wall::g' \
+ -i configure.ac
+ eautoreconf
}
src_configure() {
@@ -38,5 +42,4 @@ src_install() {
emake DESTDIR="${D}" install || die
find "${D}" -name '*.la' -exec rm -f {} +
rm -f "${D}"usr/share/doc/${PF}/{ABOUT-NLS,COPYING}
- prepalldocs
}