blob: 7ab6f71c876e58cacb1e57c80de33e8eeaec6f28 (
plain)
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
56
57
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-drivers/synaptics/synaptics-0.14.5-r1.ebuild,v 1.3 2006/10/13 23:15:48 joshuabaergen Exp $
inherit toolchain-funcs eutils
IUSE="dlloader"
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"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ~ppc ~ppc64 x86"
RDEPEND="|| ( x11-libs/libXext virtual/x11 )"
DEPEND="${RDEPEND}
|| ( x11-base/xorg-server virtual/x11 )
>=sys-apps/sed-4"
src_unpack() {
unpack ${A} ; cd ${S}
if use dlloader || has_version ">=x11-base/xorg-x11-6.8.99.15" || has_version ">=x11-base/xorg-server-0.99"
then
epatch ${FILESDIR}/${P}-makefile-fpic.patch
fi
# Compilation fix for xorg-7.1
epatch ${FILESDIR}/${P}-xorg-7.1-compile-fix.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
}
src_install() {
make \
DESTDIR=${D} \
PREFIX=/usr \
MANDIR=${D}/usr/share \
install || die
dodoc script/usbmouse script/usbhid alps.patch trouble-shooting.txt
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
}
|