diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-05-28 11:32:43 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2009-05-28 11:32:43 +0000 |
commit | dd9c199c90687d15ba99d8737b875e57ac7e6c1e (patch) | |
tree | 0157e8bfdf8606521ac45001683ffafc0a33aab9 | |
parent | Version bump (diff) | |
download | gentoo-2-dd9c199c90687d15ba99d8737b875e57ac7e6c1e.tar.gz gentoo-2-dd9c199c90687d15ba99d8737b875e57ac7e6c1e.tar.bz2 gentoo-2-dd9c199c90687d15ba99d8737b875e57ac7e6c1e.zip |
Don't try to look for the glib/gtk autoconf macros, not needed and causes additional deps.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
-rw-r--r-- | media-libs/libmp4v2/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/media-libs/libmp4v2/ChangeLog b/media-libs/libmp4v2/ChangeLog index 807d41f2e95d..ea975899f724 100644 --- a/media-libs/libmp4v2/ChangeLog +++ b/media-libs/libmp4v2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libmp4v2 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/ChangeLog,v 1.42 2009/05/22 15:10:42 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/ChangeLog,v 1.43 2009/05/28 11:32:43 flameeyes Exp $ + + 28 May 2009; Diego E. Pettenò <flameeyes@gentoo.org> + libmp4v2-1.5.0.1-r2.ebuild: + Don't try to look for the glib/gtk autoconf macros, not needed and causes + additional deps. *libmp4v2-1.5.0.1-r2 (22 May 2009) diff --git a/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild b/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild index 8146dddcedaa..446dcadd76e9 100644 --- a/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild +++ b/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild,v 1.1 2009/05/22 15:10:42 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmp4v2/libmp4v2-1.5.0.1-r2.ebuild,v 1.2 2009/05/28 11:32:43 flameeyes Exp $ inherit libtool autotools @@ -26,6 +26,10 @@ src_unpack() { epatch "${FILESDIR}"/${P}+glibc-2.10.patch + # We don't give a damn about these two, just remove the two calls + # so we don't have to have the macros to eautoreconf properly. + sed -i -e '/AM_PATH_(GLIB|GTK)/d' configure.in || die + AT_NO_RECURSIVE="yes" eautoreconf elibtoolize } |