[media-sound/vagalume] remove (old, unfetchable, seems unmaintained)

This commit is contained in:
Sławomir Nizio
2018-07-28 16:03:07 +02:00
parent 827e41fcfc
commit d794f79dc0
4 changed files with 0 additions and 80 deletions
-1
View File
@@ -1 +0,0 @@
DIST vagalume-0.8.6.tar.gz 796190 SHA256 d09aa893965a7632aec30a31d69abe5bebf17420f10e440521a070146c166141 SHA512 dd0847c7723b22603f349fcd2485a54df7b72a6b4d1e2241284b837f8d9f14a0daff002b8c1b867b43a3b88b9721eaad03af2ff30d02e8722e772e9fa50db706 WHIRLPOOL 48a2594154d18f8c84a9343df0a431d669bdace042bfa0a7bc6e56fdf5141e2ac2ade09afbae464b4bda89dc1aa0c28cab5fe2c463f8e626a0d9a0f59ac229ec
@@ -1,22 +0,0 @@
diff -Nur vagalume-0.8.4/src/vgl-tray-icon.c vagalume-0.8.4_patched/src/vgl-tray-icon.c
--- vagalume-0.8.4/src/vgl-tray-icon.c 2010-04-09 13:57:15.000000000 +0300
+++ vagalume-0.8.4_patched/src/vgl-tray-icon.c 2011-03-14 00:57:53.000000000 +0200
@@ -518,11 +518,18 @@
/* Create the notification if not already created */
if (priv->notification == NULL) {
priv->notification =
+#if !defined(NOTIFY_VERSION_MINOR) || (NOTIFY_VERSION_MAJOR == 0 && NOTIFY_VERSION_MINOR < 7)
notify_notification_new_with_status_icon (
notification_summary,
notification_body,
NULL,
priv->tray_icon);
+#else
+ notify_notification_new (
+ notification_summary,
+ notification_body,
+ NULL);
+#endif
} else {
notify_notification_update (priv->notification,
notification_summary,
-12
View File
@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
<email>slawomir.nizio@sabayon.org</email>
</maintainer>
<use>
<flag name="libnotify">Enable libnotify and tray icon support</flag>
<flag name="libproxy">Enable system-wide proxy support</flag>
</use>
</pkgmetadata>
@@ -1,45 +0,0 @@
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
inherit autotools gnome2
DESCRIPTION="GTK+-based Last.fm client"
HOMEPAGE="http://vagalume.igalia.com/"
SRC_URI="http://vagalume.igalia.com/files/source/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dbus libnotify libproxy"
RDEPEND="dev-libs/libxml2
>=media-libs/gst-plugins-base-0.10
>=media-plugins/gst-plugins-mad-0.10
>=media-plugins/gst-plugins-gconf-0.10
net-misc/curl
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
dbus? ( dev-libs/dbus-glib )
libnotify? ( x11-libs/libnotify )
libproxy? ( net-libs/libproxy )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
"
DOCS="AUTHORS README THANKS TODO TRANSLATORS"
src_prepare() {
gnome2_src_prepare
eautoreconf
}
pkg_setup() {
G2CONF="${G2CONF}
$(use_enable dbus)
$(use_enable libnotify tray-icon)
$(use_enable libproxy)
--with-gtk-version=3"
}