diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-24 20:40:05 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-24 21:26:19 +0200 |
commit | a85d61595417253e7bdee8050241fe902a531937 (patch) | |
tree | afb90f22bc49402bf41b3f9ef1c042ae9d1ed803 /games-arcade/supertransball2/supertransball2-1.5-r1.ebuild | |
parent | games-arcade/supertransball2: Drop old (diff) | |
download | gentoo-a85d61595417253e7bdee8050241fe902a531937.tar.gz gentoo-a85d61595417253e7bdee8050241fe902a531937.tar.bz2 gentoo-a85d61595417253e7bdee8050241fe902a531937.zip |
games-arcade/supertransball2: Stop using games.eclass
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-arcade/supertransball2/supertransball2-1.5-r1.ebuild')
-rw-r--r-- | games-arcade/supertransball2/supertransball2-1.5-r1.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/games-arcade/supertransball2/supertransball2-1.5-r1.ebuild b/games-arcade/supertransball2/supertransball2-1.5-r1.ebuild new file mode 100644 index 000000000000..96768ec7e1cd --- /dev/null +++ b/games-arcade/supertransball2/supertransball2-1.5-r1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit epatch desktop versionator + +MY_PV="$(delete_all_version_separators)" +MY_P="stransball2-v${MY_PV}" +FILE="${MY_P}-linux" + +DESCRIPTION="Thrust clone" +HOMEPAGE="http://www.braingames.getput.com/stransball2/" +SRC_URI="http://braingames.bugreport.nl/stransball2/${FILE}.zip + mirror://debian/pool/main/s/${PN}/${PN}_${PV}-8.debian.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND=" + media-libs/libsdl[sound,video] + media-libs/sdl-image + media-libs/sdl-mixer + media-libs/sdl-sound + media-libs/sge +" +DEPEND="${RDEPEND} + app-arch/unzip +" + +S="${WORKDIR}/${P}/sources" + +src_unpack() { + unpack ${A} + mv -f "${FILE}" ${P} +} + +src_prepare() { + default + sed -i \ + -e "s:/usr/share/games:/usr/share:" \ + "${WORKDIR}"/debian/patches/0001-Fix-unix-paths-and-Makefile.patch || die + + epatch "${WORKDIR}"/debian/patches/*.patch + + sed -i \ + -e "s: -I/usr/local/include/SDL::" \ + -e "s:-g3 -O3:\$(CXXFLAGS):" \ + -e "s:c++:\$(CXX):" \ + Makefile || die "sed Makefile failed" +} + +src_install() { + cd .. + dobin ${PN} + + doicon ../debian/${PN}.png + make_desktop_entry ${PN} "Super Transball 2" + dodoc readme.txt + doman ../debian/supertransball2.6 + + insinto "/usr/share/${PN}" + doins -r demos graphics maps sound +} |