diff options
author | Bryan Stine <battousai@gentoo.org> | 2004-05-10 23:21:51 +0000 |
---|---|---|
committer | Bryan Stine <battousai@gentoo.org> | 2004-05-10 23:21:51 +0000 |
commit | c3d4036d70cf21dc4db4594b40c262abddadca81 (patch) | |
tree | 0aeb095d9c76e9b7b9c2fcfc7608fa4ca0e1bee2 /x11-misc | |
parent | Marked stable 0.74 and 0.75. Version bumped. Closes #50011. (Manifest recommit) (diff) | |
download | gentoo-2-c3d4036d70cf21dc4db4594b40c262abddadca81.tar.gz gentoo-2-c3d4036d70cf21dc4db4594b40c262abddadca81.tar.bz2 gentoo-2-c3d4036d70cf21dc4db4594b40c262abddadca81.zip |
Version bump.
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/synaptics/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/synaptics/files/digest-synaptics-0.13.2 | 1 | ||||
-rw-r--r-- | x11-misc/synaptics/synaptics-0.13.2.ebuild | 39 |
3 files changed, 47 insertions, 1 deletions
diff --git a/x11-misc/synaptics/ChangeLog b/x11-misc/synaptics/ChangeLog index dee6ef30caea..ecfd6819fd1f 100644 --- a/x11-misc/synaptics/ChangeLog +++ b/x11-misc/synaptics/ChangeLog @@ -1,6 +1,12 @@ # 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.14 2004/04/07 21:02:47 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/synaptics/ChangeLog,v 1.15 2004/05/10 23:21:51 battousai Exp $ + +*synaptics-0.13.2 (10 May 2004) + + 10 May 2004; Bryan Stine <battousai@gentoo.org>; synaptics-0.13.2.ebuild: + Version bump. Upstream made quite a few cleanups, some bug fixes and a few new + features. 07 Apr 2004; Donnie Berkholz <spyderous@gentoo.org>; synaptics-0.12.5.ebuild: diff --git a/x11-misc/synaptics/files/digest-synaptics-0.13.2 b/x11-misc/synaptics/files/digest-synaptics-0.13.2 new file mode 100644 index 000000000000..fc1063936223 --- /dev/null +++ b/x11-misc/synaptics/files/digest-synaptics-0.13.2 @@ -0,0 +1 @@ +MD5 adffa678aba1977854e2c6a1ab5172cd synaptics-0.13.2.tar.bz2 112473 diff --git a/x11-misc/synaptics/synaptics-0.13.2.ebuild b/x11-misc/synaptics/synaptics-0.13.2.ebuild new file mode 100644 index 000000000000..47e47001f4b0 --- /dev/null +++ b/x11-misc/synaptics/synaptics-0.13.2.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.13.2.ebuild,v 1.1 2004/05/10 23:21:51 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-r6 x11-base/xorg-x11 )" + +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 +} |