diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-04-24 16:50:22 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-04-24 16:50:22 +0000 |
commit | 42bb7e78a518d6ed246ad55b57adc44d8ee3364d (patch) | |
tree | 3df873eb592c69b83b5651778409c34c749cf113 /dev-libs/libconfig | |
parent | Fix typo in HTML_DOCS, bug 466764 by Martin von Gagern. (diff) | |
download | gentoo-2-42bb7e78a518d6ed246ad55b57adc44d8ee3364d.tar.gz gentoo-2-42bb7e78a518d6ed246ad55b57adc44d8ee3364d.tar.bz2 gentoo-2-42bb7e78a518d6ed246ad55b57adc44d8ee3364d.zip |
Fix building with automake-1.13.
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-libs/libconfig')
-rw-r--r-- | dev-libs/libconfig/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libconfig/libconfig-1.4.9-r1.ebuild | 11 |
2 files changed, 11 insertions, 5 deletions
diff --git a/dev-libs/libconfig/ChangeLog b/dev-libs/libconfig/ChangeLog index 7b716a77736a..4c3812f28585 100644 --- a/dev-libs/libconfig/ChangeLog +++ b/dev-libs/libconfig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libconfig # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.53 2013/04/02 18:55:41 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.54 2013/04/24 16:50:21 jer Exp $ + + 24 Apr 2013; Jeroen Roovers <jer@gentoo.org> libconfig-1.4.9-r1.ebuild: + Fix building with automake-1.13. *libconfig-1.4.9-r1 (02 Apr 2013) diff --git a/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild b/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild index 6dcceff9312d..c6ebf902b2b2 100644 --- a/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild +++ b/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild @@ -1,9 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v 1.1 2013/04/02 18:55:41 jer Exp $ - -EAPI="5" +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9-r1.ebuild,v 1.2 2013/04/24 16:50:22 jer Exp $ +EAPI=5 inherit eutils autotools-multilib DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files" @@ -18,12 +17,16 @@ IUSE="+cxx examples static-libs" DEPEND=" sys-devel/libtool sys-devel/bison" -RDEPEND="" PATCHES=( "${FILESDIR}/${P}-out-of-source-build.patch" ) AUTOTOOLS_AUTORECONF="1" +src_prepare() { + sed -i configure.ac -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die + autotools-multilib_src_prepare +} + src_configure() { local myeconfargs=( $(use_enable cxx) |