summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Schmaus <flow@gentoo.org>2024-12-31 11:25:35 +0100
committerFlorian Schmaus <flow@gentoo.org>2024-12-31 11:26:52 +0100
commitac1802d0f7557a817d4f22baecef316ed4981e7f (patch)
tree9642cc9696be692008c5f845681dcfac0b8c66c3 /games-board
parentsys-boot/woeusb: treeclean (diff)
downloadgentoo-ac1802d0f7557a817d4f22baecef316ed4981e7f.tar.gz
gentoo-ac1802d0f7557a817d4f22baecef316ed4981e7f.tar.bz2
gentoo-ac1802d0f7557a817d4f22baecef316ed4981e7f.zip
games-board/blokish: treeclean
Closes: https://bugs.gentoo.org/929140 (pkgremoved) Closes: https://bugs.gentoo.org/935472 (pkgremoved) Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'games-board')
-rw-r--r--games-board/blokish/Manifest1
-rw-r--r--games-board/blokish/blokish-0.9.4-r3.ebuild52
-rw-r--r--games-board/blokish/files/blokish-0.9.4-gcc43.patch12
-rw-r--r--games-board/blokish/files/blokish-0.9.4-underlink.patch9
-rw-r--r--games-board/blokish/files/blokish-0.9.4-wxgtk.patch21
-rw-r--r--games-board/blokish/metadata.xml11
6 files changed, 0 insertions, 106 deletions
diff --git a/games-board/blokish/Manifest b/games-board/blokish/Manifest
deleted file mode 100644
index 2a100ba466ae..000000000000
--- a/games-board/blokish/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST blokish_v0.9.4.tgz 165215 BLAKE2B 137a82d8833da4459d394a2832fc32de3157c107d2cfcbd3ff93b8274ee1b218a823c44f70a6b256aa6bfa4367c01561829c29638c331cbdf179bfa069278b7a SHA512 f84e5c31999cfca4bc6504907a889561c0e6c986b6c7bbd0d7325cec248d7e5d7834d841326635a605669b7bffd9fdb8c8fe73a216a738dace0385ae8a98cbec
diff --git a/games-board/blokish/blokish-0.9.4-r3.ebuild b/games-board/blokish/blokish-0.9.4-r3.ebuild
deleted file mode 100644
index 018d25f7f85a..000000000000
--- a/games-board/blokish/blokish-0.9.4-r3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-WX_GTK_VER="3.0"
-inherit autotools desktop wxwidgets
-
-MY_P="${PN}_v${PV}"
-
-DESCRIPTION="Open source clone of the four-player board game Blokus"
-HOMEPAGE="https://sourceforge.net/projects/blokish/"
-SRC_URI="https://downloads.sourceforge.net/blokish/${MY_P}.tgz"
-S="${WORKDIR}"/${PN}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- x11-libs/wxGTK:${WX_GTK_VER}[X,opengl]
- virtual/glu
- virtual/opengl"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-gcc43.patch
- "${FILESDIR}"/${P}-underlink.patch
- "${FILESDIR}"/${P}-wxgtk.patch
-)
-
-src_prepare() {
- default
-
- # Otherwise $WX_CONFIG is unset:
- setup-wxwidgets
-
- sed -i \
- -e "s:wx-config:${WX_CONFIG}:" \
- configure.in makefile.am || die
- mv configure.in configure.ac || die
-
- eautoreconf
-}
-
-src_install() {
- default
- dodoc -r docs/.
-
- doicon src/${PN}.xpm
- make_desktop_entry ${PN} Blokish ${PN}
-}
diff --git a/games-board/blokish/files/blokish-0.9.4-gcc43.patch b/games-board/blokish/files/blokish-0.9.4-gcc43.patch
deleted file mode 100644
index f53e5495aa57..000000000000
--- a/games-board/blokish/files/blokish-0.9.4-gcc43.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/src/base.h
-+++ b/src/base.h
-@@ -25,6 +25,9 @@
- #include <vector>
- #include <fstream>
- #include <iostream>
-+#include <algorithm>
-+#include <cstdlib>
-+#include <climits>
-
- enum BlokishID
- {
diff --git a/games-board/blokish/files/blokish-0.9.4-underlink.patch b/games-board/blokish/files/blokish-0.9.4-underlink.patch
deleted file mode 100644
index a4433379e37a..000000000000
--- a/games-board/blokish/files/blokish-0.9.4-underlink.patch
+++ /dev/null
@@ -1,9 +0,0 @@
---- a/makefile.am 2011-06-21 08:43:21.804880067 +0200
-+++ b/makefile.am 2011-06-21 08:43:49.875661081 +0200
-@@ -1,5 +1,5 @@
- INCLUDES = `wx-config --cxxflags`
--LIBS = `wx-config --libs --gl-libs`
-+LIBS = `wx-config --libs --gl-libs` -lGL -lm
-
- bin_PROGRAMS = blokish
-
diff --git a/games-board/blokish/files/blokish-0.9.4-wxgtk.patch b/games-board/blokish/files/blokish-0.9.4-wxgtk.patch
deleted file mode 100644
index 1821e0b5f86d..000000000000
--- a/games-board/blokish/files/blokish-0.9.4-wxgtk.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ru blokish/src/blokish.cpp blokish/src/blokish.cpp
---- blokish/src/blokish.cpp 2007-04-01 17:01:26.000000000 -0400
-+++ blokish/src/blokish.cpp 2015-11-15 21:48:32.426081482 -0500
-@@ -903,7 +903,7 @@
- void OnSaveGame(wxCommandEvent &event)
- {
- WaitForAIToFinish();
-- wxString filename = wxFileSelector(wxString::FromAscii("Select a filename to save as"), wxString::FromAscii(""), wxString::FromAscii("default.sav"), wxString::FromAscii(".sav"), wxString::FromAscii("*.sav"), wxSAVE);
-+ wxString filename = wxFileSelector(wxString::FromAscii("Select a filename to save as"), wxString::FromAscii(""), wxString::FromAscii("default.sav"), wxString::FromAscii(".sav"), wxString::FromAscii("*.sav"), wxFD_SAVE);
- if(!filename.empty())
- {
- std::ofstream outFile(filename.fn_str(), std::ios::binary);
-@@ -915,7 +915,7 @@
- void OnLoadGame(wxCommandEvent &event)
- {
- WaitForAIToFinish();
-- wxString filename = wxFileSelector(wxString::FromAscii("Select a game to load"), wxString::FromAscii(""), wxString::FromAscii(""), wxString::FromAscii(".sav"), wxString::FromAscii("*.sav"), wxOPEN | wxFILE_MUST_EXIST);
-+ wxString filename = wxFileSelector(wxString::FromAscii("Select a game to load"), wxString::FromAscii(""), wxString::FromAscii(""), wxString::FromAscii(".sav"), wxString::FromAscii("*.sav"), wxFD_OPEN | wxFD_FILE_MUST_EXIST);
- if(!filename.empty())
- {
- std::ifstream inFile(filename.fn_str(), std::ios::binary);
diff --git a/games-board/blokish/metadata.xml b/games-board/blokish/metadata.xml
deleted file mode 100644
index 1b1c5228180f..000000000000
--- a/games-board/blokish/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>games@gentoo.org</email>
- <name>Gentoo Games Project</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">blokish</remote-id>
- </upstream>
-</pkgmetadata>