summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2017-09-30 12:30:02 +1000
committerMichael Palimaka <kensington@gentoo.org>2017-09-30 12:30:34 +1000
commita660f57a3be4b7ed7bcdb42c23961e973d42b62a (patch)
treed6c991f45c5e631cd4cd1ca5364c4d0339acc028 /games-puzzle
parentgames-puzzle/xye: stabilise 0.12.2 for amd64/x86 (diff)
downloadgentoo-a660f57a3be4b7ed7bcdb42c23961e973d42b62a.tar.gz
gentoo-a660f57a3be4b7ed7bcdb42c23961e973d42b62a.tar.bz2
gentoo-a660f57a3be4b7ed7bcdb42c23961e973d42b62a.zip
games-puzzle/xye: remove 0.12.1
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'games-puzzle')
-rw-r--r--games-puzzle/xye/Manifest1
-rw-r--r--games-puzzle/xye/files/xye-0.12.1-gcc47.patch22
-rw-r--r--games-puzzle/xye/xye-0.12.1.ebuild40
3 files changed, 0 insertions, 63 deletions
diff --git a/games-puzzle/xye/Manifest b/games-puzzle/xye/Manifest
index 179165bae009..04735744778e 100644
--- a/games-puzzle/xye/Manifest
+++ b/games-puzzle/xye/Manifest
@@ -1,2 +1 @@
-DIST xye-0.12.1.tar.gz 2850776 SHA256 bbeb3265b0795f14deb2851b4a3bda7dde9b07d624a7ca5fb88cd7acabcf3967 SHA512 aadafdb7b8e0546435838279c2929803be8dde00f3f3c08668c35d0a8ccf5bad511e65629e3f7261140edcf0980d19fda2be1401593ac4c0410beede542e857b WHIRLPOOL 7a1aa2708361b4eddb266037af35e6915852ba1a5037fcfebd95c0a8caab54209ca1c9e3827acecff64772fd15b077f5cded64a50b5820abd7b3cde937bbc2e0
DIST xye-0.12.2.tar.gz 2860290 SHA256 5d7c04f37d6b4a1821594512c7ddbc8189f968e08ecfd5af55231302f2f917d8 SHA512 a31d922e0a0660d269d30430fbaf1d00924b0271db697f3cbc89b78815e597e11743bd9018fbf3f2f9e7561ad3469e9cca28687efaae7fc6dcba40ada2b5effa WHIRLPOOL 0f4d9105435adab0055cdd8966aa542fd0a231203562bd96ff8b2dff275675233ec1ca541f93e23787d8bf610cb29430f0b97e9f447ba63a695127e670788fc4
diff --git a/games-puzzle/xye/files/xye-0.12.1-gcc47.patch b/games-puzzle/xye/files/xye-0.12.1-gcc47.patch
deleted file mode 100644
index 04414abc6a2b..000000000000
--- a/games-puzzle/xye/files/xye-0.12.1-gcc47.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- src/editorsave.cpp.old
-+++ src/editorsave.cpp
-@@ -642,7 +642,8 @@
- file << "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n";
- file << "<pack>\n<name>"<< stripXML(editorboard::filetitle) <<"</name><author>"<< stripXML(editorboard::author) <<"</author>\n<description>"<< stripXML(editorboard::description) <<"</description>\n";
-
-- for (int i=first; i<editorboard::CountLevels(); i++) {
-+ int i;
-+ for (i=first; i<editorboard::CountLevels(); i++) {
- editorboard::LoadLevelNumber(board, i);
- file << "\n<level>\n";
- file << "<title>"<< stripXML(board->title) <<"</title>\n";
---- src/gen.cpp.old
-+++ src/gen.cpp
-@@ -21,6 +21,7 @@
- #include<cstdio>
- #include<iostream>
- #include<fstream>
-+#include <unistd.h>
-
- const float F_RAND_MAX = (float)(RAND_MAX);
-
diff --git a/games-puzzle/xye/xye-0.12.1.ebuild b/games-puzzle/xye/xye-0.12.1.ebuild
deleted file mode 100644
index 1d9e9f8ef249..000000000000
--- a/games-puzzle/xye/xye-0.12.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils games
-
-DESCRIPTION="Free version of the classic game Kye"
-HOMEPAGE="http://xye.sourceforge.net/"
-SRC_URI="mirror://sourceforge/xye/${P}.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="media-libs/libsdl[video]
- media-libs/sdl-ttf
- media-libs/sdl-image[png]
- media-fonts/dejavu"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gcc47.patch
- sed -i -e '/^xye_LDFLAGS/d' Makefile.am || die
- eautoreconf
-}
-
-src_install() {
- dogamesbin "${PN}"
- insinto "${GAMES_DATADIR}/${PN}"
- doins -r levels res
- rm -f "${D}${GAMES_DATADIR}/${PN}"/res/DejaVuSans*
- dosym /usr/share/fonts/dejavu/DejaVuSans.ttf "${GAMES_DATADIR}/${PN}"/res/DejaVuSans.ttf
- dosym /usr/share/fonts/dejavu/DejaVuSans-Bold.ttf "${GAMES_DATADIR}/${PN}"/res/DejaVuSans-Bold.ttf
- dodoc AUTHORS ChangeLog README NEWS
- dohtml ReadMe.html
- doicon xye.svg
- make_desktop_entry ${PN} Xye
- prepgamesdirs
-}