diff options
author | 2021-04-10 06:07:33 +0100 | |
---|---|---|
committer | 2021-04-10 07:17:50 +0100 | |
commit | 28ddf447b5fa1c6c8218f3d41fc452b31dc66421 (patch) | |
tree | b6023eefc720078d6726a15ad02116fcd5c701cf /games-arcade/gunocide2ex/gunocide2ex-1.0-r2.ebuild | |
parent | profiles/package.mask: remove dev-ruby/* masks for removed packages (diff) | |
download | gentoo-28ddf447b5fa1c6c8218f3d41fc452b31dc66421.tar.gz gentoo-28ddf447b5fa1c6c8218f3d41fc452b31dc66421.tar.bz2 gentoo-28ddf447b5fa1c6c8218f3d41fc452b31dc66421.zip |
games-arcade/gunocide2ex: add missing desktop inherit, fix games.eclass ref
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-arcade/gunocide2ex/gunocide2ex-1.0-r2.ebuild')
-rw-r--r-- | games-arcade/gunocide2ex/gunocide2ex-1.0-r2.ebuild | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/games-arcade/gunocide2ex/gunocide2ex-1.0-r2.ebuild b/games-arcade/gunocide2ex/gunocide2ex-1.0-r2.ebuild new file mode 100644 index 000000000000..920de2e8b41e --- /dev/null +++ b/games-arcade/gunocide2ex/gunocide2ex-1.0-r2.ebuild @@ -0,0 +1,88 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop 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:/usr/share:" \ + 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" +} |