1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/synaptics/synaptics-0.14.3.ebuild,v 1.4 2005/07/25 18:09:09 battousai 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="~x86 ~amd64"
IUSE="dlloader"
RDEPEND="virtual/x11"
DEPEND=">=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-0.14.x-gcc4-the-sentinels-have-attacked.patch
# Put stuff into /usr, also switch up the CC and CFLAGS stuff.
sed -i -e "s:BINDIR = \\\$(DESTDIR)/usr/local/bin:BINDIR = ${D}/usr/bin:g" ${S}/Makefile
sed -i -e "s:CC = gcc:CC = $(tc-getCC):g" ${S}/Makefile
sed -i -e "s:CDEBUGFLAGS = -O2:CDEBUGFLAGS = ${CFLAGS}:g" ${S}/Makefile
sed -i -e "s:MANDIR = .*:MANDIR = \\\$(DESTDIR)/usr/man/man1:" ${S}/Makefile
sed -i -e "s:INSTALLED_X = .*:INSTALLED_X = \\\$(DESTDIR)/usr:" ${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() {
dodir /usr/$(get_libdir)/modules/input
# Yes, they got the DESTDIR stuff going. And there was much rejoicing.
make DESTDIR=${D} install || die
if use dlloader || has_version ">=x11-base/xorg-x11-6.8.99.15"
then
exeinto /usr/$(get_libdir)/modules/input
doexe synaptics_drv.so
rm ${D}/usr/$(get_libdir)/modules/input/synaptics_drv.o
fi
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
}
|