diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-01-25 22:15:23 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-01-25 22:15:23 +0000 |
commit | 17469be031f21f065a917bab50ebfd5c90fb8792 (patch) | |
tree | f3831a7b560b6e96caea1ef02854ded61c857aec /games-action | |
parent | tidy (diff) | |
download | gentoo-2-17469be031f21f065a917bab50ebfd5c90fb8792.tar.gz gentoo-2-17469be031f21f065a917bab50ebfd5c90fb8792.tar.bz2 gentoo-2-17469be031f21f065a917bab50ebfd5c90fb8792.zip |
EAPI=2; tidy
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/rrootage/ChangeLog | 8 | ||||
-rw-r--r-- | games-action/rrootage/rrootage-0.23a.ebuild | 13 |
2 files changed, 12 insertions, 9 deletions
diff --git a/games-action/rrootage/ChangeLog b/games-action/rrootage/ChangeLog index f53cee10f318..884dd4c413af 100644 --- a/games-action/rrootage/ChangeLog +++ b/games-action/rrootage/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/rrootage -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/rrootage/ChangeLog,v 1.8 2007/03/12 13:21:44 genone Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-action/rrootage/ChangeLog,v 1.9 2010/01/25 22:15:23 mr_bones_ Exp $ + + 25 Jan 2010; Michael Sterrett <mr_bones_@gentoo.org> + rrootage-0.23a.ebuild: + EAPI=2; tidy 12 Mar 2007; Marius Mauch <genone@gentoo.org> rrootage-0.23a.ebuild: Replacing einfo with elog diff --git a/games-action/rrootage/rrootage-0.23a.ebuild b/games-action/rrootage/rrootage-0.23a.ebuild index c3589d76af45..4c2dfbd1f351 100644 --- a/games-action/rrootage/rrootage-0.23a.ebuild +++ b/games-action/rrootage/rrootage-0.23a.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2010 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.8 2007/03/12 13:21:44 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/rrootage/rrootage-0.23a.ebuild,v 1.9 2010/01/25 22:15:23 mr_bones_ Exp $ +EAPI=2 inherit eutils games MY_PN="rRootage" @@ -22,11 +23,9 @@ DEPEND="virtual/opengl media-libs/sdl-mixer >=dev-libs/libbulletml-0.0.3" -S="${WORKDIR}/${MY_PN}/src" +S=${WORKDIR}/${MY_PN}/src -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { epatch "${FILESDIR}/${P}"-gcc41.patch sed -e "s/-lglut/-lGL -lGLU/" makefile.lin > Makefile || die "sed failed" @@ -50,7 +49,7 @@ src_install() { pkg_postinst() { games_pkg_postinst - if ! built_with_use media-libs/sdl-mixer vorbis ; then + if ! has_version "media-libs/sdl-mixer[vorbis]" ; then elog "${PN} will not have sound since sdl-mixer" elog "is built with USE=-vorbis" elog "Please emerge sdl-mixer with USE=vorbis" |