summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2018-04-29 20:13:13 +0200
committerPacho Ramos <pacho@gentoo.org>2018-04-29 20:13:36 +0200
commitec7079c0c95dd1dac40e7b67fba9383a5498dcb8 (patch)
tree6eb1dba2c2ead27248000017adc912b6ada44446 /games-arcade
parentgames-board/freedoko: Drop old (diff)
downloadgentoo-ec7079c0c95dd1dac40e7b67fba9383a5498dcb8.tar.gz
gentoo-ec7079c0c95dd1dac40e7b67fba9383a5498dcb8.tar.bz2
gentoo-ec7079c0c95dd1dac40e7b67fba9383a5498dcb8.zip
Remove masked for removal package
Diffstat (limited to 'games-arcade')
-rw-r--r--games-arcade/monkey-bubble/Manifest1
-rw-r--r--games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-asneeded.patch30
-rw-r--r--games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-glib-single-include.patch45
-rw-r--r--games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-gnome-doc.patch38
-rw-r--r--games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-noesound.patch19
-rw-r--r--games-arcade/monkey-bubble/metadata.xml8
-rw-r--r--games-arcade/monkey-bubble/monkey-bubble-0.4.0.ebuild43
-rw-r--r--games-arcade/monster-masher/Manifest1
-rw-r--r--games-arcade/monster-masher/files/monster-masher-1.8.1-desktop.patch16
-rw-r--r--games-arcade/monster-masher/files/monster-masher-1.8.1-libcanberra.patch85
-rw-r--r--games-arcade/monster-masher/metadata.xml8
-rw-r--r--games-arcade/monster-masher/monster-masher-1.8.1-r2.ebuild47
12 files changed, 0 insertions, 341 deletions
diff --git a/games-arcade/monkey-bubble/Manifest b/games-arcade/monkey-bubble/Manifest
deleted file mode 100644
index 26d777021cf2..000000000000
--- a/games-arcade/monkey-bubble/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST monkey-bubble-0.4.0.tar.gz 5360713 BLAKE2B 1cad6a886066076cc83d238a93015cd698e8abc9b188db4a774f4d35edbed30856ed53e0fc6c388a82d767bbb8e03f0a92ebf29ffb9434840a25d79f1ca6565a SHA512 def3603972462e19d99d0d1dd86d522386d64cbb4190b1361d0d94bc175f476738619ba34fb78451669456a9365f157a96feb4d996870b37acc9d9e68024ae34
diff --git a/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-asneeded.patch b/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-asneeded.patch
deleted file mode 100644
index 1e8822d0f871..000000000000
--- a/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-asneeded.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- monkey-bubble-0.3.2/src/net/Makefile.am.orig
-+++ monkey-bubble-0.3.2/src/net/Makefile.am
-@@ -28,10 +28,10 @@
- monkey_srv_LDFLAGS =
-
- monkey_srv_LDADD = \
-- $(MONKEY_SRV_LIBS) \
- libmonkeynet.a \
- ../monkey/libmonkey.a \
-- ../util/libmonkeyutil.a
-+ ../util/libmonkeyutil.a \
-+ $(MONKEY_SRV_LIBS) -lm
-
- $(libmonkeynet_a_OBJECTS): $(marshal_sources)
-
---- monkey-bubble-0.3.2/src/ui/Makefile.am.orig
-+++ monkey-bubble-0.3.2/src/ui/Makefile.am
-@@ -50,10 +50,10 @@
-
-
- monkey_bubble_LDADD = \
-- $(UI_LIBS) \
- ../monkey/libmonkey.a \
- ../view/libmonkeyview.a \
- ../util/libmonkeyutil.a \
- ../net/libmonkeynet.a \
- ../audio/libmonkeyaudio.a \
-- ../input/libmbinput.a
-+ ../input/libmbinput.a \
-+ $(UI_LIBS) -lm
diff --git a/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-glib-single-include.patch b/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-glib-single-include.patch
deleted file mode 100644
index 67109beff7f7..000000000000
--- a/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-glib-single-include.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-Index: monkey-bubble-0.4.0/src/net/message-handler.c
-===================================================================
---- monkey-bubble-0.4.0.orig/src/net/message-handler.c
-+++ monkey-bubble-0.4.0/src/net/message-handler.c
-@@ -28,7 +28,7 @@
- #include <unistd.h>
- #include <string.h>
- #include <arpa/inet.h>
--#include <glib/gthread.h>
-+#include <glib.h>
- #include <sys/time.h>
- #include <time.h>
-
-Index: monkey-bubble-0.4.0/src/net/simple-server.c
-===================================================================
---- monkey-bubble-0.4.0.orig/src/net/simple-server.c
-+++ monkey-bubble-0.4.0/src/net/simple-server.c
-@@ -31,13 +31,12 @@
- #include <unistd.h>
- #include <string.h>
- #include <arpa/inet.h>
--#include <glib/gthread.h>
-+#include <glib.h>
- #include <sys/time.h>
- #include <time.h>
-
-
- #include <glib-object.h>
--#include <glib.h>
-
- #include "simple-server.h"
- #include "message-handler.h"
-Index: monkey-bubble-0.4.0/src/ui/main.c
-===================================================================
---- monkey-bubble-0.4.0.orig/src/ui/main.c
-+++ monkey-bubble-0.4.0/src/ui/main.c
-@@ -15,7 +15,7 @@
- #include <gtk/gtk.h>
- #include <gst/gst.h>
- #include <bonobo/bonobo-i18n.h>
--#include <glib/gthread.h>
-+#include <glib.h>
- #include <libgnomeui/gnome-ui-init.h>
-
- #include <math.h>
diff --git a/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-gnome-doc.patch b/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-gnome-doc.patch
deleted file mode 100644
index 801ae84d9bab..000000000000
--- a/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-gnome-doc.patch
+++ /dev/null
@@ -1,38 +0,0 @@
---- help/C/monkey-bubble.xml
-+++ help/C/monkey-bubble.xml
-@@ -23,7 +23,7 @@
- <publishername>GNOME Documentation Project</publishername>
- </publisher>
- <authorgroup>
-- <author>
-+ <author role="maintainer">
- <firstname>Thomas</firstname>
- <surname>Cataldo</surname>
- <affiliation>
-@@ -55,6 +55,7 @@
- manual, follow the directions in the
- <ulink url="ghelp:gnome-feedback" type="help">GNOME Feedback Page</ulink>. </para>
- </legalnotice>
-+ <abstract role="description"><para>Monkey Bubble manual</para></abstract>
- </articleinfo>
-
- <indexterm>
---- help/fr/monkey-bubble.xml
-+++ help/fr/monkey-bubble.xml
-@@ -22,7 +22,7 @@
- <publishername>Projet de documentation GNOME</publishername>
- </publisher>
- <authorgroup>
-- <author>
-+ <author role="maintainer">
- <firstname>Thomas</firstname>
- <surname>Cataldo</surname>
- <affiliation>
-@@ -47,6 +47,7 @@
- <title>Votre avis</title>
- <para>Pour signaler un probl&egrave;me ou faire une suggestion concernant l'application Monkey Bubble ou le pr&eacute;sent manuel, proc&eacute;dez comme indiqu&eacute;&agrave; la <ulink url="ghelp:gnome-feedback" type="help">GNOME Feedback Page</ulink>.</para>
- </legalnotice>
-+ <abstract role="description"><para>Monkey Bubble manual</para></abstract>
- </articleinfo>
-
- <indexterm>
diff --git a/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-noesound.patch b/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-noesound.patch
deleted file mode 100644
index be0a9a924a47..000000000000
--- a/games-arcade/monkey-bubble/files/monkey-bubble-0.4.0-noesound.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-monkey-bubble-0.4.0: don't require the esd header.
-
-2010-07-12 Sven Herzberg
-2012-01-07 Martin von Gagern
-
-References:
-https://github.com/mquinson/monkey-bubble/commit/299623f8e6b0b6090e98
-https://bugs.gentoo.org/397997
-
---- monkey-bubble-0.4.0.orig/src/ui/main.c
-+++ monkey-bubble-0.4.0/src/ui/main.c
-@@ -11,7 +11,6 @@
- #include "ui-main.h"
- #include "input-manager.h"
-
--#include <esd.h>
- #include <gtk/gtk.h>
- #include <gst/gst.h>
- #include <bonobo/bonobo-i18n.h>
diff --git a/games-arcade/monkey-bubble/metadata.xml b/games-arcade/monkey-bubble/metadata.xml
deleted file mode 100644
index 8301b92ba307..000000000000
--- a/games-arcade/monkey-bubble/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-<email>games@gentoo.org</email>
-<name>Gentoo Games Project</name>
-</maintainer>
-</pkgmetadata>
diff --git a/games-arcade/monkey-bubble/monkey-bubble-0.4.0.ebuild b/games-arcade/monkey-bubble/monkey-bubble-0.4.0.ebuild
deleted file mode 100644
index 1810f05165fa..000000000000
--- a/games-arcade/monkey-bubble/monkey-bubble-0.4.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils gnome2
-
-DESCRIPTION="A Puzzle Bobble clone"
-HOMEPAGE="http://www.monkey-bubble.org/"
-SRC_URI="http://home.gna.org/monkeybubble/downloads/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="x11-libs/gtk+:2
- >=dev-libs/glib-2.12:2
- >=gnome-base/libglade-2.0
- >=gnome-base/libgnomeui-2.0
- >=gnome-base/librsvg-2.0
- >=gnome-base/gconf-2.0
- media-libs/gstreamer:0.10
- >=dev-libs/libxml2-2.6.7"
-DEPEND="${RDEPEND}
- app-text/rarian
- app-text/gnome-doc-utils
- dev-util/intltool"
-
-src_prepare() {
- epatch \
- "${FILESDIR}"/${P}-asneeded.patch \
- "${FILESDIR}"/${P}-gnome-doc.patch \
- "${FILESDIR}"/${P}-noesound.patch \
- "${FILESDIR}"/${P}-glib-single-include.patch
- # bug 260895
- sed -i -e 's/ -Werror//' $(find . -name Makefile.am) || die
- sed -i \
- -e '/^Icon/s/.png//' \
- -e '/^Categories/s/Application;//' \
- monkey-bubble.desktop.in || die
- AT_NOELIBTOOLIZE=yes eautoreconf
- gnome2_src_prepare
-}
diff --git a/games-arcade/monster-masher/Manifest b/games-arcade/monster-masher/Manifest
deleted file mode 100644
index f8d12002a731..000000000000
--- a/games-arcade/monster-masher/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST monster-masher-1.8.1.tar.bz2 1042299 BLAKE2B 3c34c3f6f70c84fda8974909e15c16e028063dad90fe9de0be255788fba1e3919b51170e45053bc2d33d605e0fb74ba4475c11bdd1bc9aba8013790fafe19c6c SHA512 250414d6fb4abea12d2fd5328fc003449680b76784bfc6c15cc05d5dfb78e45eee2d2c6d36a3bf2f3c0e055c9ee58cbfaf623f56638fa8462f5006c84057c254
diff --git a/games-arcade/monster-masher/files/monster-masher-1.8.1-desktop.patch b/games-arcade/monster-masher/files/monster-masher-1.8.1-desktop.patch
deleted file mode 100644
index f9812802da74..000000000000
--- a/games-arcade/monster-masher/files/monster-masher-1.8.1-desktop.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- monster-masher.desktop.in.old 2014-11-23 21:20:33.967676333 +0100
-+++ monster-masher.desktop.in 2014-11-23 21:21:30.518718141 +0100
-@@ -1,10 +1,9 @@
- [Desktop Entry]
--Encoding=UTF-8
- _Name=Monster Masher
- _Comment=Mash monsters and save the gnomes
- Exec=monster-masher
--Icon=monster-masher.png
-+Icon=monster-masher
- Terminal=false
- Type=Application
--Categories=GNOME;Application;Game;ArcadeGame;
--StartupNotification=true
-+Categories=GNOME;Game;
-+StartupNotify=true
diff --git a/games-arcade/monster-masher/files/monster-masher-1.8.1-libcanberra.patch b/games-arcade/monster-masher/files/monster-masher-1.8.1-libcanberra.patch
deleted file mode 100644
index 4ee47fab39fb..000000000000
--- a/games-arcade/monster-masher/files/monster-masher-1.8.1-libcanberra.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-Drop dependency on esound support in libgnome and replace it by libcanberra.
-
-Gentoo bug: #348605
-
---- a/configure.ac 2008-11-09 20:52:01.000000000 +0000
-+++ b/configure.ac 2011-03-06 13:08:42.000000000 +0000
-@@ -18,7 +18,8 @@
- gconfmm-2.6 >= 2.6.0 \
- gtkmm-2.4 >= 2.6.0 \
- libgnomecanvasmm-2.6 >= 2.6.0 \
-- libglademm-2.4 >= 2.4.0)
-+ libglademm-2.4 >= 2.4.0 \
-+ libcanberra)
- AC_SUBST(DEPS_CFLAGS)
- AC_SUBST(DEPS_LIBS)
-
---- a/src/sound.hpp 2007-01-06 16:16:30.000000000 +0000
-+++ b/src/sound.hpp 2011-03-06 13:12:47.000000000 +0000
-@@ -22,6 +22,7 @@
- #define SOUND_HPP
-
- #include <string>
-+#include <canberra.h>
-
- #include "helpers.hpp"
-
-@@ -39,8 +40,7 @@
- private:
- Sound();
-
-- typedef std::map<std::string, int> cache_map;
-- cache_map cache;
-+ ca_context *ctx;
- };
-
- #endif
---- a/src/sound.cpp 2007-01-06 16:16:30.000000000 +0000
-+++ b/src/sound.cpp 2011-03-07 21:55:47.000000000 +0000
-@@ -18,9 +18,6 @@
- * USA.
- */
-
--#include <libgnome/gnome-sound.h>
--#include <esd.h>
--
- #include "sound.hpp"
-
-
-@@ -30,26 +27,23 @@
- return s;
- }
-
--Sound::Sound()
-+Sound::Sound() :
-+ ctx(0)
- {
-+ ca_context_create(&ctx);
- }
-
- Sound::~Sound()
- {
-+ if (ctx)
-+ ca_context_destroy(ctx);
- }
-
- void Sound::play(const std::string &name)
- {
-- int id;
--
-- cache_map::iterator i = cache.find(name);
-- if (i != cache.end())
-- id = i->second;
-- else {
-- id = gnome_sound_sample_load(name.c_str(),
-- (MONSTER_MASHER_SOUND_DIR + name).c_str());
-- cache.insert(make_pair(name, id));
-- }
--
-- esd_sample_play(gnome_sound_connection_get(), id);
-+ if (ctx)
-+ ca_context_play(ctx, 0,
-+ CA_PROP_MEDIA_FILENAME, (MONSTER_MASHER_SOUND_DIR + name).c_str(),
-+ CA_PROP_CANBERRA_CACHE_CONTROL, "permanent",
-+ NULL);
- }
diff --git a/games-arcade/monster-masher/metadata.xml b/games-arcade/monster-masher/metadata.xml
deleted file mode 100644
index 78274e0fa550..000000000000
--- a/games-arcade/monster-masher/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>games@gentoo.org</email>
- <name>Gentoo Games Project</name>
-</maintainer>
-</pkgmetadata>
diff --git a/games-arcade/monster-masher/monster-masher-1.8.1-r2.ebuild b/games-arcade/monster-masher/monster-masher-1.8.1-r2.ebuild
deleted file mode 100644
index 9ba28fc6378d..000000000000
--- a/games-arcade/monster-masher/monster-masher-1.8.1-r2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-GCONF_DEBUG="no"
-
-inherit autotools eutils flag-o-matic gnome2
-
-DESCRIPTION="Squash the monsters with your levitation worker gnome"
-HOMEPAGE="https://people.iola.dk/olau/monster-masher/"
-SRC_URI="https://people.iola.dk/olau/monster-masher/source/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND="
- x11-libs/libSM
- >=dev-cpp/gtkmm-2.6:2.4
- >=dev-cpp/gconfmm-2.6
- >=dev-cpp/libglademm-2.4:2.4
- >=dev-cpp/libgnomecanvasmm-2.6:2.6
- gnome-base/libgnome
- media-libs/libcanberra
-"
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig
- sys-devel/gettext
-"
-
-src_prepare() {
- # Port to libcanberra, bug #348605
- epatch "${FILESDIR}"/${P}-libcanberra.patch
-
- # Fix .desktop file
- epatch "${FILESDIR}"/${P}-desktop.patch
-
- # build with newer glib - bug #424313
- sed -i -e 's:glib/gtypes:glib:' src/pixbuf-drawing.hpp || die
-
- append-cxxflags -std=c++11
-
- eautoreconf
- gnome2_src_prepare
-}