blob: c68fdc794e981b6e962383d938352f6e365c892c (
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
58
59
60
61
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-drivers/linuxwacom/linuxwacom-0.7.4_p3.ebuild,v 1.11 2008/02/12 22:29:19 ikelos Exp $
IUSE="gtk tcl tk usb"
inherit eutils autotools
DESCRIPTION="Input driver for Wacom tablets and drawing devices"
HOMEPAGE="http://linuxwacom.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P/_p/-}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
RDEPEND="x11-proto/inputproto
x11-base/xorg-server
gtk? ( >=x11-libs/gtk+-2 )
tcl? ( dev-lang/tcl )
tk? ( dev-lang/tk )
sys-libs/ncurses"
DEPEND="${RDEPEND}
dev-util/pkgconfig
usb? ( >=sys-kernel/linux-headers-2.6 )"
S=${WORKDIR}/${P/_p/-}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/linuxwacom-xorg71.diff
# Fix multilib-strict error for Tcl/Tk library install
sed -i -e "s:WCM_EXECDIR/lib:WCM_EXECDIR/$(get_libdir):" configure.in
eautoreconf
}
src_compile() {
if use gtk; then
myconf="--with-gtk=2.0"
else
myconf="--with-gtk=no"
fi
econf ${myconf} \
`use_with tcl` \
`use_with tk` \
--enable-wacomdrv --enable-wacdump \
--enable-xsetwacom --enable-dlloader || die
unset ARCH
emake || die "build failed."
}
src_install() {
emake DESTDIR="${D}" install || die "Install failed."
dohtml -r docs/*
dodoc AUTHORS ChangeLog NEWS README
}
|