summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-03-09 01:12:55 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-03-09 01:12:55 +0000
commit31ebd01e942dcd5d4092db50ae43f812027dca27 (patch)
tree4fdcaefe6ac82eb58f34010c979d386b2acc33fe /x11-plugins
parentCleanup old. (diff)
downloadgentoo-2-31ebd01e942dcd5d4092db50ae43f812027dca27.tar.gz
gentoo-2-31ebd01e942dcd5d4092db50ae43f812027dca27.tar.bz2
gentoo-2-31ebd01e942dcd5d4092db50ae43f812027dca27.zip
Cleanup old.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/pidgin-musictracker/ChangeLog9
-rw-r--r--x11-plugins/pidgin-musictracker/files/pidgin-musictracker-0.4.20-fortify-abort.patch51
-rw-r--r--x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21-r1.ebuild39
-rw-r--r--x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21.ebuild33
4 files changed, 7 insertions, 125 deletions
diff --git a/x11-plugins/pidgin-musictracker/ChangeLog b/x11-plugins/pidgin-musictracker/ChangeLog
index 4a208de7bdad..2043efac4cec 100644
--- a/x11-plugins/pidgin-musictracker/ChangeLog
+++ b/x11-plugins/pidgin-musictracker/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-plugins/pidgin-musictracker
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-musictracker/ChangeLog,v 1.25 2013/04/27 15:26:46 pacho Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-musictracker/ChangeLog,v 1.26 2014/03/09 01:12:55 mrueg Exp $
+
+ 09 Mar 2014; Manuel Rüger <mrueg@gentoo.org>
+ -files/pidgin-musictracker-0.4.20-fortify-abort.patch,
+ -pidgin-musictracker-0.4.21-r1.ebuild, -pidgin-musictracker-0.4.21.ebuild:
+ Cleanup old.
27 Apr 2013; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Cleanup due bug #215231
diff --git a/x11-plugins/pidgin-musictracker/files/pidgin-musictracker-0.4.20-fortify-abort.patch b/x11-plugins/pidgin-musictracker/files/pidgin-musictracker-0.4.20-fortify-abort.patch
deleted file mode 100644
index a9b8e6a6ba00..000000000000
--- a/x11-plugins/pidgin-musictracker/files/pidgin-musictracker-0.4.20-fortify-abort.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-Index: src/preferences.c
-===================================================================
---- src/preferences.c (revision 417)
-+++ src/preferences.c (revision 420)
-@@ -205,11 +205,15 @@
- purple_prefs_set_bool(data, state);
- }
-
--#define APPEND_FORMAT_MENU(name, format) \
-- sprintf(buf, "%s - %s", name, format); \
-- widget = gtk_menu_item_new_with_label(buf); \
-- gtk_menu_shell_append(GTK_MENU_SHELL(format_menu), widget); \
-- g_signal_connect(G_OBJECT(widget), "activate", G_CALLBACK(cb_format_menu), (gpointer) format);
-+static void
-+append_format_menu(const char *name, const char *format)
-+{
-+ char *buf = g_strdup_printf("%s - %s", name, format);
-+ GtkWidget *widget = gtk_menu_item_new_with_label(buf);
-+ g_free(buf);
-+ gtk_menu_shell_append(GTK_MENU_SHELL(format_menu), widget);
-+ g_signal_connect(G_OBJECT(widget), "activate", G_CALLBACK(cb_format_menu), (gpointer) format);
-+}
-
- #define ADD_FORMAT_ENTRY(vbox, name, type) \
- hbox = gtk_hbox_new(FALSE, 5); \
-@@ -259,16 +263,15 @@
-
- // Popup menu for format
- format_menu = gtk_menu_new();
-- char buf[100];
-- APPEND_FORMAT_MENU(_("Artist"), "%p");
-- APPEND_FORMAT_MENU(_("Album"), "%a");
-- APPEND_FORMAT_MENU(_("Title"), "%t");
-- APPEND_FORMAT_MENU(_("Track Duration"), "%d");
-- APPEND_FORMAT_MENU(_("Elapsed Track Time"), "%c");
-- APPEND_FORMAT_MENU(_("Progress Bar"), "%b");
-- APPEND_FORMAT_MENU(_("Player"), "%r");
-- APPEND_FORMAT_MENU(_("Music Symbol (may not display on some networks)"), "%m");
-- APPEND_FORMAT_MENU(_("Status Message"), "%s");
-+ append_format_menu(_("Artist"), "%p");
-+ append_format_menu(_("Album"), "%a");
-+ append_format_menu(_("Title"), "%t");
-+ append_format_menu(_("Track Duration"), "%d");
-+ append_format_menu(_("Elapsed Track Time"), "%c");
-+ append_format_menu(_("Progress Bar"), "%b");
-+ append_format_menu(_("Player"), "%r");
-+ append_format_menu(_("Music Symbol (may not display on some networks)"), "%m");
-+ append_format_menu(_("Status Message"), "%s");
- gtk_widget_show_all(format_menu);
-
- // Format selection
diff --git a/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21-r1.ebuild b/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21-r1.ebuild
deleted file mode 100644
index fc2540ebd0da..000000000000
--- a/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21-r1.ebuild,v 1.1 2010/07/08 19:45:13 serkan Exp $
-
-EAPI="2"
-
-inherit autotools
-
-DESCRIPTION="A Pidgin now playing plugin to publicise the songs you are listening to in your status message"
-HOMEPAGE="http://code.google.com/p/pidgin-musictracker/"
-SRC_URI="http://pidgin-musictracker.googlecode.com/files/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="debug"
-
-DEPEND=">=net-im/pidgin-2.0.0
- >=dev-libs/dbus-glib-0.73
- dev-libs/libpcre
- >=sys-devel/gettext-0.17"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- sed -i -e "s/musictracker_la_LDFLAGS =/musictracker_la_LDFLAGS = -shared/g" src/Makefile.am
- eautoreconf
-}
-
-src_configure() {
- econf \
- $(use_enable debug) \
- --disable-werror
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "make install failure"
- dodoc AUTHORS ChangeLog INSTALL README THANKS || die "dodoc failed"
- find "${D}" -name "*.la" -delete || die "error cleaning la file."
-}
diff --git a/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21.ebuild b/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21.ebuild
deleted file mode 100644
index 5ff2bab3a0bd..000000000000
--- a/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.21.ebuild,v 1.4 2010/05/24 16:24:42 nixnut Exp $
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="A Pidgin now playing plugin to publicise the songs you are listening to in your status message"
-HOMEPAGE="http://code.google.com/p/pidgin-musictracker/"
-SRC_URI="http://pidgin-musictracker.googlecode.com/files/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="debug"
-
-DEPEND=">=net-im/pidgin-2.0.0
- >=dev-libs/dbus-glib-0.73
- dev-libs/libpcre
- >=sys-devel/gettext-0.17"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- econf \
- $(use_enable debug) \
- --disable-werror
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die "make install failure"
- dodoc AUTHORS ChangeLog INSTALL README THANKS || die "dodoc failed"
-}