diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-23 19:06:52 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-06-23 19:06:52 +0000 |
commit | a3c892e92e684c99b8e693df6adc2fe99ec3ea8d (patch) | |
tree | e02e5dbc27327deb7a1751a0c9e969cd6245740e /games-action | |
parent | docs fix (diff) | |
download | historical-a3c892e92e684c99b8e693df6adc2fe99ec3ea8d.tar.gz historical-a3c892e92e684c99b8e693df6adc2fe99ec3ea8d.tar.bz2 historical-a3c892e92e684c99b8e693df6adc2fe99ec3ea8d.zip |
fix bug #93701 with WANT_AUTOCONF=2.5; tidy
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/geki3-KXL/ChangeLog | 8 | ||||
-rw-r--r-- | games-action/geki3-KXL/Manifest | 6 | ||||
-rw-r--r-- | games-action/geki3-KXL/geki3-KXL-1.0.3-r1.ebuild | 23 |
3 files changed, 20 insertions, 17 deletions
diff --git a/games-action/geki3-KXL/ChangeLog b/games-action/geki3-KXL/ChangeLog index dee786c8747f..49b58fd8c5a8 100644 --- a/games-action/geki3-KXL/ChangeLog +++ b/games-action/geki3-KXL/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/geki3-KXL -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/geki3-KXL/ChangeLog,v 1.5 2004/06/24 21:55:32 agriffis Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/geki3-KXL/ChangeLog,v 1.6 2005/06/23 19:06:51 mr_bones_ Exp $ + + 23 Jun 2005; Michael Sterrett <mr_bones_@gentoo.org> + geki3-KXL-1.0.3-r1.ebuild: + fix bug #93701 with WANT_AUTOCONF=2.5; tidy 19 Apr 2004; Chris Gianelloni <wolf31o2@gentoo.org> geki3-KXL-1.0.3-r1.ebuild: diff --git a/games-action/geki3-KXL/Manifest b/games-action/geki3-KXL/Manifest index 66bea5856668..fa2038296bca 100644 --- a/games-action/geki3-KXL/Manifest +++ b/games-action/geki3-KXL/Manifest @@ -1,5 +1,5 @@ -MD5 c22c67961ecd5a15b79d571a02bd28fe geki3-KXL-1.0.3-r1.ebuild 743 -MD5 575fe764e3c93174c8c67141e82c845d ChangeLog 600 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 -MD5 2225b21598f47305f82a98ec53ac1007 files/digest-geki3-KXL-1.0.3-r1 67 +MD5 e070164a2a2cc8755d344895f239dc92 ChangeLog 732 +MD5 1ce3284930aa2c90748f8c408bf459bf geki3-KXL-1.0.3-r1.ebuild 757 MD5 bc8aec0dca5c14762da8701aca0134af files/1.0.3-gentoo-paths.patch 2211 +MD5 2225b21598f47305f82a98ec53ac1007 files/digest-geki3-KXL-1.0.3-r1 67 diff --git a/games-action/geki3-KXL/geki3-KXL-1.0.3-r1.ebuild b/games-action/geki3-KXL/geki3-KXL-1.0.3-r1.ebuild index 80557f143bca..339a5e4f1ed2 100644 --- a/games-action/geki3-KXL/geki3-KXL-1.0.3-r1.ebuild +++ b/games-action/geki3-KXL/geki3-KXL-1.0.3-r1.ebuild @@ -1,31 +1,30 @@ -# 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-action/geki3-KXL/geki3-KXL-1.0.3-r1.ebuild,v 1.5 2004/06/24 21:55:32 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/geki3-KXL/geki3-KXL-1.0.3-r1.ebuild,v 1.6 2005/06/23 19:06:52 mr_bones_ Exp $ -inherit games eutils +inherit eutils games DESCRIPTION="2D length scroll shooting game" -SRC_URI="http://kxl.hn.org/download/${P}.tar.gz" HOMEPAGE="http://kxl.hn.org/" +SRC_URI="http://kxl.hn.org/download/${P}.tar.gz" -KEYWORDS="x86" -SLOT="0" LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" IUSE="" DEPEND=">=dev-games/KXL-1.1.7" src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}-gentoo-paths.patch - aclocal || die "aclocal failed" - automake -a || die "automake failed" - autoconf || die "autoconf failed" + cd "${S}" + epatch "${FILESDIR}"/${PV}-gentoo-paths.patch + export WANT_AUTOCONF=2.5 + aclocal && automake -a -c && autoconf || die "autotools failed" } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die "make install failed" dodoc ChangeLog README prepgamesdirs } |