summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2015-01-01 12:11:53 +0000
committerAlfredo Tupone <tupone@gentoo.org>2015-01-01 12:11:53 +0000
commita229befc693267b341a58818faaf114ee5f40ded (patch)
treec93f4bdaf1afb2e3d030ca574d3a7f3bfebeb540
parentVersion bump (diff)
downloadgentoo-2-a229befc693267b341a58818faaf114ee5f40ded.tar.gz
gentoo-2-a229befc693267b341a58818faaf114ee5f40ded.tar.bz2
gentoo-2-a229befc693267b341a58818faaf114ee5f40ded.zip
Migrating to EAPI 4. Fix build with new automake
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
-rw-r--r--games-action/geki3-KXL/ChangeLog7
-rw-r--r--games-action/geki3-KXL/geki3-KXL-1.0.3-r2.ebuild13
2 files changed, 12 insertions, 8 deletions
diff --git a/games-action/geki3-KXL/ChangeLog b/games-action/geki3-KXL/ChangeLog
index e3bb3e78aaa7..eb6172e1e5e3 100644
--- a/games-action/geki3-KXL/ChangeLog
+++ b/games-action/geki3-KXL/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for games-action/geki3-KXL
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-action/geki3-KXL/ChangeLog,v 1.11 2012/07/16 19:41:47 mr_bones_ Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-action/geki3-KXL/ChangeLog,v 1.12 2015/01/01 12:11:53 tupone Exp $
+
+ 01 Jan 2015; Tupone Alfredo <tupone@gentoo.org> geki3-KXL-1.0.3-r2.ebuild:
+ Migrating to EAPI 4. Fix build with new automake
16 Jul 2012; Michael Sterrett <mr_bones_@gentoo.org>
geki3-KXL-1.0.3-r2.ebuild:
diff --git a/games-action/geki3-KXL/geki3-KXL-1.0.3-r2.ebuild b/games-action/geki3-KXL/geki3-KXL-1.0.3-r2.ebuild
index 21310df6bf15..64de467ba397 100644
--- a/games-action/geki3-KXL/geki3-KXL-1.0.3-r2.ebuild
+++ b/games-action/geki3-KXL/geki3-KXL-1.0.3-r2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2015 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-r2.ebuild,v 1.5 2012/07/16 19:41:47 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/geki3-KXL/geki3-KXL-1.0.3-r2.ebuild,v 1.6 2015/01/01 12:11:53 tupone Exp $
-EAPI=2
+EAPI=4
inherit autotools eutils games
DESCRIPTION="2D length scroll shooting game"
@@ -28,16 +28,17 @@ src_prepare() {
|| die "sed failed"
sed -i -e '/CFLAGS/s/$/ @CFLAGS@/' src/Makefile.am || die #bug 426890
epatch "${FILESDIR}"/${P}-paths.patch
+ mv configure.{in,ac}
eautoreconf
}
src_install() {
- emake DESTDIR="${D}" install || die
+ default
+ emake DESTDIR="${D}" install
insinto "${GAMES_STATEDIR}"
- newins data/.score ${PN} || die
+ newins data/.score ${PN}
fperms g+w "${GAMES_STATEDIR}"/${PN}
doicon "${DISTDIR}"/${PN}.png
make_desktop_entry geki3 Geki3
- dodoc ChangeLog README
prepgamesdirs
}