summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2010-10-21 15:29:51 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2010-10-21 15:29:51 +0000
commitccb2f5a95534069f7ea05437b3f3d62aa9892df3 (patch)
tree8404bff5a3ce165b19900e335ca6b0050b34aa48 /x11-drivers/xf86-input-wacom
parentExplicitly inherit eutils. Fix typo (diff)
downloadhistorical-ccb2f5a95534069f7ea05437b3f3d62aa9892df3.tar.gz
historical-ccb2f5a95534069f7ea05437b3f3d62aa9892df3.tar.bz2
historical-ccb2f5a95534069f7ea05437b3f3d62aa9892df3.zip
old
Package-Manager: portage-2.2_rc98/cvs/Linux x86_64
Diffstat (limited to 'x11-drivers/xf86-input-wacom')
-rw-r--r--x11-drivers/xf86-input-wacom/ChangeLog6
-rw-r--r--x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.4.ebuild57
2 files changed, 5 insertions, 58 deletions
diff --git a/x11-drivers/xf86-input-wacom/ChangeLog b/x11-drivers/xf86-input-wacom/ChangeLog
index 1adce6d39300..a30b02a94d1e 100644
--- a/x11-drivers/xf86-input-wacom/ChangeLog
+++ b/x11-drivers/xf86-input-wacom/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-drivers/xf86-input-wacom
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.25 2010/10/21 01:11:27 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.26 2010/10/21 15:23:23 scarabeus Exp $
+
+ 21 Oct 2010; Tomáš Chvátal <scarabeus@gentoo.org>
+ -xf86-input-wacom-0.10.4.ebuild:
+ old
21 Oct 2010; Brent Baude <ranger@gentoo.org>
xf86-input-wacom-0.10.6.ebuild:
diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.4.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.4.ebuild
deleted file mode 100644
index 1d35ded24105..000000000000
--- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.4.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.4.ebuild,v 1.5 2010/05/12 18:10:38 ranger Exp $
-
-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="mirror://sourceforge/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"
-
- 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
-}