diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-10-20 17:39:17 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-10-20 17:52:10 +0200 |
commit | 11d95c8a2299afe671f2aef73e975c41fb2e9b9d (patch) | |
tree | 99cb20dd7ae4c8cf94d06a909388e5e6a3408537 /net-misc | |
parent | sys-block/rts5229: Remove last-rited pkg (diff) | |
download | gentoo-11d95c8a2299afe671f2aef73e975c41fb2e9b9d.tar.gz gentoo-11d95c8a2299afe671f2aef73e975c41fb2e9b9d.tar.bz2 gentoo-11d95c8a2299afe671f2aef73e975c41fb2e9b9d.zip |
net-misc/gwget: Remove last-rited pkg
Closes: https://bugs.gentoo.org/726796
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/gwget/Manifest | 1 | ||||
-rw-r--r-- | net-misc/gwget/files/gwget-1.0.4-glib-single-include.patch | 13 | ||||
-rw-r--r-- | net-misc/gwget/files/gwget-1.0.4-libnotify-0.7.patch | 29 | ||||
-rw-r--r-- | net-misc/gwget/gwget-1.0.4.ebuild | 53 | ||||
-rw-r--r-- | net-misc/gwget/metadata.xml | 17 |
5 files changed, 0 insertions, 113 deletions
diff --git a/net-misc/gwget/Manifest b/net-misc/gwget/Manifest deleted file mode 100644 index 4717651b0f93..000000000000 --- a/net-misc/gwget/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST gwget-1.0.4.tar.bz2 444843 BLAKE2B 8485aece30496c441d2ddc44dbbe08f17e698cc905ab465fc0b165a70a5ff264da3ef3773cea03ab3cd4e2f48b210d23507d7548549c5880e39d6e5bf955ecd5 SHA512 fab9d5eb4e6fd9d061a51848d7f4df9a44925ef8c74386753a7250c4d92b0c95419a8355acf83611c83838e87d906613659e146132a086ada0bdb69cc2ac13cd diff --git a/net-misc/gwget/files/gwget-1.0.4-glib-single-include.patch b/net-misc/gwget/files/gwget-1.0.4-glib-single-include.patch deleted file mode 100644 index a5cf4ee995bc..000000000000 --- a/net-misc/gwget/files/gwget-1.0.4-glib-single-include.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: gwget-1.0.4/src/gwget-application.h -=================================================================== ---- gwget-1.0.4.orig/src/gwget-application.h -+++ gwget-1.0.4/src/gwget-application.h -@@ -18,7 +18,7 @@ - #ifndef GWGET_APPLICATION_H - #define GWGET_APPLICATION_H - --#include <glib/gerror.h> -+#include <glib.h> - #include <glib-object.h> - - G_BEGIN_DECLS diff --git a/net-misc/gwget/files/gwget-1.0.4-libnotify-0.7.patch b/net-misc/gwget/files/gwget-1.0.4-libnotify-0.7.patch deleted file mode 100644 index 8cecc197814b..000000000000 --- a/net-misc/gwget/files/gwget-1.0.4-libnotify-0.7.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- a/src/systray.c -+++ b/src/systray.c -@@ -6,6 +6,12 @@ - #include "systray.h" - #include "main_window_cb.h" - -+#ifdef HAVE_NOTIFY -+#ifndef NOTIFY_CHECK_VERSION -+#define NOTIFY_CHECK_VERSION(x,y,z) 0 -+#endif -+#endif -+ - static GdkPixbuf *systray_load_icon (const gchar *filename); - static GdkPixbuf *systray_pixbuf_new_from_file(const gchar *filename); - static void systray_clicked(GtkStatusIcon *status_icon,guint button,guint activate_time,gpointer user_data); -@@ -224,7 +230,12 @@ - if (!notify_is_initted ()) - if (!notify_init ("gwget")) - return; -- NotifyNotification *notification = notify_notification_new(primary,secondary,icon_name,NULL); -+ NotifyNotification *notification = notify_notification_new(primary,secondary,icon_name -+#if NOTIFY_CHECK_VERSION (0, 7, 0) -+ ); -+#else -+ ,NULL); -+#endif - notify_notification_show(notification,NULL); - #endif - diff --git a/net-misc/gwget/gwget-1.0.4.ebuild b/net-misc/gwget/gwget-1.0.4.ebuild deleted file mode 100644 index 1a843450cdef..000000000000 --- a/net-misc/gwget/gwget-1.0.4.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -GNOME2_LA_PUNT="yes" -GNOME_TARBALL_SUFFIX="bz2" - -inherit gnome2 - -DESCRIPTION="GTK2 WGet Frontend" -HOMEPAGE="https://gnome.org/projects/gwget/" - -KEYWORDS="amd64 ppc x86" -LICENSE="GPL-2" -SLOT="0" -IUSE="epiphany libnotify" - -# FIXME: dbus should be optional -# needs patching for linguas/intltool -RDEPEND=" - net-misc/wget - >=x11-libs/gtk+-2.6:2 - >=dev-libs/glib-2.16.0:2 - >=gnome-base/gconf-2:2 - >=gnome-base/libgnomeui-2 - >=dev-libs/dbus-glib-0.70 - epiphany? ( >=www-client/epiphany-1.4 ) - libnotify? ( >=x11-libs/libnotify-0.2.2 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig - >=dev-util/intltool-0.35.0 - >=sys-devel/gettext-0.10.4 -" - -PATCHES=( - "${FILESDIR}"/${P}-libnotify-0.7.patch - "${FILESDIR}"/${P}-glib-single-include.patch -) - -src_configure() { - gnome2_src_configure \ - $(use_enable epiphany epiphany-extension) \ - $(use_enable libnotify) \ - --disable-static -} - -src_install() { - gnome2_src_install - - # remove /var/lib, which is created without any reason - rm -rf "${D}"/var || die "rm failed" -} diff --git a/net-misc/gwget/metadata.xml b/net-misc/gwget/metadata.xml deleted file mode 100644 index 25e77310cc10..000000000000 --- a/net-misc/gwget/metadata.xml +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>gnome@gentoo.org</email> - <name>Gentoo GNOME Desktop</name> - </maintainer> - <longdescription>Gwget2 is a gtk2 front-end for the wget program. Wget is commonly used for retrieving files from the internet, and with an easy to use gtk2 interface, gwget2 brings the utility of wget to the GNOME desktop. Gwget2 supports drag and drop from most gtk2 compatible browsers, as well as the ability to pause and continue downloads over sessions.</longdescription> - <longdescription lang="ja"> -Gwget2 は wget プログラムの GTK2 フロントエンドです。wget とはインターネットからファイルを回収するのに一般的に -使われているもので、gwget2 はGNOME デスクトップへ wget ユーティリティを統合し、GTK2 インターフェイスで使い易くします。 -Gwget2 は GTK2 互換のブラウザからのドラッグ・アンド・ドロップ及びセッションを越えた停止と再開をサポートします。 -</longdescription> - <use> - <flag name="epiphany">Build epiphany extensions</flag> - </use> -</pkgmetadata> |