diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-02-27 20:20:12 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-02-27 20:20:12 +0000 |
commit | 0d03b9489421febf056ac532ddb7c93899b1d816 (patch) | |
tree | 61ee3999853c32c0d2bdea5eb4d03ee845f88187 /games-puzzle | |
parent | Add ruby22. (diff) | |
download | gentoo-2-0d03b9489421febf056ac532ddb7c93899b1d816.tar.gz gentoo-2-0d03b9489421febf056ac532ddb7c93899b1d816.tar.bz2 gentoo-2-0d03b9489421febf056ac532ddb7c93899b1d816.zip |
EAPI 5
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/xbomb/ChangeLog | 7 | ||||
-rw-r--r-- | games-puzzle/xbomb/xbomb-2.2a.ebuild | 13 |
2 files changed, 12 insertions, 8 deletions
diff --git a/games-puzzle/xbomb/ChangeLog b/games-puzzle/xbomb/ChangeLog index a4b711e027f5..85992cd74540 100644 --- a/games-puzzle/xbomb/ChangeLog +++ b/games-puzzle/xbomb/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-puzzle/xbomb -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xbomb/ChangeLog,v 1.22 2010/09/22 12:21:49 tupone Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xbomb/ChangeLog,v 1.23 2015/02/27 20:20:12 tupone Exp $ + + 27 Feb 2015; Tupone Alfredo <tupone@gentoo.org> xbomb-2.2a.ebuild: + EAPI 5 22 Sep 2010; Alfredo Tupone <tupone@gentoo.org> xbomb-2.2a.ebuild, +files/xbomb-2.2a-ldflags.patch: diff --git a/games-puzzle/xbomb/xbomb-2.2a.ebuild b/games-puzzle/xbomb/xbomb-2.2a.ebuild index 17fa6d2d8315..c6a4ca90d6a8 100644 --- a/games-puzzle/xbomb/xbomb-2.2a.ebuild +++ b/games-puzzle/xbomb/xbomb-2.2a.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-puzzle/xbomb/xbomb-2.2a.ebuild,v 1.6 2010/09/22 12:21:49 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xbomb/xbomb-2.2a.ebuild,v 1.7 2015/02/27 20:20:12 tupone Exp $ -EAPI=2 +EAPI=5 inherit eutils games DESCRIPTION="Minesweeper clone with hexagonal, rectangular and triangular grid" @@ -15,6 +15,7 @@ KEYWORDS="amd64 ppc ppc64 x86" IUSE="" DEPEND="x11-libs/libXaw" +RDEPEND="${DEPEND}" src_prepare() { epatch "${FILESDIR}"/${P}-DESTDIR.patch \ @@ -32,10 +33,10 @@ src_prepare() { } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README LSM + default + dodoc LSM dodir "${GAMES_STATEDIR}"/${PN} touch "${D}/${GAMES_STATEDIR}"/${PN}/${PN}{3,4,6}.hi || die "touch failed" - fperms 660 "${GAMES_STATEDIR}"/${PN}/${PN}{3,4,6}.hi || die "fperms failed" + fperms 660 "${GAMES_STATEDIR}"/${PN}/${PN}{3,4,6}.hi prepgamesdirs } |