diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-07-22 02:55:16 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-07-22 02:55:16 +0000 |
commit | dfd303ab29d90536c33293799f700b066b7ac676 (patch) | |
tree | fdedb7f5b85ee3eb78136215e3c2a876fb083c0d /x11-drivers | |
parent | Remove old. (diff) | |
download | gentoo-2-dfd303ab29d90536c33293799f700b066b7ac676.tar.gz gentoo-2-dfd303ab29d90536c33293799f700b066b7ac676.tar.bz2 gentoo-2-dfd303ab29d90536c33293799f700b066b7ac676.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-input-fpit/ChangeLog | 9 | ||||
-rw-r--r-- | x11-drivers/xf86-input-fpit/files/xf86-input-fpit-1.3.0-abi.patch | 95 | ||||
-rw-r--r-- | x11-drivers/xf86-input-fpit/xf86-input-fpit-1.3.0-r1.ebuild | 21 |
3 files changed, 6 insertions, 119 deletions
diff --git a/x11-drivers/xf86-input-fpit/ChangeLog b/x11-drivers/xf86-input-fpit/ChangeLog index 1b294f0d7895..1d81260075ed 100644 --- a/x11-drivers/xf86-input-fpit/ChangeLog +++ b/x11-drivers/xf86-input-fpit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-drivers/xf86-input-fpit -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-fpit/ChangeLog,v 1.73 2012/05/16 00:24:52 aballier Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-fpit/ChangeLog,v 1.74 2015/07/22 02:55:16 mrueg Exp $ + + 22 Jul 2015; Manuel Rüger <mrueg@gentoo.org> + -files/xf86-input-fpit-1.3.0-abi.patch, -xf86-input-fpit-1.3.0-r1.ebuild: + Remove old. 16 May 2012; Alexis Ballier <aballier@gentoo.org> xf86-input-fpit-1.4.0.ebuild: @@ -310,4 +314,3 @@ 08 Aug 2005; Donnie Berkholz <dberkholz@gentoo.org>; +xf86-input-fpit-1.0.0.ebuild: Initial commit for modular X. - diff --git a/x11-drivers/xf86-input-fpit/files/xf86-input-fpit-1.3.0-abi.patch b/x11-drivers/xf86-input-fpit/files/xf86-input-fpit-1.3.0-abi.patch deleted file mode 100644 index a9864e20ab12..000000000000 --- a/x11-drivers/xf86-input-fpit/files/xf86-input-fpit-1.3.0-abi.patch +++ /dev/null @@ -1,95 +0,0 @@ -From 7d203627e7e3e7a6f8d0e847ed650b0b89760c09 Mon Sep 17 00:00:00 2001 -From: Peter Hutterer <peter.hutterer@who-t.net> -Date: Fri, 17 Jul 2009 14:38:31 +1000 -Subject: [PATCH] Cope with XINPUT ABI 7. - ---- - src/xf86Fpit.c | 40 +++++++++++++++++++++++++++++++++++----- - 1 files changed, 35 insertions(+), 5 deletions(-) - -diff --git a/src/xf86Fpit.c b/src/xf86Fpit.c -index 528ebb9..f40c6a9 100644 ---- a/src/xf86Fpit.c -+++ b/src/xf86Fpit.c -@@ -188,6 +188,9 @@ static void xf86FpitSetUpAxes(DeviceIntPtr dev, FpitPrivatePtr priv) - * screen to fit one meter. - */ - int quarter_turns; -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ Atom axis_labels[2] = { 0, 0 }; -+#endif - - priv->screen_width = screenInfo.screens[priv->screen_no]->width; - priv->screen_height = screenInfo.screens[priv->screen_no]->height; -@@ -212,14 +215,30 @@ static void xf86FpitSetUpAxes(DeviceIntPtr dev, FpitPrivatePtr priv) - } - - if (priv->fpitTotalOrientation & FPIT_THEN_SWAP_XY) { -- InitValuatorAxisStruct(dev, 1, priv->fpitMinX, priv->fpitMaxX, 9500, 0 /* min_res */ , -+ InitValuatorAxisStruct(dev, 1, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels[1], -+#endif -+ priv->fpitMinX, priv->fpitMaxX, 9500, 0 /* min_res */ , - 9500 /* max_res */ ); -- InitValuatorAxisStruct(dev, 0, priv->fpitMinY, priv->fpitMaxY, 10500, 0 /* min_res */ , -+ InitValuatorAxisStruct(dev, 0, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels[0], -+#endif -+ priv->fpitMinY, priv->fpitMaxY, 10500, 0 /* min_res */ , - 10500 /* max_res */ ); - } else { -- InitValuatorAxisStruct(dev, 0, priv->fpitMinX, priv->fpitMaxX, 9500, 0 /* min_res */ , -+ InitValuatorAxisStruct(dev, 0, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels[0], -+#endif -+ priv->fpitMinY, priv->fpitMaxY, 9500, 0 /* min_res */ , - 9500 /* max_res */ ); -- InitValuatorAxisStruct(dev, 1, priv->fpitMinY, priv->fpitMaxY, 10500, 0 /* min_res */ , -+ InitValuatorAxisStruct(dev, 1, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels[1], -+#endif -+ priv->fpitMinY, priv->fpitMaxY, 10500, 0 /* min_res */ , - 10500 /* max_res */ ); - } - } -@@ -408,6 +427,10 @@ static Bool xf86FpitControl(DeviceIntPtr dev, int mode) - unsigned char map[] = { - 0, 1, 2, 3 /* DMC: changed this so we can use all three buttons */ - }; -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ Atom btn_labels[3] = { 0 }; -+ Atom axis_labels[2] = { 0, 0 }; -+#endif - - - switch (mode) { -@@ -420,7 +443,11 @@ static Bool xf86FpitControl(DeviceIntPtr dev, int mode) - /* - * Device reports button press for up to 3 buttons. - */ -- if (InitButtonClassDeviceStruct(dev, 3, map) == FALSE) { -+ if (InitButtonClassDeviceStruct(dev, 3, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ btn_labels, -+#endif -+ map) == FALSE) { - ErrorF("Unable to allocate Fpit touchscreen ButtonClassDeviceStruct\n"); - return !Success; - } -@@ -435,6 +462,9 @@ static Bool xf86FpitControl(DeviceIntPtr dev, int mode) - } - - if (InitValuatorClassDeviceStruct(dev, 2, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels, -+#endif - #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 - xf86GetMotionEvents, - #endif --- -1.6.3.rc1.2.g0164.dirty - diff --git a/x11-drivers/xf86-input-fpit/xf86-input-fpit-1.3.0-r1.ebuild b/x11-drivers/xf86-input-fpit/xf86-input-fpit-1.3.0-r1.ebuild deleted file mode 100644 index a05fc5b30eeb..000000000000 --- a/x11-drivers/xf86-input-fpit/xf86-input-fpit-1.3.0-r1.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-fpit/xf86-input-fpit-1.3.0-r1.ebuild,v 1.7 2011/02/14 23:56:24 xarthisius Exp $ - -# Must be before x-modular eclass is inherited -#SNAPSHOT="yes" -XDPVER=4 - -inherit x-modular - -DESCRIPTION="Fujitsu Stylistic input driver" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="" - -RDEPEND=">=x11-base/xorg-server-1.0.99" -DEPEND="${RDEPEND} - x11-proto/inputproto - x11-proto/randrproto - x11-proto/xproto" - -PATCHES=( "${FILESDIR}/${P}-abi.patch" ) |