diff options
-rw-r--r-- | net-libs/wvstreams/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/wvstreams/wvstreams-4.4.1.ebuild | 13 |
2 files changed, 14 insertions, 4 deletions
diff --git a/net-libs/wvstreams/ChangeLog b/net-libs/wvstreams/ChangeLog index b56615135659..957c528fac88 100644 --- a/net-libs/wvstreams/ChangeLog +++ b/net-libs/wvstreams/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/wvstreams # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.123 2008/08/31 11:05:09 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/ChangeLog,v 1.124 2008/11/19 19:30:33 loki_val Exp $ + + 19 Nov 2008; Peter Alfredsen <loki_val@gentoo.org> wvstreams-4.4.1.ebuild: + Ugly fix for eautoreconf failure. Bug 211327. 31 Aug 2008; Hanno Boeck <hanno@gentoo.org> +files/wvstreams-4.4-gcc-4.3.patch, wvstreams-4.4.ebuild: diff --git a/net-libs/wvstreams/wvstreams-4.4.1.ebuild b/net-libs/wvstreams/wvstreams-4.4.1.ebuild index 1d1ac8811c8b..4ba086a11bca 100644 --- a/net-libs/wvstreams/wvstreams-4.4.1.ebuild +++ b/net-libs/wvstreams/wvstreams-4.4.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.4.1.ebuild,v 1.2 2008/07/27 22:08:04 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/wvstreams/wvstreams-4.4.1.ebuild,v 1.3 2008/11/19 19:30:33 loki_val Exp $ EAPI=1 @@ -51,9 +51,16 @@ src_unpack() { ht_fix_file "${S}/configure.ac" - #needed by xplc, as-needed and gnulib patch cd "${S}" - eautoreconf || die "eautoreconf failed" + + sed -r -i \ + -e '/AC_DEFINE.*__EXTENSIONS__/d' \ + gnulib/m4/extensions.m4 + sed -i -n \ + -e :a -e '1,10!{P;N;D;};N;ba' \ + configure.ac + #needed by xplc, as-needed and gnulib patch + AT_M4DIR="gnulib/m4" eautoreconf || die "eautoreconf failed" } src_compile() { |