diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-28 04:02:33 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-02-28 04:02:33 +0000 |
commit | 4dd72048f2e6cb90891895f990588ed60f50911f (patch) | |
tree | 4e21cbbf82574afc756d0979717ca7e3b7d1b2d8 | |
parent | Initial ebuild for Eleven (diff) | |
download | historical-4dd72048f2e6cb90891895f990588ed60f50911f.tar.gz historical-4dd72048f2e6cb90891895f990588ed60f50911f.tar.bz2 historical-4dd72048f2e6cb90891895f990588ed60f50911f.zip |
fix autotool usage (bug #83208)
Package-Manager: portage-2.0.51-r15
-rw-r--r-- | games-arcade/pachi/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/pachi/Manifest | 4 | ||||
-rw-r--r-- | games-arcade/pachi/pachi-1.0.ebuild | 15 |
3 files changed, 14 insertions, 12 deletions
diff --git a/games-arcade/pachi/ChangeLog b/games-arcade/pachi/ChangeLog index 0460e3d0fbac..16c51febf459 100644 --- a/games-arcade/pachi/ChangeLog +++ b/games-arcade/pachi/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-arcade/pachi -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/pachi/ChangeLog,v 1.7 2004/10/06 20:51:42 blubb Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/pachi/ChangeLog,v 1.8 2005/02/28 04:02:33 mr_bones_ Exp $ + + 27 Feb 2005; Michael Sterrett <mr_bones_@gentoo.org> pachi-1.0.ebuild: + fix autotool usage (bug #83208) 06 Oct 2004; Simon Stelling <blubb@gentoo.org> pachi-1.0.ebuild: added ~amd64 diff --git a/games-arcade/pachi/Manifest b/games-arcade/pachi/Manifest index 3ecc1f2256da..e9808c05d068 100644 --- a/games-arcade/pachi/Manifest +++ b/games-arcade/pachi/Manifest @@ -1,5 +1,5 @@ -MD5 37d0153b4a79d9ecde0f4460e5d4f05a ChangeLog 924 +MD5 f7c68702cf86f673f528cb4830f98db5 ChangeLog 1036 MD5 3f11aaf297b2fe67404a96cda13e9bfe metadata.xml 251 -MD5 eb3eb70ea3c7e4c0a18e5884557c63e2 pachi-1.0.ebuild 1063 +MD5 658ec33ea2b318e87a60bd5217edb43e pachi-1.0.ebuild 1123 MD5 176cc6f1d7a0b0d42d0318a9109a7a60 files/1.0-autotools.patch 1312 MD5 dcf170bfb47657827c5dd31850391719 files/digest-pachi-1.0 63 diff --git a/games-arcade/pachi/pachi-1.0.ebuild b/games-arcade/pachi/pachi-1.0.ebuild index a17b52b810a7..f022571bd101 100644 --- a/games-arcade/pachi/pachi-1.0.ebuild +++ b/games-arcade/pachi/pachi-1.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/pachi/pachi-1.0.ebuild,v 1.4 2004/10/06 20:51:42 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/pachi/pachi-1.0.ebuild,v 1.5 2005/02/28 04:02:33 mr_bones_ Exp $ inherit games eutils @@ -13,7 +13,7 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 ppc ~amd64" +KEYWORDS="~amd64 ppc x86" IUSE="" RDEPEND=">=media-libs/libsdl-1.2 @@ -22,15 +22,14 @@ RDEPEND=">=media-libs/libsdl-1.2 DEPEND="${RDEPEND} sys-devel/automake" -S="${WORKDIR}/Pachi" +S=${WORKDIR}/Pachi src_unpack() { unpack ${A} - cd ${S} + cd "${S}" epatch "${FILESDIR}/${PV}-autotools.patch" - aclocal - automake -a - autoconf + export WANT_AUTOCONF=2.5 + aclocal && automake -a && autoconf || die "autotools failed" } src_install() { |