diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-01-19 16:17:29 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-01-19 16:17:29 +0000 |
commit | a8dd10b86bd829322ac3fc1ba46a13796b237e01 (patch) | |
tree | 5c4d10ab83c07e27c024a8ff24fa6d91d9f6f7aa /sys-devel | |
parent | add compatibility sym link - bug #399253 (diff) | |
download | gentoo-2-a8dd10b86bd829322ac3fc1ba46a13796b237e01.tar.gz gentoo-2-a8dd10b86bd829322ac3fc1ba46a13796b237e01.tar.bz2 gentoo-2-a8dd10b86bd829322ac3fc1ba46a13796b237e01.zip |
Execute bootstrap script as pointed out by Sergei Trofimovich.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/automake/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/automake/automake-9999.ebuild | 19 |
2 files changed, 15 insertions, 11 deletions
diff --git a/sys-devel/automake/ChangeLog b/sys-devel/automake/ChangeLog index b066599cb1aa..9753422cc0f8 100644 --- a/sys-devel/automake/ChangeLog +++ b/sys-devel/automake/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/automake -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.154 2011/12/31 07:19:05 vapier Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.155 2012/01/19 16:17:29 vapier Exp $ + + 19 Jan 2012; Mike Frysinger <vapier@gentoo.org> automake-9999.ebuild: + Execute bootstrap script as pointed out by Sergei Trofimovich. *automake-1.11.2 (31 Dec 2011) diff --git a/sys-devel/automake/automake-9999.ebuild b/sys-devel/automake/automake-9999.ebuild index 0eda3f4d3a85..0a69f10f4bca 100644 --- a/sys-devel/automake/automake-9999.ebuild +++ b/sys-devel/automake/automake-9999.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-9999.ebuild,v 1.4 2011/09/21 08:35:56 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-9999.ebuild,v 1.5 2012/01/19 16:17:29 vapier Exp $ +EAPI="2" EGIT_REPO_URI="git://git.savannah.gnu.org/${PN}.git http://git.savannah.gnu.org/r/${PN}.git" @@ -24,18 +25,18 @@ RDEPEND="dev-lang/perl DEPEND="${RDEPEND} sys-apps/help2man" -src_unpack() { - git-2_src_unpack - cd "${S}" +src_prepare() { sed -i \ -e "s|: (automake)| v${SLOT}: (automake${SLOT})|" \ - doc/automake.texi || die "sed failed" + doc/automake.texi || die export WANT_AUTOCONF=2.5 + # Don't try wrapping the autotools this thing runs as it tends + # to be a bit esoteric, and the script does `set -e` itself. + ./bootstrap } -src_compile() { - econf --docdir=/usr/share/doc/${PF} || die - emake || die +src_configure() { + econf --docdir=/usr/share/doc/${PF} } src_install() { |