summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-04-29 20:13:46 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-04-29 20:13:46 +0000
commitfd28e7859323615d5118ea5e7efd1ce9a18d694e (patch)
treeed8123a53e429189cc16d47448f14d1ae4770341 /net-news
parentRemove old. (diff)
downloadgentoo-2-fd28e7859323615d5118ea5e7efd1ce9a18d694e.tar.gz
gentoo-2-fd28e7859323615d5118ea5e7efd1ce9a18d694e.tar.bz2
gentoo-2-fd28e7859323615d5118ea5e7efd1ce9a18d694e.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-news')
-rw-r--r--net-news/liferea/ChangeLog12
-rw-r--r--net-news/liferea/files/liferea-1.7.4-libnotify-0.7.patch66
-rw-r--r--net-news/liferea/files/liferea-1.7.6-unread-feeds.patch68
-rw-r--r--net-news/liferea/liferea-1.10.0.ebuild76
-rw-r--r--net-news/liferea/liferea-1.10.1a.ebuild76
-rw-r--r--net-news/liferea/liferea-1.10.3.ebuild76
-rw-r--r--net-news/liferea/liferea-1.8.0.ebuild66
-rw-r--r--net-news/liferea/liferea-1.8.5.ebuild66
-rw-r--r--net-news/liferea/liferea-1.9.4_p20120821.ebuild70
-rw-r--r--net-news/liferea/liferea-1.9.6_p20121021.ebuild70
10 files changed, 10 insertions, 636 deletions
diff --git a/net-news/liferea/ChangeLog b/net-news/liferea/ChangeLog
index 33d0ccf45a44..b395f5d5e03b 100644
--- a/net-news/liferea/ChangeLog
+++ b/net-news/liferea/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for net-news/liferea
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/ChangeLog,v 1.247 2014/10/31 08:41:27 pacho Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/ChangeLog,v 1.248 2015/04/29 20:13:46 mrueg Exp $
+
+ 29 Apr 2015; Manuel Rüger <mrueg@gentoo.org>
+ -files/liferea-1.7.4-libnotify-0.7.patch,
+ -files/liferea-1.7.6-unread-feeds.patch, -liferea-1.10.0.ebuild,
+ -liferea-1.10.1a.ebuild, -liferea-1.10.3.ebuild, -liferea-1.8.0.ebuild,
+ -liferea-1.8.5.ebuild, -liferea-1.9.4_p20120821.ebuild,
+ -liferea-1.9.6_p20121021.ebuild:
+ Remove old.
31 Oct 2014; Pacho Ramos <pacho@gentoo.org> liferea-1.10.8.ebuild,
liferea-1.8.0.ebuild, liferea-1.8.5.ebuild, liferea-1.8.8.ebuild:
diff --git a/net-news/liferea/files/liferea-1.7.4-libnotify-0.7.patch b/net-news/liferea/files/liferea-1.7.4-libnotify-0.7.patch
deleted file mode 100644
index 0cc11769b64b..000000000000
--- a/net-news/liferea/files/liferea-1.7.4-libnotify-0.7.patch
+++ /dev/null
@@ -1,66 +0,0 @@
---- src/notification/libnotify.c
-+++ src/notification/libnotify.c
-@@ -28,6 +28,10 @@
-
- #include <libnotify/notify.h>
-
-+#ifndef NOTIFY_CHECK_VERSION
-+#define NOTIFY_CHECK_VERSION(x,y,z) 0
-+#endif
-+
- #include "common.h"
- #include "conf.h"
- #include "debug.h"
-@@ -158,7 +162,12 @@
- // notify_notification_update ( n, node_get_title(node_p), labelText_now_p, NULL);
- // notify_notification_clear_actions(n);
-
-- n = notify_notification_new (node_get_title (node_p), labelText_now_p, NULL, NULL);
-+ n = notify_notification_new (node_get_title (node_p), labelText_now_p, NULL
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+ );
-+#else
-+ , NULL);
-+#endif
-
- notify_notification_set_icon_from_pixbuf (n, node_get_icon (node_p));
- notify_notification_set_category (n, "feed");
-@@ -172,8 +181,11 @@
- (NotifyActionCallback)notif_libnotify_callback_mark_read,
- node_p->id, NULL);
- }
--
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+ /* notify_notification_attach_to_status_icon was removed */
-+#else
- notify_notification_attach_to_status_icon (n, ui_tray_get_status_icon ());
-+#endif
-
- if (!notify_notification_show (n, NULL)) {
- g_warning ("libnotify.c - failed to update notification via libnotify\n");
-@@ -249,7 +261,12 @@
-
- labelSummary_p = g_strdup_printf (ngettext ("%s has %d new / updated headline\n", "%s has %d new / updated headlines\n", item_count),
- node_get_title (node), item_count);
-- n = notify_notification_new (_("Feed Update"), labelSummary_p, "liferea", NULL);
-+ n = notify_notification_new (_("Feed Update"), labelSummary_p, "liferea"
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+ );
-+#else
-+ , NULL);
-+#endif
- g_free (labelSummary_p);
-
- if (supports_append) {
-@@ -272,7 +289,11 @@
- }
- notify_notification_set_category (n, "feed");
-
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+ /* notify_notification_attach_to_status_icon was removed */
-+#else
- notify_notification_attach_to_status_icon (n, ui_tray_get_status_icon ());
-+#endif
-
- if (!notify_notification_show (n, NULL))
- g_warning ("notif_libnotify.c - failed to send notification via libnotify");
diff --git a/net-news/liferea/files/liferea-1.7.6-unread-feeds.patch b/net-news/liferea/files/liferea-1.7.6-unread-feeds.patch
deleted file mode 100644
index d4618dde0996..000000000000
--- a/net-news/liferea/files/liferea-1.7.6-unread-feeds.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-diff -NrU5 liferea-1.7.6.original/src/fl_sources/ttrss_source_feed.c liferea-1.7.6/src/fl_sources/ttrss_source_feed.c
---- liferea-1.7.6.original/src/fl_sources/ttrss_source_feed.c 2011-06-07 15:25:28.000000000 -0600
-+++ liferea-1.7.6/src/fl_sources/ttrss_source_feed.c 2011-09-11 07:02:30.000000000 -0600
-@@ -72,16 +72,12 @@
- item_set_title (item, json_get_string (node, "title"));
- item_set_source (item, json_get_string (node, "link"));
- item_set_description (item, json_get_string (node, "content"));
- item->time = json_get_int (node, "updated");
-
-- if (json_get_bool (node, "unread")) {
-+ if (json_get_bool (node, "unread"))
- item->readStatus = FALSE;
-- }
-- else {
-- item->readStatus = TRUE;
-- }
- if (json_get_bool (node, "marked"))
- item->flagStatus = TRUE;
-
- items = g_list_append (items, (gpointer)item);
-
-diff -NrU5 liferea-1.7.6.original/src/itemset.c liferea-1.7.6/src/itemset.c
---- liferea-1.7.6.original/src/itemset.c 2011-06-07 15:25:28.000000000 -0600
-+++ liferea-1.7.6/src/itemset.c 2011-09-11 07:02:30.000000000 -0600
-@@ -77,11 +77,11 @@
- GList *oldItemIdIter = items;
- itemPtr oldItem = NULL;
- gboolean found, equal = FALSE;
-
- /* determine if we should add it... */
-- debug2 (DEBUG_CACHE, "check new item for merging: \"%s\", %i", item_get_title (newItem), allowUpdates);
-+ debug1 (DEBUG_CACHE, "check new item for merging: \"%s\"", item_get_title (newItem));
-
- /* compare to every existing item in this feed */
- found = FALSE;
- while (oldItemIdIter) {
- oldItem = (itemPtr)(oldItemIdIter->data);
-@@ -110,16 +110,10 @@
-
- /* best case: they both have ids (position important: id check is useless without knowing if the items are different!) */
- if (item_get_id (oldItem)) {
- if (0 == strcmp (item_get_id (oldItem), item_get_id (newItem))) {
- found = TRUE;
--
-- /* found corresponding item, check if they are REALLY equal (eg, read status may have changed) */
-- if(oldItem->readStatus != newItem->readStatus)
-- equal = FALSE;
-- if(oldItem->flagStatus != newItem->flagStatus)
-- equal = FALSE;
- break;
- } else {
- /* different ids, but the content might be still equal (e.g. empty)
- so we need to explicitly unset the equal flag !!! */
- equal = FALSE;
-@@ -158,13 +152,10 @@
- oldItem->updateStatus = TRUE;
- // FIXME: this does not remove metadata from DB
- metadata_list_free (oldItem->metadata);
- oldItem->metadata = newItem->metadata;
- newItem->metadata = NULL;
-- oldItem->readStatus = newItem->readStatus;
-- oldItem->flagStatus = newItem->flagStatus;
--
- db_item_update (oldItem);
- debug0 (DEBUG_CACHE, "-> item already existing and was updated");
- } else {
- debug0 (DEBUG_CACHE, "-> item updates not merged because of parser errors");
- }
diff --git a/net-news/liferea/liferea-1.10.0.ebuild b/net-news/liferea/liferea-1.10.0.ebuild
deleted file mode 100644
index 517aa8230c4e..000000000000
--- a/net-news/liferea/liferea-1.10.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/liferea-1.10.0.ebuild,v 1.1 2013/07/13 07:45:21 tomwij Exp $
-
-EAPI="5"
-
-GCONF_DEBUG="no"
-
-inherit autotools eutils gnome2 pax-utils
-
-MY_P=${P/_rc/-RC}
-MY_P=${MY_P/_/-}
-
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo feeds"
-HOMEPAGE="http://liferea.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-IUSE="ayatana libnotify"
-
-RDEPEND="x11-libs/gtk+:3
- >=dev-libs/glib-2.26.0:2
- dev-libs/json-glib
- >=dev-libs/libpeas-1.0.0[gtk]
- >=net-libs/libsoup-2.28.2:2.4
- dev-libs/libunique:3
- >=dev-libs/libxml2-2.6.27:2
- >=dev-libs/libxslt-1.1.19
- >=dev-db/sqlite-3.7.0:3
- >=gnome-base/gconf-1.1.9:2
- gnome-base/gsettings-desktop-schemas
- >=net-libs/webkit-gtk-1.6.1:3
- >=x11-libs/pango-1.4.0
- ayatana? ( dev-libs/libindicate )
- libnotify? ( >=x11-libs/libnotify-0.3.2 )"
-
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig"
-
-DOCS="AUTHORS ChangeLog README"
-
-S="${WORKDIR}"/${MY_P}
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-schemas-compile
- $(use_enable ayatana libindicate)
- $(use_enable libnotify)"
-}
-
-src_prepare() {
- eautoreconf
-
- gnome2_src_prepare
-}
-
-src_install() {
- gnome2_src_install
-
- # bug #338213
- # Uses webkit's JIT. Needs mmap('rwx') to generate code in runtime.
- # MPROTECT policy violation. Will sit here until webkit will
- # get optional JIT.
- pax-mark m "${D}"/usr/bin/liferea
-
- einfo "If you want to enhance the functionality of this package,"
- einfo "you should consider installing:"
- einfo " dev-libs/dbus-glib"
- einfo " net-misc/networkmanager"
-}
diff --git a/net-news/liferea/liferea-1.10.1a.ebuild b/net-news/liferea/liferea-1.10.1a.ebuild
deleted file mode 100644
index 0f78fa11a9aa..000000000000
--- a/net-news/liferea/liferea-1.10.1a.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/liferea-1.10.1a.ebuild,v 1.1 2013/08/01 13:40:40 slyfox Exp $
-
-EAPI="5"
-
-GCONF_DEBUG="no"
-
-inherit autotools eutils gnome2 pax-utils
-
-MY_P=${P/_rc/-RC}
-MY_P=${MY_P/_/-}
-
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo feeds"
-HOMEPAGE="http://liferea.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-IUSE="ayatana libnotify"
-
-RDEPEND="x11-libs/gtk+:3
- >=dev-libs/glib-2.26.0:2
- dev-libs/json-glib
- >=dev-libs/libpeas-1.0.0[gtk]
- >=net-libs/libsoup-2.28.2:2.4
- dev-libs/libunique:3
- >=dev-libs/libxml2-2.6.27:2
- >=dev-libs/libxslt-1.1.19
- >=dev-db/sqlite-3.7.0:3
- >=gnome-base/gconf-1.1.9:2
- gnome-base/gsettings-desktop-schemas
- >=net-libs/webkit-gtk-1.6.1:3
- >=x11-libs/pango-1.4.0
- ayatana? ( dev-libs/libindicate )
- libnotify? ( >=x11-libs/libnotify-0.3.2 )"
-
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig"
-
-DOCS="AUTHORS ChangeLog README"
-
-S="${WORKDIR}"/${MY_P}
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-schemas-compile
- $(use_enable ayatana libindicate)
- $(use_enable libnotify)"
-}
-
-src_prepare() {
- eautoreconf
-
- gnome2_src_prepare
-}
-
-src_install() {
- gnome2_src_install
-
- # bug #338213
- # Uses webkit's JIT. Needs mmap('rwx') to generate code in runtime.
- # MPROTECT policy violation. Will sit here until webkit will
- # get optional JIT.
- pax-mark m "${D}"/usr/bin/liferea
-
- einfo "If you want to enhance the functionality of this package,"
- einfo "you should consider installing:"
- einfo " dev-libs/dbus-glib"
- einfo " net-misc/networkmanager"
-}
diff --git a/net-news/liferea/liferea-1.10.3.ebuild b/net-news/liferea/liferea-1.10.3.ebuild
deleted file mode 100644
index 859f6e7d7c09..000000000000
--- a/net-news/liferea/liferea-1.10.3.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/liferea-1.10.3.ebuild,v 1.2 2013/12/26 14:48:07 maekke Exp $
-
-EAPI="5"
-
-GCONF_DEBUG="no"
-
-inherit autotools eutils gnome2 pax-utils
-
-MY_P=${P/_rc/-RC}
-MY_P=${MY_P/_/-}
-
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo feeds"
-HOMEPAGE="http://liferea.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
-
-IUSE="ayatana libnotify"
-
-RDEPEND="x11-libs/gtk+:3
- >=dev-libs/glib-2.26.0:2
- dev-libs/json-glib
- >=dev-libs/libpeas-1.0.0[gtk]
- >=net-libs/libsoup-2.28.2:2.4
- dev-libs/libunique:3
- >=dev-libs/libxml2-2.6.27:2
- >=dev-libs/libxslt-1.1.19
- >=dev-db/sqlite-3.7.0:3
- >=gnome-base/gconf-1.1.9:2
- gnome-base/gsettings-desktop-schemas
- >=net-libs/webkit-gtk-1.6.1:3
- >=x11-libs/pango-1.4.0
- ayatana? ( dev-libs/libindicate )
- libnotify? ( >=x11-libs/libnotify-0.3.2 )"
-
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig"
-
-DOCS="AUTHORS ChangeLog README"
-
-S="${WORKDIR}"/${MY_P}
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-schemas-compile
- $(use_enable ayatana libindicate)
- $(use_enable libnotify)"
-}
-
-src_prepare() {
- eautoreconf
-
- gnome2_src_prepare
-}
-
-src_install() {
- gnome2_src_install
-
- # bug #338213
- # Uses webkit's JIT. Needs mmap('rwx') to generate code in runtime.
- # MPROTECT policy violation. Will sit here until webkit will
- # get optional JIT.
- pax-mark m "${D}"/usr/bin/liferea
-
- einfo "If you want to enhance the functionality of this package,"
- einfo "you should consider installing:"
- einfo " dev-libs/dbus-glib"
- einfo " net-misc/networkmanager"
-}
diff --git a/net-news/liferea/liferea-1.8.0.ebuild b/net-news/liferea/liferea-1.8.0.ebuild
deleted file mode 100644
index d79eac0a49fc..000000000000
--- a/net-news/liferea/liferea-1.8.0.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/liferea-1.8.0.ebuild,v 1.7 2014/10/31 08:41:27 pacho Exp $
-
-EAPI=4
-
-GCONF_DEBUG=no
-
-inherit eutils gnome2 pax-utils
-
-MY_P=${P/_/-}
-
-DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo feeds"
-HOMEPAGE="http://liferea.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE="ayatana libnotify"
-
-RDEPEND=">=x11-libs/gtk+-2.18.0:2
- >=dev-libs/glib-2.24.0:2
- >=x11-libs/pango-1.4.0
- >=gnome-base/gconf-1.1.9:2
- dev-libs/json-glib
- dev-libs/libunique:1
- >=dev-libs/libxml2-2.6.27:2
- >=dev-libs/libxslt-1.1.19
- >=dev-db/sqlite-3.6.10:3
- >=net-libs/libsoup-2.28.2:2.4
- >=net-libs/webkit-gtk-1.2.2:2
- ayatana? ( dev-libs/libindicate )
- libnotify? ( >=x11-libs/libnotify-0.3.2 )"
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig"
-
-DOCS="AUTHORS ChangeLog README"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --enable-sm
- --disable-schemas-install
- $(use_enable ayatana libindicate)
- $(use_enable libnotify)"
-}
-
-src_prepare() {
- gnome2_src_prepare
-}
-
-src_install() {
- gnome2_src_install
- # bug #338213
- # Uses webkit's JIT. Needs mmap('rwx') to generate code in runtime.
- # MPROTECT policy violation. Will sit here until webkit will
- # get optional JIT.
- pax-mark m "${D}"/usr/bin/liferea
-
- einfo "If you want to enhance funcitonality of this package"
- einfo "You should consider installing these packages:"
- einfo " dev-libs/dbus-glib"
- einfo " net-misc/networkmanager"
-}
diff --git a/net-news/liferea/liferea-1.8.5.ebuild b/net-news/liferea/liferea-1.8.5.ebuild
deleted file mode 100644
index ce4eb69a9134..000000000000
--- a/net-news/liferea/liferea-1.8.5.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/liferea-1.8.5.ebuild,v 1.6 2014/10/31 08:41:27 pacho Exp $
-
-EAPI=4
-
-GCONF_DEBUG=no
-
-inherit eutils gnome2 pax-utils
-
-MY_P=${P/_/-}
-
-DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo feeds"
-HOMEPAGE="http://liferea.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE="ayatana libnotify"
-
-RDEPEND=">=x11-libs/gtk+-2.18.0:2
- >=dev-libs/glib-2.24.0:2
- >=x11-libs/pango-1.4.0
- >=gnome-base/gconf-1.1.9:2
- >=dev-libs/libxml2-2.6.27:2
- >=dev-libs/libxslt-1.1.19
- >=dev-db/sqlite-3.7.0:3
- >=net-libs/libsoup-2.28.2:2.4
- dev-libs/libunique:1
- >=net-libs/webkit-gtk-1.2.2:2
- dev-libs/json-glib
- ayatana? ( dev-libs/libindicate )
- libnotify? ( >=x11-libs/libnotify-0.3.2 )"
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig"
-
-DOCS="AUTHORS ChangeLog README"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --enable-sm
- --disable-schemas-install
- $(use_enable ayatana libindicate)
- $(use_enable libnotify)"
-}
-
-src_prepare() {
- gnome2_src_prepare
-}
-
-src_install() {
- gnome2_src_install
- # bug #338213
- # Uses webkit's JIT. Needs mmap('rwx') to generate code in runtime.
- # MPROTECT policy violation. Will sit here until webkit will
- # get optional JIT.
- pax-mark m "${D}"/usr/bin/liferea
-
- einfo "If you want to enhance funcitonality of this package"
- einfo "You should consider installing these packages:"
- einfo " dev-libs/dbus-glib"
- einfo " net-misc/networkmanager"
-}
diff --git a/net-news/liferea/liferea-1.9.4_p20120821.ebuild b/net-news/liferea/liferea-1.9.4_p20120821.ebuild
deleted file mode 100644
index c949c6764d63..000000000000
--- a/net-news/liferea/liferea-1.9.4_p20120821.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/liferea-1.9.4_p20120821.ebuild,v 1.2 2012/09/15 14:40:44 vostorga Exp $
-
-EAPI=4
-
-GCONF_DEBUG=no
-
-inherit eutils gnome2 pax-utils
-
-MY_P=${PN}
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo feeds"
-HOMEPAGE="http://liferea.sourceforge.net/"
-SRC_URI="http://dev.gentoo.org/~vostorga/distfiles/${P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="ayatana libnotify"
-
-RDEPEND=">=x11-libs/gtk+-2.91.4:3
- >=dev-libs/glib-2.26.0:2
- >=x11-libs/pango-1.4.0
- >=gnome-base/gconf-1.1.9:2
- >=dev-libs/libxml2-2.6.27:2
- >=dev-libs/libxslt-1.1.19
- >=dev-db/sqlite-3.7.0:3
- >=net-libs/libsoup-2.28.2:2.4
- dev-libs/libunique:3
- >=net-libs/webkit-gtk-1.6.1:3
- dev-libs/json-glib
- ayatana? ( dev-libs/libindicate )
- libnotify? ( >=x11-libs/libnotify-0.3.2 )
- >=dev-libs/libpeas-1.0.0[gtk]
- gnome-base/gsettings-desktop-schemas"
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig"
-
-DOCS="AUTHORS ChangeLog README"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --enable-sm
- --disable-schemas-install
- $(use_enable ayatana libindicate)
- $(use_enable libnotify)"
-}
-
-src_prepare() {
- ./autogen.sh || die
- gnome2_src_prepare
-}
-
-src_install() {
- gnome2_src_install
- # bug #338213
- # Uses webkit's JIT. Needs mmap('rwx') to generate code in runtime.
- # MPROTECT policy violation. Will sit here until webkit will
- # get optional JIT.
- pax-mark m "${D}"/usr/bin/liferea
-
- einfo "If you want to enhance funcitonality of this package"
- einfo "You should consider installing these packages:"
- einfo " dev-libs/dbus-glib"
- einfo " net-misc/networkmanager"
-}
diff --git a/net-news/liferea/liferea-1.9.6_p20121021.ebuild b/net-news/liferea/liferea-1.9.6_p20121021.ebuild
deleted file mode 100644
index 393aa7454b50..000000000000
--- a/net-news/liferea/liferea-1.9.6_p20121021.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/liferea/liferea-1.9.6_p20121021.ebuild,v 1.1 2012/10/21 18:27:56 vostorga Exp $
-
-EAPI=4
-
-GCONF_DEBUG=no
-
-inherit eutils gnome2 pax-utils
-
-MY_P=${PN}
-S=${WORKDIR}/${MY_P}
-
-DESCRIPTION="News Aggregator for RDF/RSS/CDF/Atom/Echo feeds"
-HOMEPAGE="http://liferea.sourceforge.net/"
-SRC_URI="http://dev.gentoo.org/~vostorga/distfiles/${P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="ayatana libnotify"
-
-RDEPEND=">=x11-libs/gtk+-2.91.4:3
- >=dev-libs/glib-2.26.0:2
- >=x11-libs/pango-1.4.0
- >=gnome-base/gconf-1.1.9:2
- >=dev-libs/libxml2-2.6.27:2
- >=dev-libs/libxslt-1.1.19
- >=dev-db/sqlite-3.7.0:3
- >=net-libs/libsoup-2.28.2:2.4
- dev-libs/libunique:3
- >=net-libs/webkit-gtk-1.6.1:3
- dev-libs/json-glib
- ayatana? ( dev-libs/libindicate )
- libnotify? ( >=x11-libs/libnotify-0.3.2 )
- >=dev-libs/libpeas-1.0.0[gtk]
- gnome-base/gsettings-desktop-schemas"
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig"
-
-DOCS="AUTHORS ChangeLog README"
-
-S=${WORKDIR}/${MY_P}
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --enable-sm
- --disable-schemas-install
- $(use_enable ayatana libindicate)
- $(use_enable libnotify)"
-}
-
-src_prepare() {
- ./autogen.sh || die
- gnome2_src_prepare
-}
-
-src_install() {
- gnome2_src_install
- # bug #338213
- # Uses webkit's JIT. Needs mmap('rwx') to generate code in runtime.
- # MPROTECT policy violation. Will sit here until webkit will
- # get optional JIT.
- pax-mark m "${D}"/usr/bin/liferea
-
- einfo "If you want to enhance funcitonality of this package"
- einfo "You should consider installing these packages:"
- einfo " dev-libs/dbus-glib"
- einfo " net-misc/networkmanager"
-}