# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit linux-info x-modular DESCRIPTION="Driver for Wacom tablets and drawing devices" LICENSE="GPL-2" EGIT_REPO_URI="git://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}" [[ ${PV} != 9999* ]] && \ SRC_URI="http://sourceforge.net/projects/linuxwacom/files/${PN}/${P}.tar.bz2" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="hal debug" COMMON_DEPEND=">=x11-base/xorg-server-1.6 hal? ( sys-apps/hal )" RDEPEND="${COMMON_DEPEND} !x11-drivers/linuxwacom" DEPEND="${COMMON_DEPEND} x11-proto/inputproto x11-proto/xproto" pkg_setup() { linux-info_pkg_setup CONFIGURE_OPTIONS="$(use_enable debug)" } src_install() { x-modular_src_install rm -r "${D}/usr/share/hal/fdi/policy/20thirdparty" if use hal; then insinto /usr/share/hal/fdi/policy/10osvendor newins "${S}"/fdi/wacom.fdi 11-x11-wacom.fdi fi } pkg_postinst() { x-modular_pkg_postinst if ! linux_config_exists \ || ! linux_chkconfig_present TABLET_USB_WACOM \ || ! linux_chkconfig_present INPUT_EVDEV; then echo ewarn "If you use a USB Wacom tablet, you need to enable support in your kernel" ewarn " Device Drivers --->" ewarn " Input device support --->" ewarn " <*> Event interface" ewarn " [*] Tablets --->" ewarn " <*> Wacom Intuos/Graphire tablet support (USB)" echo fi }