diff options
author | Christoph Mende <angelos@gentoo.org> | 2008-12-22 17:05:26 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2008-12-22 17:05:26 +0000 |
commit | f626300d306fd3038e9a201eb741f5aada7a382c (patch) | |
tree | 836deb7ce7daea5490a5c91278f0386d79664972 /xfce-base/xfce-mcs-plugins | |
parent | Removed old (diff) | |
download | gentoo-2-f626300d306fd3038e9a201eb741f5aada7a382c.tar.gz gentoo-2-f626300d306fd3038e9a201eb741f5aada7a382c.tar.bz2 gentoo-2-f626300d306fd3038e9a201eb741f5aada7a382c.zip |
Removed old
(Portage version: 2.2_rc17/cvs/Linux 2.6.28-rc9 x86_64)
Diffstat (limited to 'xfce-base/xfce-mcs-plugins')
3 files changed, 6 insertions, 74 deletions
diff --git a/xfce-base/xfce-mcs-plugins/ChangeLog b/xfce-base/xfce-mcs-plugins/ChangeLog index 2d73764d083f..7f03a8b75185 100644 --- a/xfce-base/xfce-mcs-plugins/ChangeLog +++ b/xfce-base/xfce-mcs-plugins/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for xfce-base/xfce-mcs-plugins # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-mcs-plugins/ChangeLog,v 1.127 2008/12/15 04:58:47 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-mcs-plugins/ChangeLog,v 1.128 2008/12/22 17:05:26 angelos Exp $ + + 22 Dec 2008; Christoph Mende <angelos@gentoo.org> + -files/xfce-mcs-plugins-4.4.2-fix-mouse-plugin.patch, + -xfce-mcs-plugins-4.4.2-r1.ebuild: + Removed old 15 Dec 2008; Jeroen Roovers <jer@gentoo.org> xfce-mcs-plugins-4.4.3.ebuild: diff --git a/xfce-base/xfce-mcs-plugins/files/xfce-mcs-plugins-4.4.2-fix-mouse-plugin.patch b/xfce-base/xfce-mcs-plugins/files/xfce-mcs-plugins-4.4.2-fix-mouse-plugin.patch deleted file mode 100644 index 53de04b97f73..000000000000 --- a/xfce-base/xfce-mcs-plugins/files/xfce-mcs-plugins-4.4.2-fix-mouse-plugin.patch +++ /dev/null @@ -1,30 +0,0 @@ -Index: plugins/mouse_plugin/mouse_plugin.c -=================================================================== ---- plugins/mouse_plugin/mouse_plugin.c (revision 26490) -+++ plugins/mouse_plugin/mouse_plugin.c (working copy) -@@ -174,7 +174,7 @@ set_xinput_mouse_values (gboolean right_ - unsigned char *buttons; - gint n_buttons, n_devices, i; - gint idx_1 = 0, idx_3 = 1; -- gsize buttons_capacity = 16; -+ gsize buttons_capacity = DEFAULT_PTR_MAP_SIZE; - - device_info = XListInputDevices (GDK_DISPLAY (), &n_devices); - -@@ -204,11 +204,12 @@ set_xinput_mouse_values (gboolean right_ - continue; - } - -- n_buttons = XGetDeviceButtonMapping (GDK_DISPLAY (), device, buttons, DEFAULT_PTR_MAP_SIZE); -- if (n_buttons > DEFAULT_PTR_MAP_SIZE) -+ n_buttons = XGetDeviceButtonMapping (GDK_DISPLAY (), device, buttons, buttons_capacity); -+ if (n_buttons > buttons_capacity) - { -- buttons = g_alloca (n_buttons); -- n_buttons = XGetDeviceButtonMapping (GDK_DISPLAY (), device, buttons, n_buttons); -+ buttons = g_realloc (buttons, n_buttons); -+ buttons_capacity = n_buttons; -+ n_buttons = XGetDeviceButtonMapping (GDK_DISPLAY (), device, buttons, buttons_capacity); - } - - for (i = 0; i < n_buttons; i++) diff --git a/xfce-base/xfce-mcs-plugins/xfce-mcs-plugins-4.4.2-r1.ebuild b/xfce-base/xfce-mcs-plugins/xfce-mcs-plugins-4.4.2-r1.ebuild deleted file mode 100644 index af4863679df4..000000000000 --- a/xfce-base/xfce-mcs-plugins/xfce-mcs-plugins-4.4.2-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-mcs-plugins/xfce-mcs-plugins-4.4.2-r1.ebuild,v 1.7 2008/07/28 15:35:11 drac Exp $ - -inherit eutils xfce44 - -XFCE_VERSION=4.4.2 -xfce44 - -DESCRIPTION="Setting plugins" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="debug" - -RDEPEND="x11-libs/libX11 - x11-libs/libXcursor - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libICE - x11-libs/libSM - x11-libs/libXext - x11-libs/libXxf86misc - x11-libs/libXxf86vm - >=dev-libs/glib-2.6 - >=x11-libs/gtk+-2.6 - >=xfce-base/libxfcegui4-${XFCE_MASTER_VERSION} - >=xfce-base/xfce-mcs-manager-${XFCE_MASTER_VERSION} - x11-apps/xrdb" -DEPEND="${RDEPEND} - dev-util/pkgconfig - sys-devel/gettext - dev-util/intltool" - -XFCE_CONFIG="${XFCE_CONFIG} --enable-xf86misc --enable-xkb --enable-randr --enable-xf86vm" - -DOCS="AUTHORS ChangeLog NEWS README" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-fix-mouse-plugin.patch -} - -xfce44_core_package |