diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-01-02 11:23:29 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-01-02 11:23:29 +0000 |
commit | 08996e443ef2a9ea65051a51a47218a208192544 (patch) | |
tree | 164db885664a135d831986bd38220bc47a914670 /games-action | |
parent | xinitrc.d file needs to be executable (#520550#c6 by Joakim Tjernlund) (diff) | |
download | gentoo-2-08996e443ef2a9ea65051a51a47218a208192544.tar.gz gentoo-2-08996e443ef2a9ea65051a51a47218a208192544.tar.bz2 gentoo-2-08996e443ef2a9ea65051a51a47218a208192544.zip |
EAPI 4
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/xbomber/ChangeLog | 7 | ||||
-rw-r--r-- | games-action/xbomber/xbomber-101.ebuild | 11 |
2 files changed, 11 insertions, 7 deletions
diff --git a/games-action/xbomber/ChangeLog b/games-action/xbomber/ChangeLog index ddb4454f8cee..6af592e4522e 100644 --- a/games-action/xbomber/ChangeLog +++ b/games-action/xbomber/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/xbomber -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/xbomber/ChangeLog,v 1.14 2012/11/01 20:06:59 hasufell Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/xbomber/ChangeLog,v 1.15 2015/01/02 11:23:29 tupone Exp $ + + 02 Jan 2015; Tupone Alfredo <tupone@gentoo.org> xbomber-101.ebuild: + EAPI 4 01 Nov 2012; Julian Ospald <hasufell@gentoo.org> files/xbomber-101-ldflags.patch: diff --git a/games-action/xbomber/xbomber-101.ebuild b/games-action/xbomber/xbomber-101.ebuild index 7d562ac866b2..b675b44ba460 100644 --- a/games-action/xbomber/xbomber-101.ebuild +++ b/games-action/xbomber/xbomber-101.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 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/xbomber/xbomber-101.ebuild,v 1.16 2010/10/19 07:52:53 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/xbomber/xbomber-101.ebuild,v 1.17 2015/01/02 11:23:29 tupone Exp $ -EAPI=2 +EAPI=4 inherit eutils games DESCRIPTION="Bomberman clone w/multiplayer support" @@ -15,6 +15,7 @@ KEYWORDS="amd64 ~ppc x86" IUSE="" DEPEND="x11-libs/libX11" +RDEPEND="${DEPEND}" src_prepare() { sed -i \ @@ -36,9 +37,9 @@ src_prepare() { } src_install() { - dogamesbin matcher bomber || die "dogamesbin failed" + dogamesbin matcher bomber insinto "${GAMES_DATADIR}"/${PN} - doins -r data/* || die "doins failed" + doins -r data/* dodoc README Changelog prepgamesdirs } |