summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-05-05 12:41:46 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-05-05 12:41:46 +0000
commita6fe52262bb2e1e619053ac44b56bc9bf4f63a22 (patch)
tree0a0b87f42c1dd82309335a8f771cf30b202ea01e /xfce-extra
parentVersion bump (diff)
downloadgentoo-2-a6fe52262bb2e1e619053ac44b56bc9bf4f63a22.tar.gz
gentoo-2-a6fe52262bb2e1e619053ac44b56bc9bf4f63a22.tar.bz2
gentoo-2-a6fe52262bb2e1e619053ac44b56bc9bf4f63a22.zip
rm
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra')
-rw-r--r--xfce-extra/xfce4-power-manager/files/xfce4-power-manager-1.0.3-libnotify-0.7.patch27
-rw-r--r--xfce-extra/xfce4-power-manager/xfce4-power-manager-1.0.3.ebuild59
2 files changed, 0 insertions, 86 deletions
diff --git a/xfce-extra/xfce4-power-manager/files/xfce4-power-manager-1.0.3-libnotify-0.7.patch b/xfce-extra/xfce4-power-manager/files/xfce4-power-manager-1.0.3-libnotify-0.7.patch
deleted file mode 100644
index 206524a507be..000000000000
--- a/xfce-extra/xfce4-power-manager/files/xfce4-power-manager-1.0.3-libnotify-0.7.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-http://bugzilla.xfce.org/show_bug.cgi?id=7205
-
---- src/xfpm-notify.c
-+++ src/xfpm-notify.c
-@@ -209,13 +209,20 @@
- {
- NotifyNotification *n;
-
-- n = notify_notification_new (title, message, NULL, NULL);
-+ n = notify_notification_new (title, message, NULL
-+#ifdef HAVE_LIBNOTIFY_07
-+ );
-+#else
-+ , NULL);
-+#endif
-
- if ( icon_name )
- xfpm_notify_set_notification_icon (n, icon_name);
--
-+
-+#ifndef HAVE_LIBNOTIFY_07
- if ( icon )
- notify_notification_attach_to_status_icon (n, icon);
-+#endif
-
- notify_notification_set_urgency (n, (NotifyUrgency)urgency);
-
diff --git a/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.0.3.ebuild b/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.0.3.ebuild
deleted file mode 100644
index 663fafd096ef..000000000000
--- a/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.0.3.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-power-manager/xfce4-power-manager-1.0.3.ebuild,v 1.4 2011/01/29 14:35:36 ssuominen Exp $
-
-EAPI=3
-inherit flag-o-matic xfconf
-
-DESCRIPTION="Power manager for the Xfce desktop environment"
-HOMEPAGE="http://goodies.xfce.org/projects/applications/xfce4-power-manager"
-SRC_URI="mirror://xfce/src/apps/${PN}/1.0/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86"
-IUSE="debug kernel_linux networkmanager policykit +xfce_plugins_brightness"
-
-COMMON_DEPEND=">=x11-libs/gtk+-2.18:2
- >=dev-libs/glib-2.16:2
- >=dev-libs/dbus-glib-0.88
- >=xfce-base/xfconf-4.8
- >=xfce-base/libxfce4ui-4.8
- >=xfce-base/libxfce4util-4.8
- >=x11-libs/libnotify-0.4.1
- >=x11-libs/libXrandr-1.2
- x11-libs/libX11
- x11-libs/libXext
- sys-power/upower
- kernel_linux? ( sys-fs/udisks )
- xfce_plugins_brightness? ( >=xfce-base/xfce4-panel-4.8 )
- policykit? ( >=sys-auth/polkit-0.91 )"
-RDEPEND="${COMMON_DEPEND}
- networkmanager? ( net-misc/networkmanager )"
-DEPEND="${COMMON_DEPEND}
- dev-util/pkgconfig
- dev-util/intltool
- sys-devel/gettext
- x11-proto/xproto"
-
-pkg_setup() {
- has_version ">=x11-libs/libnotify-0.7" && append-cppflags -DHAVE_LIBNOTIFY_07
- PATCHES=( "${FILESDIR}"/${P}-libnotify-0.7.patch )
-
- XFCONF=(
- --disable-dependency-tracking
- $(use_enable policykit polkit)
- --enable-dpms
- $(use_enable networkmanager network-manager)
- $(use_enable xfce_plugins_brightness panel-plugins)
- $(xfconf_use_debug)
- )
-
- DOCS="AUTHORS ChangeLog NEWS README TODO"
-}
-
-src_install() {
- xfconf_src_install \
- docdir=/usr/share/doc/${PF}/html \
- imagesdir=/usr/share/doc/${PF}/html/images
-}