diff options
author | David Seifert <soap@gentoo.org> | 2017-12-20 22:30:10 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-12-21 02:32:17 +0100 |
commit | 59932d27eefcdc6e30b17eefc9c8fade34230a87 (patch) | |
tree | 85b072357b786e8311e4f87858acdc04db9afece /games-action/rrootage | |
parent | games-action/rafkill: Remove old (diff) | |
download | gentoo-59932d27eefcdc6e30b17eefc9c8fade34230a87.tar.gz gentoo-59932d27eefcdc6e30b17eefc9c8fade34230a87.tar.bz2 gentoo-59932d27eefcdc6e30b17eefc9c8fade34230a87.zip |
games-action/rrootage: Remove old
Package-Manager: Portage-2.3.16, Repoman-2.3.6
Diffstat (limited to 'games-action/rrootage')
-rw-r--r-- | games-action/rrootage/rrootage-0.23a.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/games-action/rrootage/rrootage-0.23a.ebuild b/games-action/rrootage/rrootage-0.23a.ebuild deleted file mode 100644 index 92e9bc6fefdf..000000000000 --- a/games-action/rrootage/rrootage-0.23a.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils games - -MY_PN="rRootage" -MY_P="${MY_PN}-${PV}" -DESCRIPTION="Abstract shooter - defeat auto-created huge battleships" -HOMEPAGE="http://www.asahi-net.or.jp/~cs8k-cyu/windows/rr_e.html - http://rrootage.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="virtual/opengl - virtual/glu - media-libs/libsdl[video] - media-libs/sdl-mixer[vorbis] - >=dev-libs/libbulletml-0.0.3" -RDEPEND=${DEPEND} - -S=${WORKDIR}/${MY_PN}/src - -src_prepare() { - epatch "${FILESDIR}/${P}"-gcc41.patch - sed \ - -e "s/-lglut/-lGL -lGLU -lm/" \ - -e "/^CC/d" \ - -e "/^CXX/d" \ - -e "/^LDFLAGS/s/=/+=/" \ - -e "/^CPPFLAGS/s/MORE_CFLAGS/MORE_CXXFLAGS/" \ - -e "/^CPPFLAGS/s/MORE_CFLAGS/MORE_CXXFLAGS/" \ - -e "s/ -mwindows//" \ - -e "s:-I./bulletml/:-I/usr/include/bulletml:" \ - makefile.lin > Makefile || die - - sed -i \ - -e "s:/usr/share/games:${GAMES_DATADIR}:" \ - barragemanager.cc screen.c soundmanager.c || die -} - -src_compile() { - emake \ - MORE_CFLAGS="-DLINUX ${CFLAGS}" \ - MORE_CXXFLAGS="-DLINUX ${CXXFLAGS}" -} - -src_install() { - newgamesbin rr ${PN} - dodir "${GAMES_DATADIR}/${MY_PN}" - cp -r ../rr_share/* "${D}/${GAMES_DATADIR}/${MY_PN}" || die - dodoc ../readme* - prepgamesdirs -} - -pkg_postinst() { - games_pkg_postinst - 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" - elog "if you want sound support" - fi -} |