# Copyright 1999-2006 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.6 2006/09/06 03:03:24 metalgod Exp $ IUSE="gtk tcltk usb wacom" inherit eutils autotools linux-mod 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 ) virtual/x11 ) gtk? ( >=x11-libs/gtk+-2 ) tcltk? ( dev-lang/tcl dev-lang/tk ) sys-libs/ncurses" DEPEND="${RDEPEND} dev-util/pkgconfig usb? ( >=sys-kernel/linux-headers-2.6 )" S=${WORKDIR}/${P/_p/-} wacom_check() { if use wacom ; then ebegin "Checking for wacom module" linux_chkconfig_module USB_WACOM eend $? if [[ $? -ne 0 ]] || ! [ -f "/lib/modules/${KV}/kernel/drivers/usb/input/wacom.ko" ]; then eerror "You need to have your kernel compiled with wacom as module" eerror "to let linuxwacom overwrite it." eerror "Enable it in the kernel, found at:" eerror eerror " Device Drivers" eerror " USB support" eerror " Wacom Intuos/Graphire tablet support" eerror eerror "(in the same page is suggested to include as modules also:" eerror "EHCI , OHCI , USB Human Interface Device+HID input layer)" eerror eerror "Then recompile kernel.Elsewhere, remove wacom flag,please." die "Wacom not compiled in kernel as a module!" fi fi } pkg_setup() { linux-mod_pkg_setup # echo "kernel version is ${KV} , name is ${KV%%-*}" wacom_check } src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/linuxwacom-0.7.5-2.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 if use wacom; then myconf="${myconf} --enable-wacom" myconf="${myconf} --with-kernel=${KV_OUT_DIR}" fi econf ${myconf} \ `use_with tcltk tcl` \ `use_with tcltk 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." if use wacom; then insinto /lib/modules/${KV}/kernel/drivers/usb/input/ doins "${S}/src/${KV%%-*}/wacom.ko" cd ../.. fi dohtml -r docs/* dodoc AUTHORS ChangeLog NEWS README }