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/monster-masher
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/monster-masher')
-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
5 files changed, 0 insertions, 157 deletions
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
-}