From 28ddf447b5fa1c6c8218f3d41fc452b31dc66421 Mon Sep 17 00:00:00 2001 From: Sam James Date: Sat, 10 Apr 2021 06:07:33 +0100 Subject: games-arcade/gunocide2ex: add missing desktop inherit, fix games.eclass ref Signed-off-by: Sam James --- games-arcade/gunocide2ex/gunocide2ex-1.0-r1.ebuild | 88 ---------------------- 1 file changed, 88 deletions(-) delete mode 100644 games-arcade/gunocide2ex/gunocide2ex-1.0-r1.ebuild (limited to 'games-arcade/gunocide2ex/gunocide2ex-1.0-r1.ebuild') diff --git a/games-arcade/gunocide2ex/gunocide2ex-1.0-r1.ebuild b/games-arcade/gunocide2ex/gunocide2ex-1.0-r1.ebuild deleted file mode 100644 index 799ac5e46304..000000000000 --- a/games-arcade/gunocide2ex/gunocide2ex-1.0-r1.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit edos2unix toolchain-funcs unpacker - -DESCRIPTION="Fast-paced 2D shoot'em'up" -HOMEPAGE="http://g2ex.sourceforge.net/" -SRC_URI="mirror://sourceforge/g2ex/g2ex-setup.run" -S="${WORKDIR}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86" - -DEPEND=" - media-libs/libsdl[video] - media-libs/sdl-ttf - media-libs/sdl-mixer[vorbis] -" -RDEPEND=" - ${DEPEND} - acct-group/gamestat -" - -PATCHES=( - "${FILESDIR}"/${P}-build.patch - "${FILESDIR}"/${P}-glibc2.10.patch -) - -src_unpack() { - unpack_makeself - mkdir binary || die -} - -src_prepare() { - default - - edos2unix config.cfg - - sed -i \ - -e "s:/usr/local/games/gunocide2ex/config\.cfg:/etc/${PN}.cfg:" \ - -e "s:/usr/local/games/gunocide2ex/hscore\.dat:/var/games/gunocide2ex/${PN}-hscore.dat:" \ - -e "s:memleaks.log:/dev/null:" \ - src/*.{h,cpp} || die - - sed -i \ - -e "s:/usr/local/games:${GAMES_DATADIR}:" \ - src/*.{h,cpp} $(find gfx -name '*.txt') || die -} - -src_compile() { - cd src || die - - tc-export CXX - - emake \ - CXXFLAGS="$CXXFLAGS $(sdl-config --cflags)" \ - $(echo *.cpp | sed 's/\.cpp/.o/g') - - $(tc-getCXX) ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} -o ${PN} *.o -lpthread -lSDL -lSDL_ttf -lSDL_mixer || die -} - -src_install() { - dobin src/${PN} - dosym ${PN} /usr/bin/g2ex - - insinto /usr/share/${PN} - doins -r gfx sfx lvl credits arial.ttf - - insinto /etc - newins config.cfg ${PN}.cfg - - insinto /var/games/${PN} - newins hscore.dat ${PN}-hscore.dat - - fperms 660 /var/games/${PN}/${PN}-hscore.dat - fowners -R root:gamestat /var/games/${PN} - fperms g+s /usr/bin/g2ex - - dodoc history doc/MANUAL_DE - docinto html - dodoc doc/manual_de.html - - newicon g2icon.xpm ${PN}.xpm - make_desktop_entry ${PN} "Gunocide II EX" -} -- cgit v1.2.3-65-gdbad