summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Stine <battousai@gentoo.org>2004-04-01 05:02:30 +0000
committerBryan Stine <battousai@gentoo.org>2004-04-01 05:02:30 +0000
commit7d403773e5d5a3be4fc73ef378121fb3c8dc698b (patch)
treef1edba8ef0ec78949be30ba96c439ef70b3bec0f /x11-misc/synaptics
parentbacking out amd64 nls changes as they are no longer necessary. go team distri... (diff)
downloadgentoo-2-7d403773e5d5a3be4fc73ef378121fb3c8dc698b.tar.gz
gentoo-2-7d403773e5d5a3be4fc73ef378121fb3c8dc698b.tar.bz2
gentoo-2-7d403773e5d5a3be4fc73ef378121fb3c8dc698b.zip
Version bump
Diffstat (limited to 'x11-misc/synaptics')
-rw-r--r--x11-misc/synaptics/ChangeLog7
-rw-r--r--x11-misc/synaptics/files/digest-synaptics-0.12.51
-rw-r--r--x11-misc/synaptics/synaptics-0.12.5.ebuild39
3 files changed, 46 insertions, 1 deletions
diff --git a/x11-misc/synaptics/ChangeLog b/x11-misc/synaptics/ChangeLog
index 6ce0d09e4a49..a12d6656a222 100644
--- a/x11-misc/synaptics/ChangeLog
+++ b/x11-misc/synaptics/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-misc/synaptics
# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/synaptics/ChangeLog,v 1.11 2004/02/23 08:33:11 battousai Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/synaptics/ChangeLog,v 1.12 2004/04/01 05:02:27 battousai Exp $
+
+*synaptics-0.12.5 (31 Mar 2004)
+
+ 31 Mar 2004; Bryan Stine <battousai@gentoo.org>; synaptics-0.12.5.ebuild:
+ Version bumpity.
23 Feb 2004; Bryan Stine <battousai@gentoo.org>; synaptics-0.12.4.ebuild:
Oops. Fixed my stupid RDEPEND mistake.
diff --git a/x11-misc/synaptics/files/digest-synaptics-0.12.5 b/x11-misc/synaptics/files/digest-synaptics-0.12.5
new file mode 100644
index 000000000000..695d4b8cd3ef
--- /dev/null
+++ b/x11-misc/synaptics/files/digest-synaptics-0.12.5
@@ -0,0 +1 @@
+MD5 52e2a6436f7e6d7ebb0c8068027c7c3f synaptics-0.12.5.tar.bz2 105847
diff --git a/x11-misc/synaptics/synaptics-0.12.5.ebuild b/x11-misc/synaptics/synaptics-0.12.5.ebuild
new file mode 100644
index 000000000000..14d5acd45026
--- /dev/null
+++ b/x11-misc/synaptics/synaptics-0.12.5.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/synaptics/synaptics-0.12.5.ebuild,v 1.1 2004/04/01 05:02:27 battousai Exp $
+
+# This ebuild overwrites synaptics files installed by <= xfree-4.3.0-r3
+# and xfree-4.3.99.14 >= X >= xfree-4.3.99.8.
+
+DESCRIPTION="Driver for Synaptics touchpads"
+HOMEPAGE="http://w1.894.telia.com/~u89404340/touchpad/"
+SRC_URI="http://w1.894.telia.com/~u89404340/touchpad/files/${P}.tar.bz2"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+RDEPEND=">=x11-base/xfree-4.3.0-r4"
+
+src_unpack() {
+ unpack ${A}
+
+ # Put stuff into /usr/X11R6, also switch up the CC and CFLAGS stuff.
+ sed -i -e "s:BINDIR = \\\$(DESTDIR)/usr/local/bin:BINDIR = ${D}/usr/X11R6/bin:g" ${S}/Makefile
+ sed -i -e "s:CC = gcc:CC = ${CC}:g" ${S}/Makefile
+ sed -i -e "s:CDEBUGFLAGS = -O2:CDEBUGFLAGS = ${CFLAGS}:g" ${S}/Makefile
+}
+
+src_compile() {
+ emake || die
+}
+
+src_install() {
+ dodir /usr/X11R6/{bin,lib/modules/input}
+
+ # Yes, they got the DESTDIR stuff going. And there was much rejoicing.
+ make DESTDIR=${D} install || die
+ dodoc {script/usbmouse,alps.patch,COMPATIBILITY,FILES,INSTALL{,.DE},LICENSE,NEWS,TODO,README{,.alps}}
+ # Stupid new daemon, didn't work for me because of shm issues
+ exeinto /etc/init.d && newexe ${FILESDIR}/rc.init syndaemon
+ insinto /etc/conf.d && newins ${FILESDIR}/rc.conf syndaemon
+}