diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2014-10-30 05:49:25 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2014-10-30 05:49:25 +0000 |
commit | aee992e261b688a8e511fda76fb6cb09c376adab (patch) | |
tree | 62f092b281bff6a96718714967c775117aea3359 /games-board | |
parent | Include upstream patch for udev-217 compability and adjust blockers accordingly. (diff) | |
download | gentoo-2-aee992e261b688a8e511fda76fb6cb09c376adab.tar.gz gentoo-2-aee992e261b688a8e511fda76fb6cb09c376adab.tar.bz2 gentoo-2-aee992e261b688a8e511fda76fb6cb09c376adab.zip |
EAPI=5
(Portage version: 2.2.8-r2/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/fruit/ChangeLog | 8 | ||||
-rw-r--r-- | games-board/fruit/fruit-2.1.ebuild | 16 |
2 files changed, 12 insertions, 12 deletions
diff --git a/games-board/fruit/ChangeLog b/games-board/fruit/ChangeLog index e54ba35667f8..dc62e234090f 100644 --- a/games-board/fruit/ChangeLog +++ b/games-board/fruit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-board/fruit -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/fruit/ChangeLog,v 1.6 2009/11/25 14:02:54 maekke Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/fruit/ChangeLog,v 1.7 2014/10/30 05:49:25 mr_bones_ Exp $ + + 30 Oct 2014; Michael Sterrett <mr_bones_@gentoo.org> fruit-2.1.ebuild: + EAPI=5 25 Nov 2009; Markus Meier <maekke@gentoo.org> fruit-2.1.ebuild: amd64/x86 stable, bug #294255 @@ -22,4 +25,3 @@ 07 Feb 2007; <tupone@gentoo.org> +files/fruit-2.1-gentoo.patch, +metadata.xml, +fruit-2.1.ebuild: New ebuild. Bug #108154 by Kamil Rytarowski - diff --git a/games-board/fruit/fruit-2.1.ebuild b/games-board/fruit/fruit-2.1.ebuild index 95c3facf3dd4..6e98a98916e5 100644 --- a/games-board/fruit/fruit-2.1.ebuild +++ b/games-board/fruit/fruit-2.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/fruit/fruit-2.1.ebuild,v 1.6 2009/11/25 14:02:54 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/fruit/fruit-2.1.ebuild,v 1.7 2014/10/30 05:49:25 mr_bones_ Exp $ -EAPI=2 +EAPI=5 inherit eutils versionator games MY_PV=$(replace_all_version_separators '') @@ -25,19 +25,17 @@ src_prepare() { epatch "${FILESDIR}/${P}"-gentoo.patch sed -i \ -e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" \ - option.cpp \ - || die "sed option.cpp failed" + option.cpp || die sed -i \ -e '/^CXX/d' \ -e '/^LDFLAGS/d' \ - Makefile \ - || die "sed Makefile failed" + Makefile || die } src_install() { - dogamesbin ${PN} || die "dogamesbin failed" + dogamesbin ${PN} insinto "${GAMES_DATADIR}/${PN}" - doins ../book_small.bin || die "doins failed" + doins ../book_small.bin dodoc ../readme.txt ../technical_10.txt prepgamesdirs } |