diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-12-16 21:52:18 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-12-16 21:52:18 +0000 |
commit | f443e45c99b0ebe4c6f761da62f556abc58082ba (patch) | |
tree | 597234573bc5df323e67b964036869bca47070af /x11-drivers/synaptics | |
parent | ok, this should finally fix those bugs -- thanks to: Pierre Poissinger for th... (diff) | |
download | gentoo-2-f443e45c99b0ebe4c6f761da62f556abc58082ba.tar.gz gentoo-2-f443e45c99b0ebe4c6f761da62f556abc58082ba.tar.bz2 gentoo-2-f443e45c99b0ebe4c6f761da62f556abc58082ba.zip |
Remove cruft version
(Portage version: 2.0.53)
Diffstat (limited to 'x11-drivers/synaptics')
3 files changed, 0 insertions, 88 deletions
diff --git a/x11-drivers/synaptics/files/digest-synaptics-0.14.4-r1 b/x11-drivers/synaptics/files/digest-synaptics-0.14.4-r1 deleted file mode 100644 index e4c6cde43e5b..000000000000 --- a/x11-drivers/synaptics/files/digest-synaptics-0.14.4-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 ae9aef7a146346fbfc7edfdd63cdd273 synaptics-0.14.4.tar.bz2 125524 diff --git a/x11-drivers/synaptics/files/synaptics-0.14.4-r1-makefile.patch b/x11-drivers/synaptics/files/synaptics-0.14.4-r1-makefile.patch deleted file mode 100644 index b6f2137f098a..000000000000 --- a/x11-drivers/synaptics/files/synaptics-0.14.4-r1-makefile.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- Makefile.orig 2005-12-15 16:07:36.000000000 -0500 -+++ Makefile 2005-12-15 16:08:45.000000000 -0500 -@@ -7,10 +7,10 @@ - # Define the TOP variable to build using include files from a local source tree. - #TOP = /usr/src/redhat/BUILD/XFree86-4.3.0/xc - --INSTALLED_X = $(DESTDIR)/usr/X11R6 -+INSTALLED_X = $(DESTDIR)/usr - LOCAL_X = Xincludes/usr/X11R6 --BINDIR = $(DESTDIR)/usr/local/bin --MANDIR = $(DESTDIR)/usr/local/man -+BINDIR = $(DESTDIR)/usr/bin -+MANDIR = $(DESTDIR)/usr/share/man - - ifeq ($(ARCH),) - ARCH = $(shell /bin/arch) -@@ -62,9 +62,9 @@ - - CCOPTIONS := -pedantic -Wall -Wpointer-arith - CCOPTIONS += $(call check_gcc,-fno-merge-constants,) --CCOPTIONS += $(call check_gcc,-fno-pic,) -+CCOPTIONS += $(call check_gcc,) - CDEBUGFLAGS = -O2 --CFLAGS = $(CDEBUGFLAGS) $(CCOPTIONS) $(ALLDEFINES) -DVERSION="\"$(VERSION)\"" -DVERSION_ID="$(VERSION_ID)" -+CFLAGS = $(CDEBUGFLAGS) $(CCOPTIONS) $(ALLDEFINES) -DVERSION="\"$(VERSION)\"" -DVERSION_ID="$(VERSION_ID)" -fPIC - CFLAGSCLIENT = $(CDEBUGFLAGS) $(CCOPTIONS) -DVERSION="\"$(VERSION)\"" -DVERSION_ID="$(VERSION_ID)" -I$(X_INCLUDES_ROOT)/include - - CC = gcc diff --git a/x11-drivers/synaptics/synaptics-0.14.4-r1.ebuild b/x11-drivers/synaptics/synaptics-0.14.4-r1.ebuild deleted file mode 100644 index 346e8faaba61..000000000000 --- a/x11-drivers/synaptics/synaptics-0.14.4-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/synaptics/synaptics-0.14.4-r1.ebuild,v 1.2 2005/12/16 19:15:26 seemant Exp $ - -inherit toolchain-funcs eutils - -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="~amd64 ~ppc ~x86" -IUSE="dlloader" -RDEPEND="|| ( x11-libs/libXext virtual/x11 )" -DEPEND="${RDEPEND} - || ( x11-base/xorg-server virtual/x11 ) - >=sys-apps/sed-4" - -src_unpack() { - unpack ${A} ; cd ${S} - epatch ${FILESDIR}/${PF}-makefile.patch - - # Switch up the CC and CFLAGS stuff. - sed -i \ - -e "s:CC = gcc:CC = $(tc-getCC):g" \ - -e "s:CDEBUGFLAGS = -O2:CDEBUGFLAGS = ${CFLAGS}:g" \ - ${S}/Makefile -} - -src_compile() { - emake || die - if use dlloader || has_version ">=x11-base/xorg-x11-6.8.99.15" - then - $(tc-getCC) -shared -nostdlib -o synaptics_drv.so synaptics_drv.o -Bstatic -lgcc - fi -} - -src_install() { - make DESTDIR=${D} install || die - if use dlloader || has_version ">=x11-base/xorg-x11-6.8.99.15" - then - if has_version ">=x11-base/xorg-x11-7.0" || has_version ">=x11-base/xorg-server-0.99" - then - exeinto /usr/$(get_libdir)/xorg/modules/input - doexe synaptics_drv.so - else - exeinto /usr/$(get_libdir)/modules/input - doexe synaptics_drv.so - fi - rm ${D}/usr/$(get_libdir)/modules/input/synaptics_drv.o - fi - - dodoc script/usbmouse alps.patch - dodoc COMPATIBILITY FILES INSTALL* LICENSE NEWS TODO README* - - # Stupid new daemon, didn't work for me because of shm issues - newinitd ${FILESDIR}/rc.init syndaemon - newconfd ${FILESDIR}/rc.conf syndaemon -} |