diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-24 20:39:44 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-24 21:26:17 +0200 |
commit | 83b47182da2175a68bd0be6dd63fb7e1e4a646af (patch) | |
tree | 1ecd0a809b7e57a6326c09be606d7d7aaf08c502 /games-arcade | |
parent | games-arcade/stardork: Drop old (diff) | |
download | gentoo-83b47182da2175a68bd0be6dd63fb7e1e4a646af.tar.gz gentoo-83b47182da2175a68bd0be6dd63fb7e1e4a646af.tar.bz2 gentoo-83b47182da2175a68bd0be6dd63fb7e1e4a646af.zip |
games-arcade/supertransball2: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-arcade')
-rw-r--r-- | games-arcade/supertransball2/Manifest | 2 | ||||
-rw-r--r-- | games-arcade/supertransball2/files/supertransball2-1.5-ldflags.patch | 11 | ||||
-rw-r--r-- | games-arcade/supertransball2/supertransball2-1.5.ebuild | 68 |
3 files changed, 0 insertions, 81 deletions
diff --git a/games-arcade/supertransball2/Manifest b/games-arcade/supertransball2/Manifest deleted file mode 100644 index df85d948c89b..000000000000 --- a/games-arcade/supertransball2/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST stransball2-v15-linux.zip 302212 BLAKE2B 8b45e32f37c805e75ba0d19ef004d75baea689fe87e946d50301cef01230492fd531b4100bc6200a261c24463443b2811faea8d200d15b15af0c884dbc285d2a SHA512 e87655dfca039c0c8553372b4da139f1d8fa420aad1909b422318dc049a9f7972c8d2398b83fde677b3eaf21d2d70fad73d7ec0c4b7bcbeacbf3544e6e575f6a -DIST supertransball2_1.5-3.diff.gz 6592 BLAKE2B 29ed5609bffb8093422d74a5b2889bb4c7a5c4728cab40bc3e95fef35a1ddc9f60945e15366e07b47efb1a3a15e51bb4bc85b51bb3e854778e8ec07700861fc6 SHA512 d8f0682633d8b20661a98d037430590c0f509205857644b28a7b56fc80011df8cd5dbbacf1142514b18dd471e6f79e515d981c025cb19a2288cd7bf46c0d1ba4 diff --git a/games-arcade/supertransball2/files/supertransball2-1.5-ldflags.patch b/games-arcade/supertransball2/files/supertransball2-1.5-ldflags.patch deleted file mode 100644 index daee9f6b17fd..000000000000 --- a/games-arcade/supertransball2/files/supertransball2-1.5-ldflags.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.old 2010-10-16 21:34:09.000000000 +0200 -+++ Makefile 2010-10-16 21:34:24.000000000 +0200 -@@ -17,7 +17,7 @@ - - # dynamically linked binary: - $(TARGET): $(OBJS) -- $(CXX) $^ -o $@ `sdl-config --libs` -lSDL_image -lSDL_mixer -lSDL_sound -lSDL_sound -lSGE -+ $(CXX) $(LDFLAGS) $^ -o $@ `sdl-config --libs` -lSDL_image -lSDL_mixer -lSDL_sound -lSDL_sound -lSGE - mv ./$(TARGET) .. - - clean: diff --git a/games-arcade/supertransball2/supertransball2-1.5.ebuild b/games-arcade/supertransball2/supertransball2-1.5.ebuild deleted file mode 100644 index 3ceb2f40f728..000000000000 --- a/games-arcade/supertransball2/supertransball2-1.5.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 versionator games - -MY_PV=$(delete_all_version_separators) -MY_P=stransball2-v${MY_PV} -FILE=${MY_P}-linux -DEBIAN_PATCH="${PN}_${PV}-3.diff" - -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}/${DEBIAN_PATCH}.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~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() { - cd "${WORKDIR}" - sed -i \ - -e "s:/usr/share/games:${GAMES_DATADIR}:" \ - "${DEBIAN_PATCH}" || die - - epatch "${DEBIAN_PATCH}" - - local deb_dir=${P}/debian/patches - rm -f "${deb_dir}"/00list - epatch "${deb_dir}"/* - - cd "${S}" - sed -i \ - -e "s: -I/usr/local/include/SDL::" \ - -e "s:-g3 -O3:\$(CXXFLAGS):" \ - -e "s:c++:\$(CXX):" \ - Makefile || die "sed Makefile failed" - epatch "${FILESDIR}"/${P}-ldflags.patch -} - -src_install() { - cd .. - dogamesbin ${PN} - make_desktop_entry ${PN} "Super Transball 2" - dodoc readme.txt - doman debian/supertransball2.6 - - insinto "${GAMES_DATADIR}/${PN}" - doins -r demos graphics maps sound - - prepgamesdirs -} |