public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-wacom: ChangeLog xf86-input-wacom-0.10.3-r1.ebuild xf86-input-wacom-0.10.0.ebuild xf86-input-wacom-0.10.2.ebuild
@ 2009-12-31 16:12 Mike Auty (ikelos)
  0 siblings, 0 replies; only message in thread
From: Mike Auty (ikelos) @ 2009-12-31 16:12 UTC (permalink / raw
  To: gentoo-commits

ikelos      09/12/31 16:12:01

  Modified:             ChangeLog
  Added:                xf86-input-wacom-0.10.3-r1.ebuild
  Removed:              xf86-input-wacom-0.10.0.ebuild
                        xf86-input-wacom-0.10.2.ebuild
  Log:
  Fix bug 298547, and tidy up older versions.
  (Portage version: 2.2_rc60/cvs/Linux i686)

Revision  Changes    Path
1.9                  x11-drivers/xf86-input-wacom/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	23 Dec 2009 23:48:41 -0000	1.8
+++ ChangeLog	31 Dec 2009 16:12:01 -0000	1.9
@@ -1,6 +1,13 @@
 # ChangeLog for x11-drivers/xf86-input-wacom
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.8 2009/12/23 23:48:41 ikelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.9 2009/12/31 16:12:01 ikelos Exp $
+
+*xf86-input-wacom-0.10.3-r1 (31 Dec 2009)
+
+  31 Dec 2009; Mike Auty <ikelos@gentoo.org>
+  -xf86-input-wacom-0.10.0.ebuild, -xf86-input-wacom-0.10.2.ebuild,
+  +xf86-input-wacom-0.10.3-r1.ebuild, +files/0.10.3-protocol-4.patch:
+  Fix bug 298547, and tidy up older versions.
 
 *xf86-input-wacom-0.10.3 (23 Dec 2009)
 



1.1                  x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.3-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.3-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.3-r1.ebuild?rev=1.1&content-type=text/plain

Index: xf86-input-wacom-0.10.3-r1.ebuild
===================================================================
# Copyright 1999-2009 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.3-r1.ebuild,v 1.1 2009/12/31 16:12:01 ikelos Exp $

EAPI="2"

inherit linux-info x-modular

DESCRIPTION="Driver for Wacom tablets and drawing devices"
LICENSE="GPL-2"
EGIT_REPO_URI="git://anongit.freedesktop.org/~whot/xf86-input-wacom"
[[ ${PV} != 9999* ]] && \
	SRC_URI="http://people.freedesktop.org/~whot/${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_prepare() {
	epatch "${FILESDIR}/0.10.3-protocol-4.patch"
	x-modular_src_prepare
}

src_install() {
	x-modular_src_install

	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
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-12-31 16:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-31 16:12 [gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-input-wacom: ChangeLog xf86-input-wacom-0.10.3-r1.ebuild xf86-input-wacom-0.10.0.ebuild xf86-input-wacom-0.10.2.ebuild Mike Auty (ikelos)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox