summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-02-14 14:04:41 +0100
committerPacho Ramos <pacho@gentoo.org>2016-02-14 14:04:41 +0100
commit4e3a102de1b4216681ac6456db5d7c30a2f079c7 (patch)
treec9bbb4cdbdce1c4602283bfdba6219482caf9b8a /media-sound
parentdev-python/pyfeyn: cleaning old (diff)
downloadgentoo-4e3a102de1b4216681ac6456db5d7c30a2f079c7.tar.gz
gentoo-4e3a102de1b4216681ac6456db5d7c30a2f079c7.tar.bz2
gentoo-4e3a102de1b4216681ac6456db5d7c30a2f079c7.zip
Remove masked for removal packages
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/gnomoradio/Manifest1
-rw-r--r--media-sound/gnomoradio/files/gnomoradio-0.15.1-gcc42.patch22
-rw-r--r--media-sound/gnomoradio/files/gnomoradio-0.15.1-gcc43.patch70
-rw-r--r--media-sound/gnomoradio/files/gnomoradio-0.15.1-glib-single-include.patch53
-rw-r--r--media-sound/gnomoradio/files/gnomoradio-0.15.1-lm.patch12
-rw-r--r--media-sound/gnomoradio/gnomoradio-0.15.1.ebuild39
-rw-r--r--media-sound/gnomoradio/metadata.xml8
7 files changed, 0 insertions, 205 deletions
diff --git a/media-sound/gnomoradio/Manifest b/media-sound/gnomoradio/Manifest
deleted file mode 100644
index 4062650f089e..000000000000
--- a/media-sound/gnomoradio/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gnomoradio-0.15.1.tar.bz2 351723 SHA256 02b6c256fe6877da3831c5e67c1564b16cc9d5ff33ca410baf5dbdb41922e40a SHA512 7e9fc70054e3966e1bd6af9451c4c6eb0cd1018e422f767589ca2e86b08e2f74c520b9a9a4bd09a12ce76f4d7b7e545ac61601472ffa1818209182b026f9f882 WHIRLPOOL 7d070ee0ceac35a0432f4b690353ab5d91da37b3202e203fea7f37e55e1ae383a4c4c3415f00633677121d7974cfaf11bdbfbdaa5c7b740c608103313510c73b
diff --git a/media-sound/gnomoradio/files/gnomoradio-0.15.1-gcc42.patch b/media-sound/gnomoradio/files/gnomoradio-0.15.1-gcc42.patch
deleted file mode 100644
index 0efc60fb868f..000000000000
--- a/media-sound/gnomoradio/files/gnomoradio-0.15.1-gcc42.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -ur gnomoradio-0.15.1.orig/roboradio/audio/prober.h gnomoradio-0.15.1/roboradio/audio/prober.h
---- gnomoradio-0.15.1.orig/roboradio/audio/prober.h 2004-10-17 04:40:36.000000000 +0300
-+++ gnomoradio-0.15.1/roboradio/audio/prober.h 2008-06-29 14:48:13.000000000 +0300
-@@ -27,6 +27,7 @@
- {
- namespace Audio
- {
-+ gboolean probe (gpointer s);
- class Prober : public Audio
- {
- public:
-diff -ur gnomoradio-0.15.1.orig/roboradio/state.cc gnomoradio-0.15.1/roboradio/state.cc
---- gnomoradio-0.15.1.orig/roboradio/state.cc 2004-10-24 03:24:34.000000000 +0300
-+++ gnomoradio-0.15.1/roboradio/state.cc 2008-06-29 14:48:13.000000000 +0300
-@@ -28,6 +28,7 @@
- #include <sys/stat.h>
- #include <dirent.h>
- #include <iostream>
-+#include <cstring>
-
- #include <map>
- #include <set>
diff --git a/media-sound/gnomoradio/files/gnomoradio-0.15.1-gcc43.patch b/media-sound/gnomoradio/files/gnomoradio-0.15.1-gcc43.patch
deleted file mode 100644
index b5f30edfa395..000000000000
--- a/media-sound/gnomoradio/files/gnomoradio-0.15.1-gcc43.patch
+++ /dev/null
@@ -1,70 +0,0 @@
-Index: gnomoradio-0.15.1/rainbow/license.cc
-===================================================================
---- gnomoradio-0.15.1.orig/rainbow/license.cc
-+++ gnomoradio-0.15.1/rainbow/license.cc
-@@ -54,7 +54,7 @@ void Rainbow::License::get_and_do (const
- }
-
- if (done) {
-- signal<void,ref_ptr<License> > sig;
-+ sigc::signal<void,ref_ptr<License> > sig;
- sig.connect(slot);
- sig(license);
- } else {
-Index: gnomoradio-0.15.1/rainbow/rdf-resource.cc
-===================================================================
---- gnomoradio-0.15.1.orig/rainbow/rdf-resource.cc
-+++ gnomoradio-0.15.1/rainbow/rdf-resource.cc
-@@ -35,7 +35,7 @@ void Rainbow::RdfResource::get_and_do (c
- resource = ref_ptr<RdfResource>(p->second);
- if (resource->downloaded) { // already downloaded
- map<Glib::ustring,xmlpp::Element*>::iterator el = resource->id_map.find(id);
-- signal<void,xmlpp::Element*,ref_ptr<RdfResource> > sig;
-+ sigc::signal<void,xmlpp::Element*,ref_ptr<RdfResource> > sig;
- sig.connect(slot);
- sig(el != resource->id_map.end() ? el->second : 0, resource);
- return;
-@@ -47,7 +47,7 @@ void Rainbow::RdfResource::get_and_do (c
- Glib::ustring host, file;
- unsigned short port;
- if (!HttpClient::parse_url(uri, host, port, file)) {
-- signal<void,xmlpp::Element*,ref_ptr<RdfResource> > sig;
-+ sigc::signal<void,xmlpp::Element*,ref_ptr<RdfResource> > sig;
- sig.connect(slot);
- sig(0, resource);
- return;
-@@ -55,14 +55,14 @@ void Rainbow::RdfResource::get_and_do (c
- }
-
- // connect mem_fun to appropriate signal
-- map<Glib::ustring,signal<void,xmlpp::Element*, ref_ptr<RdfResource> >*>::iterator sig;
-+ map<Glib::ustring,sigc::signal<void,xmlpp::Element*, ref_ptr<RdfResource> >*>::iterator sig;
- sig = resource->signal_map.find(id);
- if (sig != resource->signal_map.end()) {
- // found existing signal for id
- sig->second->connect(slot);
- } else {
- // need to create new signal to handle id
-- signal<void,xmlpp::Element*,ref_ptr<RdfResource> > *signal_ = new signal<void,xmlpp::Element*,ref_ptr<RdfResource> >;
-+ sigc::signal<void,xmlpp::Element*,ref_ptr<RdfResource> > *signal_ = new sigc::signal<void,xmlpp::Element*,ref_ptr<RdfResource> >;
- signal_->connect(slot);
- resource->signal_map.insert(make_pair(id, signal_));
- }
-@@ -190,7 +190,7 @@ void Rainbow::RdfResource::on_downloaded
-
- error:
- // call all signals
-- map<Glib::ustring,signal<void,xmlpp::Element*,ref_ptr<RdfResource> >*>::iterator signal;
-+ map<Glib::ustring,sigc::signal<void,xmlpp::Element*,ref_ptr<RdfResource> >*>::iterator signal;
- for (signal = signal_map.begin(); signal != signal_map.end(); ++signal) {
- map<Glib::ustring,xmlpp::Element*>::iterator el = id_map.find(signal->first);
- signal->second->emit(el != id_map.end() ? el->second : 0, ref_ptr<RdfResource>(this));
-@@ -204,7 +204,7 @@ void Rainbow::RdfResource::on_downloaded
-
- void Rainbow::RdfResource::clear_signal_map ()
- {
-- map<Glib::ustring,signal<void,xmlpp::Element*,ref_ptr<RdfResource> >*>::iterator signal;
-+ map<Glib::ustring,sigc::signal<void,xmlpp::Element*,ref_ptr<RdfResource> >*>::iterator signal;
- for (signal = signal_map.begin(); signal != signal_map.end(); ++signal)
- delete signal->second;
- signal_map.clear();
diff --git a/media-sound/gnomoradio/files/gnomoradio-0.15.1-glib-single-include.patch b/media-sound/gnomoradio/files/gnomoradio-0.15.1-glib-single-include.patch
deleted file mode 100644
index 168872e57cae..000000000000
--- a/media-sound/gnomoradio/files/gnomoradio-0.15.1-glib-single-include.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-Index: gnomoradio-0.15.1/roboradio/mp3/common.c
-===================================================================
---- gnomoradio-0.15.1.orig/roboradio/mp3/common.c
-+++ gnomoradio-0.15.1/roboradio/mp3/common.c
-@@ -19,7 +19,7 @@
- #include "id3.h"
- #include "id3_header.h"
-
--#include <glib/gmem.h>
-+#include <glib.h>
-
- /* max = 1728 */
- #define MAXFRAMESIZE 1792
-Index: gnomoradio-0.15.1/roboradio/mp3/esd-audio.c
-===================================================================
---- gnomoradio-0.15.1.orig/roboradio/mp3/esd-audio.c
-+++ gnomoradio-0.15.1/roboradio/mp3/esd-audio.c
-@@ -2,8 +2,7 @@
- #include <config.h>
- #include "esd-audio.h"
-
--#include <glib/gmem.h>
--#include <glib/gstrfuncs.h>
-+#include <glib.h>
- #include <pthread.h>
- #include <stdlib.h>
- #include <string.h>
-Index: gnomoradio-0.15.1/roboradio/mp3/esd-audio.h
-===================================================================
---- gnomoradio-0.15.1.orig/roboradio/mp3/esd-audio.h
-+++ gnomoradio-0.15.1/roboradio/mp3/esd-audio.h
-@@ -1,7 +1,7 @@
- #ifndef ESD_AUDIO_H
- #define ESD_AUDIO_H
-
--#include <glib/gtypes.h>
-+#include <glib.h>
-
- #define N_(string) string
-
-Index: gnomoradio-0.15.1/roboradio/mp3/id3.h
-===================================================================
---- gnomoradio-0.15.1.orig/roboradio/mp3/id3.h
-+++ gnomoradio-0.15.1/roboradio/mp3/id3.h
-@@ -28,7 +28,7 @@
- #ifndef ID3_H
- #define ID3_H
-
--#include <glib/gtypes.h>
-+#include <glib.h>
-
- /*
- * Option flags to id3_open_*().
diff --git a/media-sound/gnomoradio/files/gnomoradio-0.15.1-lm.patch b/media-sound/gnomoradio/files/gnomoradio-0.15.1-lm.patch
deleted file mode 100644
index 68104e752237..000000000000
--- a/media-sound/gnomoradio/files/gnomoradio-0.15.1-lm.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur gnomoradio-0.15.1.orig/roboradio/mp3/Makefile.am gnomoradio-0.15.1/roboradio/mp3/Makefile.am
---- gnomoradio-0.15.1.orig/roboradio/mp3/Makefile.am 2004-06-15 08:45:35.000000000 +0300
-+++ gnomoradio-0.15.1/roboradio/mp3/Makefile.am 2009-07-18 13:35:08.000000000 +0300
-@@ -44,7 +44,7 @@
- mpg123.h \
- tabinit.c \
- $(optimized_source)
--libroboradio_mp3_la_LIBADD = -lpthread \
-+libroboradio_mp3_la_LIBADD = -lm -lpthread \
- $(ROBORADIO_LIBS) \
- $(AO_LIBS)
-
diff --git a/media-sound/gnomoradio/gnomoradio-0.15.1.ebuild b/media-sound/gnomoradio/gnomoradio-0.15.1.ebuild
deleted file mode 100644
index a468d69a8471..000000000000
--- a/media-sound/gnomoradio/gnomoradio-0.15.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit autotools eutils
-
-DESCRIPTION="Finds, fetches, shares, and plays freely licensed music"
-HOMEPAGE="http://gnomoradio.org"
-SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
-IUSE="vorbis"
-
-RDEPEND="dev-cpp/gtkmm:2.4
- dev-cpp/glibmm:2
- >=dev-cpp/gconfmm-2.6
- dev-cpp/libxmlpp:2.6
- dev-libs/libsigc++:2
- media-libs/libao
- vorbis? ( media-libs/libvorbis )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gcc42.patch \
- "${FILESDIR}"/${P}-gcc43.patch \
- "${FILESDIR}"/${P}-lm.patch \
- "${FILESDIR}"/${P}-glib-single-include.patch
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-dependency-tracking \
- $(use_enable vorbis)
-}
diff --git a/media-sound/gnomoradio/metadata.xml b/media-sound/gnomoradio/metadata.xml
deleted file mode 100644
index c870d0eef0ab..000000000000
--- a/media-sound/gnomoradio/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>sound@gentoo.org</email>
- <name>Gentoo Sound project</name>
-</maintainer>
-</pkgmetadata>