diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-01-01 20:52:09 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-01-01 20:52:09 +0000 |
commit | 856361f0e186c3c349e526d5e3ee192150d7f023 (patch) | |
tree | df78b3907250753192951e5b115a73ca45aa283c /games-action | |
parent | Edit description (diff) | |
download | gentoo-2-856361f0e186c3c349e526d5e3ee192150d7f023.tar.gz gentoo-2-856361f0e186c3c349e526d5e3ee192150d7f023.tar.bz2 gentoo-2-856361f0e186c3c349e526d5e3ee192150d7f023.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/rrootage/ChangeLog | 7 | ||||
-rw-r--r-- | games-action/rrootage/rrootage-0.23a.ebuild | 12 |
2 files changed, 11 insertions, 8 deletions
diff --git a/games-action/rrootage/ChangeLog b/games-action/rrootage/ChangeLog index 3c220dde8a82..94db1e36faf8 100644 --- a/games-action/rrootage/ChangeLog +++ b/games-action/rrootage/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-action/rrootage -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/rrootage/ChangeLog,v 1.12 2012/07/26 10:38:14 tupone Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/rrootage/ChangeLog,v 1.13 2015/01/01 20:52:09 tupone Exp $ + + 01 Jan 2015; Tupone Alfredo <tupone@gentoo.org> rrootage-0.23a.ebuild: + EAPI 4 26 Jul 2012; Alfredo Tupone <tupone@gentoo.org> rrootage-0.23a.ebuild: Fix build with new gcc. Bug #424181 by flameeyes@gentoo.org diff --git a/games-action/rrootage/rrootage-0.23a.ebuild b/games-action/rrootage/rrootage-0.23a.ebuild index 679aac697a58..13902c3183bd 100644 --- a/games-action/rrootage/rrootage-0.23a.ebuild +++ b/games-action/rrootage/rrootage-0.23a.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/rrootage/rrootage-0.23a.ebuild,v 1.12 2012/07/26 10:38:14 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/rrootage/rrootage-0.23a.ebuild,v 1.13 2015/01/01 20:52:09 tupone Exp $ -EAPI=2 +EAPI=4 inherit eutils games MY_PN="rRootage" @@ -22,6 +22,7 @@ DEPEND="virtual/opengl media-libs/libsdl[video] media-libs/sdl-mixer[vorbis] >=dev-libs/libbulletml-0.0.3" +RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_PN}/src @@ -47,12 +48,11 @@ src_prepare() { src_compile() { emake \ MORE_CFLAGS="-DLINUX ${CFLAGS}" \ - MORE_CXXFLAGS="-DLINUX ${CXXFLAGS}" \ - || die "emake failed" + MORE_CXXFLAGS="-DLINUX ${CXXFLAGS}" } src_install() { - newgamesbin rr ${PN} || die "newgamesbin failed" + newgamesbin rr ${PN} dodir "${GAMES_DATADIR}/${MY_PN}" cp -r ../rr_share/* "${D}/${GAMES_DATADIR}/${MY_PN}" || die "cp failed" dodoc ../readme* |