diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-04-20 21:51:02 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2008-04-20 21:51:02 +0000 |
commit | 3048e655a9d7994565ccb5a4b8d16828c3654608 (patch) | |
tree | 1407c7894a14254378a2b9272c48b77708e4d44b /sys-libs/libmath++ | |
parent | Run eautoreconf in src_unpack phase, bug #207428. (diff) | |
download | gentoo-2-3048e655a9d7994565ccb5a4b8d16828c3654608.tar.gz gentoo-2-3048e655a9d7994565ccb5a4b8d16828c3654608.tar.bz2 gentoo-2-3048e655a9d7994565ccb5a4b8d16828c3654608.zip |
Run eautoreconf in src_unpack phase, bug #207479.
(Portage version: 2.1.5_rc5)
Diffstat (limited to 'sys-libs/libmath++')
-rw-r--r-- | sys-libs/libmath++/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/libmath++/libmath++-0.0.4.ebuild | 11 |
2 files changed, 13 insertions, 5 deletions
diff --git a/sys-libs/libmath++/ChangeLog b/sys-libs/libmath++/ChangeLog index 3f55f188cd33..a8e50bc2a5f4 100644 --- a/sys-libs/libmath++/ChangeLog +++ b/sys-libs/libmath++/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-libs/libmath++ -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.12 2006/11/21 20:49:42 dev-zero Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.13 2008/04/20 21:51:02 flameeyes Exp $ + + 20 Apr 2008; Diego Pettenò <flameeyes@gentoo.org> libmath++-0.0.4.ebuild: + Run eautoreconf in src_unpack phase, bug #207479. 21 Nov 2006; Tiziano Müller <dev-zero@gentoo.org> libmath++-0.0.4.ebuild: Fixing automake/autoconf deps again, bug #154567 diff --git a/sys-libs/libmath++/libmath++-0.0.4.ebuild b/sys-libs/libmath++/libmath++-0.0.4.ebuild index 4f720dec9696..a73346ed2ca0 100644 --- a/sys-libs/libmath++/libmath++-0.0.4.ebuild +++ b/sys-libs/libmath++/libmath++-0.0.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4.ebuild,v 1.9 2006/11/21 20:49:42 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4.ebuild,v 1.10 2008/04/20 21:51:02 flameeyes Exp $ WANT_AUTOMAKE="latest" WANT_AUTOCONF="latest" @@ -19,9 +19,14 @@ IUSE="doc" DEPEND="doc? ( app-doc/doxygen )" RDEPEND="" -src_compile() { +src_unpack() { + unpack ${A} + cd "${S}" + eautoreconf +} +src_compile() { econf || die "configure failed" emake || die "make filed" |