From 35ec714f0f8c4907ec8abb505c4220259f62fd2e Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sat, 2 Dec 2017 09:36:29 +0100 Subject: media-sound/lxmusic: remove broken ebuild Closes: https://github.com/gentoo/gentoo/pull/6395 --- media-sound/lxmusic/Manifest | 1 - .../files/lxmusic-0.4.4-libnotify-0.7.patch | 32 ---------------------- media-sound/lxmusic/lxmusic-0.4.5.ebuild | 24 ---------------- 3 files changed, 57 deletions(-) delete mode 100644 media-sound/lxmusic/files/lxmusic-0.4.4-libnotify-0.7.patch delete mode 100644 media-sound/lxmusic/lxmusic-0.4.5.ebuild diff --git a/media-sound/lxmusic/Manifest b/media-sound/lxmusic/Manifest index 8f37ee8157f5..a3bd96480dc6 100644 --- a/media-sound/lxmusic/Manifest +++ b/media-sound/lxmusic/Manifest @@ -1,2 +1 @@ -DIST lxmusic-0.4.5.tar.gz 288873 SHA256 08a508e1df800f142fef567ff9d3d0e845bfdd70e2edb796b3b7ad0e92dce064 SHA512 2467096190fd8e1d628e234e4646fbbf96683eca6244990353cade732d91487783e4462d7619d57ce4bc9b9bda9cdacd8c857abcf73c94296f9863546f95a11f WHIRLPOOL 31fca06cc38412549bcfc126c602c4cceee3b35d3a470ddb91dc75698ebaab559232a9686e07bacb949433a51791fb01f6b763365af8b3b28e588576d6d3f401 DIST lxmusic-0.4.7.tar.xz 180300 SHA256 4933987338eb6e8c77d63b14cea5a8886146e75acbc38a21438c6c3f47bc06ba SHA512 e1e6a7e2306b24dfd5864df88db47c07656d43a1901212b1d6b6edec8addf866b31ebae46bca572e88801620016c6fab9860f5ed44d6086f24494e2eb2737216 WHIRLPOOL 43133bbae048efac3fd0684e730d4bab8902299519e55ae1978d831fedae30af2cc0db73042208f60e110fb64b357f3d6f8bd3333b22cc0715cb1f1780c84d4f diff --git a/media-sound/lxmusic/files/lxmusic-0.4.4-libnotify-0.7.patch b/media-sound/lxmusic/files/lxmusic-0.4.4-libnotify-0.7.patch deleted file mode 100644 index 62868c909856..000000000000 --- a/media-sound/lxmusic/files/lxmusic-0.4.4-libnotify-0.7.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- src/lxmusic-notify.c -+++ src/lxmusic-notify.c -@@ -56,12 +56,26 @@ - g_return_if_fail (message != NULL); - - lxmusic_clear_notify (n); -- -- notify = notify_notification_new (summary, message, -- "lxmusic", NULL); -+#ifdef NOTIFY_CHECK_VERSION -+#if NOTIFY_CHECK_VERSION (0, 7, 0) -+ notify = notify_notification_new (summary, message, "lxmusic"); -+#else -+ notify = notify_notification_new (summary, message, "lxmusic", NULL); -+#endif -+#else -+ notify = notify_notification_new (summary, message, "lxmusic", NULL); -+#endif - n->notification = notify; - -+#ifdef NOTIFY_CHECK_VERSION -+#if NOTIFY_CHECK_VERSION (0, 7, 0) -+/* lazy */ -+#else -+/* lazy */ -+#endif -+#else - notify_notification_attach_to_status_icon (notify, n->status_icon); -+#endif - notify_notification_set_urgency (notify, NOTIFY_URGENCY_NORMAL); - notify_notification_set_timeout (notify, NOTIFY_EXPIRES_DEFAULT); - diff --git a/media-sound/lxmusic/lxmusic-0.4.5.ebuild b/media-sound/lxmusic/lxmusic-0.4.5.ebuild deleted file mode 100644 index 777603e2bbab..000000000000 --- a/media-sound/lxmusic/lxmusic-0.4.5.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit eutils - -DESCRIPTION="A simple GUI XMMS2 client with minimal functionality" -HOMEPAGE="http://lxde.sourceforge.net/" -SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="x11-libs/gtk+:2 - media-sound/xmms2 - x11-libs/libnotify" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - epatch "${FILESDIR}"/${P}-libnotify-0.7.patch -} -- cgit v1.2.3-65-gdbad