diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-03-22 21:00:31 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-03-22 21:00:31 +0000 |
commit | d4ecf3f25ce0ce8e4a0c5485833637c7740848ad (patch) | |
tree | a9b04fb5075314641d4fc4c4339e77efbcd63975 /xfce-extra/xfce4-notifyd | |
parent | Fix whitespace. (diff) | |
download | historical-d4ecf3f25ce0ce8e4a0c5485833637c7740848ad.tar.gz historical-d4ecf3f25ce0ce8e4a0c5485833637c7740848ad.tar.bz2 historical-d4ecf3f25ce0ce8e4a0c5485833637c7740848ad.zip |
old
Package-Manager: portage-2.2.0_alpha28/cvs/Linux x86_64
Diffstat (limited to 'xfce-extra/xfce4-notifyd')
3 files changed, 0 insertions, 86 deletions
diff --git a/xfce-extra/xfce4-notifyd/Manifest b/xfce-extra/xfce4-notifyd/Manifest index 8f52ec2737e6..23dd3117ccf9 100644 --- a/xfce-extra/xfce4-notifyd/Manifest +++ b/xfce-extra/xfce4-notifyd/Manifest @@ -1,17 +1,4 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -AUX xfce4-notifyd-0.2.0-load_icon_with_path.patch 1310 RMD160 fdca2cc34e309e8570f3e49f0c2a46b6b7a32c64 SHA1 dd597fc46c99494d65d81125220bdfcf6334054c SHA256 e5a017228baf42cb2baa03392f284b444a1be97321e5ac910f73acd2a0c74220 -DIST xfce4-notifyd-0.2.0.tar.bz2 300632 RMD160 e7f9d80550abd328e5389f5bc956ae2190d1df30 SHA1 fe61d153367c368d3595a751f86f304988e185da SHA256 12618f6b2c3356451efb26ba75ed5828295b151bb8a14285338093dbab4b4a99 DIST xfce4-notifyd-0.2.1.tar.bz2 313671 RMD160 6a28a743d5a74ec070acb560ed07ba0de92ffe20 SHA1 4a0de4a9e7d0870ff14859ddfd414652a605eacc SHA256 aab2da3d14401ea91d816744e7c4b9e2e7a996e7d8b6756c7ad0c0b3bec3ed70 -EBUILD xfce4-notifyd-0.2.0-r1.ebuild 972 RMD160 1c90b3679a138cba0d499ddd5465a1323ce7324d SHA1 7336f55e9b13efa2588c5119163919f44a9ed1b2 SHA256 6e6e30267217a6d12dd91c496559056cc23f80e4c8a91ecb3913cf0f4e6cf2cc EBUILD xfce4-notifyd-0.2.1.ebuild 954 RMD160 437bbcfa0457eb13eb6289626b44c04f574bbc1c SHA1 d7b60f83fc3ff40582b14ff154299846bd57e8fc SHA256 f52861844f88d880e105271f706cedf7126e5a5ce39ae96cdc8dc1e34bbcf642 MISC ChangeLog 3028 RMD160 e5724354405c174de7ce27d9bcb06fbc14632fcb SHA1 c5679bf8bdf1c4502ddfaa732ab03cd64ac3c3a3 SHA256 ec30be3514ef0778f2813c298bf79c85213b7fc56cf37a50a24eef9cbb3e6c03 MISC metadata.xml 159 RMD160 43722935bd7b4db7fe8db681054f2e53c4a5f7ce SHA1 15958ad72e234ba572c9534533c21532eb6bc0fd SHA256 900ea49b6703fce452e205b85226bf1f994725963e5840da501182e7487d0e63 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v2.0.17 (GNU/Linux) - -iEYEARECAAYFAk2IfMEACgkQnZsgo/h8kNZ0KACePCthwsdcvHpqXEtT6m+CIME6 -wiwAoJl3P4XalhFdKXSH7N53QpwhQwt9 -=o1C3 ------END PGP SIGNATURE----- diff --git a/xfce-extra/xfce4-notifyd/files/xfce4-notifyd-0.2.0-load_icon_with_path.patch b/xfce-extra/xfce4-notifyd/files/xfce4-notifyd-0.2.0-load_icon_with_path.patch deleted file mode 100644 index b8ba67a42238..000000000000 --- a/xfce-extra/xfce4-notifyd/files/xfce4-notifyd-0.2.0-load_icon_with_path.patch +++ /dev/null @@ -1,34 +0,0 @@ -From 2529fb74ca78c52e8c66620e10ad275373d988bb Mon Sep 17 00:00:00 2001 -From: Yves-Alexis Perez <corsac@debian.org> -Date: Mon, 29 Nov 2010 22:39:20 +0000 -Subject: Fix icon loading with path (bug #6895). - ---- -diff --git a/xfce4-notifyd/xfce-notify-window.c b/xfce4-notifyd/xfce-notify-window.c -index d10ef1c..a7c7289 100644 ---- a/xfce4-notifyd/xfce-notify-window.c -+++ b/xfce4-notifyd/xfce-notify-window.c -@@ -1041,7 +1041,11 @@ xfce_notify_window_set_icon_name(XfceNotifyWindow *window, - GdkPixbuf *pix; - - gtk_icon_size_lookup(GTK_ICON_SIZE_DIALOG, &w, &h); -- pix = gtk_icon_theme_load_icon(gtk_icon_theme_get_default(), -+ -+ if(g_path_is_absolute(icon_name)) -+ pix = gdk_pixbuf_new_from_file_at_size(icon_name, w, h, NULL); -+ else -+ pix = gtk_icon_theme_load_icon(gtk_icon_theme_get_default(), - icon_name, - w, - GTK_ICON_LOOKUP_FORCE_SIZE, -@@ -1056,7 +1060,7 @@ xfce_notify_window_set_icon_name(XfceNotifyWindow *window, - } - - if(!icon_set) { -- gtk_image_set_from_pixbuf(GTK_IMAGE(window->icon), NULL); -+ gtk_image_clear(GTK_IMAGE(window->icon)); - gtk_widget_hide(window->icon_box); - } - --- -cgit v0.8.3.4 diff --git a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.2.0-r1.ebuild b/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.2.0-r1.ebuild deleted file mode 100644 index 867c42c6eb6e..000000000000 --- a/xfce-extra/xfce4-notifyd/xfce4-notifyd-0.2.0-r1.ebuild +++ /dev/null @@ -1,39 +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-notifyd/xfce4-notifyd-0.2.0-r1.ebuild,v 1.2 2011/01/16 18:56:44 ssuominen Exp $ - -EAPI=3 -inherit xfconf - -DESCRIPTION="Xfce's notification daemon" -HOMEPAGE="http://goodies.xfce.org/projects/applications/xfce4-notifyd" -SRC_URI="mirror://xfce/src/apps/${PN}/0.2/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug" - -RDEPEND=">=xfce-base/libxfce4util-4.8 - >=xfce-base/libxfce4ui-4.8 - >=xfce-base/xfconf-4.8 - >=x11-libs/gtk+-2.14:2 - >=sys-apps/dbus-1.4.1 - >=dev-libs/dbus-glib-0.88 - !<x11-libs/libnotify-0.4.5 - !x11-misc/notification-daemon" -DEPEND="${RDEPEND} - dev-util/pkgconfig - dev-util/intltool - sys-devel/gettext" - -pkg_setup() { - PATCHES=( "${FILESDIR}"/${P}-load_icon_with_path.patch ) - - XFCONF=( - --disable-dependency-tracking - $(xfconf_use_debug) - ) - - DOCS="AUTHORS NEWS README TODO" -} |