diff options
author | 2005-06-23 19:06:52 +0000 | |
---|---|---|
committer | 2005-06-23 19:06:52 +0000 | |
commit | 19a4ffa65bde54ec0978ef6bc189414df499087d (patch) | |
tree | f8f204368e31b21f7e04354a25b49ae29f675296 /games-action/geki3-KXL | |
parent | docs fix (diff) | |
download | gentoo-2-19a4ffa65bde54ec0978ef6bc189414df499087d.tar.gz gentoo-2-19a4ffa65bde54ec0978ef6bc189414df499087d.tar.bz2 gentoo-2-19a4ffa65bde54ec0978ef6bc189414df499087d.zip |
fix bug #93701 with WANT_AUTOCONF=2.5; tidy
(Portage version: 2.0.51.19)
Diffstat (limited to 'games-action/geki3-KXL')
-rw-r--r-- | games-action/geki3-KXL/ChangeLog | 8 | ||||
-rw-r--r-- | games-action/geki3-KXL/geki3-KXL-1.0.3-r1.ebuild | 23 |
2 files changed, 17 insertions, 14 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/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 } |