summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-drivers/xf86-input-mouse')
-rw-r--r--x11-drivers/xf86-input-mouse/Manifest2
-rw-r--r--x11-drivers/xf86-input-mouse/files/xf86-input-mouse-1.8.1-gcc46-workaround.patch16
-rw-r--r--x11-drivers/xf86-input-mouse/xf86-input-mouse-1.8.1.ebuild18
-rw-r--r--x11-drivers/xf86-input-mouse/xf86-input-mouse-1.9.1.ebuild13
4 files changed, 0 insertions, 49 deletions
diff --git a/x11-drivers/xf86-input-mouse/Manifest b/x11-drivers/xf86-input-mouse/Manifest
index c807935ae4dd..c1a3f71ad299 100644
--- a/x11-drivers/xf86-input-mouse/Manifest
+++ b/x11-drivers/xf86-input-mouse/Manifest
@@ -1,3 +1 @@
-DIST xf86-input-mouse-1.8.1.tar.bz2 352034 SHA256 f5b97aac9aab8fa8b933e960631441ae23b18681c8bf3d5007c00da838f9c9c8 SHA512 22f0a43c2353e76aaee7d20c627e97c9daa77b2a33a03788f2c0c94aed9af8009345555b0afd856dff528f668213b51303cd653f95e98e06fc3ea6f194138f01 WHIRLPOOL 9238a48630f3d26e17603a17627abe58fbae758d0e2277b96122b2a04720d8356e71e9fdba31a59f63b43d14f7faf5dbf0351d12283ec1a463309c9526ba4907
-DIST xf86-input-mouse-1.9.1.tar.bz2 348244 SHA256 3485d375779c08406f0789feedde15933dc703158a086ddac638598f479fc5ce SHA512 0b9647c21b949fe5b357de29028d823b5d385ebb5c59fddd53a11fceae3bf65e25bb988ac05d833abe7e071f6813d5a4dc4cdf61d240fc8a4f591866a86b5926 WHIRLPOOL 2710dbfee0e9b389d8e83b28e569270951fbc26e91d71dddd9c1bdcfe2281c67e0e6e3fb4fdca3abdaf7610ba96e40cafd74ab2137ce45dcb7c876f7a0053424
DIST xf86-input-mouse-1.9.2.tar.bz2 377685 SHA256 f425d5b05c6ab412a27e0a1106bb83f9e2662b307210abbe48270892387f4b2f SHA512 30fdc4f699d434e2fb4a9f8d2f4f980538d646a6e4d2d572737fc5498c0bce0fb1ba080173ea0aa3480f574dde3f58d5a7ac837afdb29640ccb092b3f18ff209 WHIRLPOOL fb51455fa5c972dbc6665eb195b9448457398c68ede0f22977f582bf32ff7b1516b786110dbbfe1ebd7c3b2249eba32cc32ab5481be12fcaac18947ca692ec43
diff --git a/x11-drivers/xf86-input-mouse/files/xf86-input-mouse-1.8.1-gcc46-workaround.patch b/x11-drivers/xf86-input-mouse/files/xf86-input-mouse-1.8.1-gcc46-workaround.patch
deleted file mode 100644
index 68670321ced1..000000000000
--- a/x11-drivers/xf86-input-mouse/files/xf86-input-mouse-1.8.1-gcc46-workaround.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -Nur xf86-input-mouse-1.8.1.orig/src/bsd_mouse.c xf86-input-mouse-1.8.1/src/bsd_mouse.c
---- xf86-input-mouse-1.8.1.orig/src/bsd_mouse.c 2012-05-28 09:01:45.000000000 +0900
-+++ xf86-input-mouse-1.8.1/src/bsd_mouse.c 2012-09-20 22:27:36.167583000 +0900
-@@ -139,10 +139,10 @@
- {
- int i;
-
-- for (i = 0; internalNames[i]; i++)
-+ for (i = 0; i < (sizeof(internalNames) / sizeof(internalNames[0])) - 1; i++)
- if (xf86NameCmp(protocol, internalNames[i]) == 0)
- return TRUE;
-- for (i = 0; miscNames[i]; i++)
-+ for (i = 0; i < (sizeof(miscNames) / sizeof (miscNames[0])) - 1; i++)
- if (xf86NameCmp(protocol, miscNames[i]) == 0)
- return TRUE;
- return FALSE;
diff --git a/x11-drivers/xf86-input-mouse/xf86-input-mouse-1.8.1.ebuild b/x11-drivers/xf86-input-mouse/xf86-input-mouse-1.8.1.ebuild
deleted file mode 100644
index 645bb107e53f..000000000000
--- a/x11-drivers/xf86-input-mouse/xf86-input-mouse-1.8.1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit xorg-2
-
-DESCRIPTION="X.Org driver for mouse input devices"
-
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND=">=x11-base/xorg-server-1.7"
-DEPEND="${RDEPEND}"
-
-# To workaround gcc-4.6 bug 435640
-PATCHES=(
- "${FILESDIR}"/${P}-gcc46-workaround.patch
-)
diff --git a/x11-drivers/xf86-input-mouse/xf86-input-mouse-1.9.1.ebuild b/x11-drivers/xf86-input-mouse/xf86-input-mouse-1.9.1.ebuild
deleted file mode 100644
index 0044061b8883..000000000000
--- a/x11-drivers/xf86-input-mouse/xf86-input-mouse-1.9.1.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit xorg-2
-
-DESCRIPTION="X.Org driver for mouse input devices"
-
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE=""
-
-RDEPEND=">=x11-base/xorg-server-1.7"
-DEPEND="${RDEPEND}"