diff options
author | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2014-05-18 18:11:59 +0000 |
---|---|---|
committer | Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> | 2014-05-18 18:11:59 +0000 |
commit | 3f53759a78952557c9a7f2e6125f9dd8fbae0ad4 (patch) | |
tree | 717735c22750ab50ae0eb524b9bafc0fa2a0889e /x11-drivers | |
parent | Set --cxx unconditionally. (diff) | |
download | gentoo-2-3f53759a78952557c9a7f2e6125f9dd8fbae0ad4.tar.gz gentoo-2-3f53759a78952557c9a7f2e6125f9dd8fbae0ad4.tar.bz2 gentoo-2-3f53759a78952557c9a7f2e6125f9dd8fbae0ad4.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-input-wacom/ChangeLog | 8 | ||||
-rw-r--r-- | x11-drivers/xf86-input-wacom/xf86-input-wacom-0.24.0.ebuild | 60 |
2 files changed, 67 insertions, 1 deletions
diff --git a/x11-drivers/xf86-input-wacom/ChangeLog b/x11-drivers/xf86-input-wacom/ChangeLog index a9a372494e48..0091ed01d891 100644 --- a/x11-drivers/xf86-input-wacom/ChangeLog +++ b/x11-drivers/xf86-input-wacom/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-drivers/xf86-input-wacom # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.86 2014/04/19 17:47:22 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/ChangeLog,v 1.87 2014/05/18 18:11:59 chithanh Exp $ + +*xf86-input-wacom-0.24.0 (18 May 2014) + + 18 May 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org> + +xf86-input-wacom-0.24.0.ebuild: + Version bump. 19 Apr 2014; Agostino Sarubbo <ago@gentoo.org> xf86-input-wacom-0.23.0.ebuild: Stable for sparc, wrt bug #500368 diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.24.0.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.24.0.ebuild new file mode 100644 index 000000000000..2ce8443cf90e --- /dev/null +++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.24.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2014 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.24.0.ebuild,v 1.1 2014/05/18 18:11:59 chithanh Exp $ + +EAPI=5 + +inherit linux-info xorg-2 + +DESCRIPTION="Driver for Wacom tablets and drawing devices" +HOMEPAGE="http://linuxwacom.sourceforge.net/" +LICENSE="GPL-2" +EGIT_REPO_URI="git://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}" +[[ ${PV} != 9999* ]] && \ + SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2" + +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug" + +# depend on libwacom for its udev rules, bug #389633 +RDEPEND="dev-libs/libwacom + virtual/udev + >=x11-base/xorg-server-1.7 + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXi + x11-libs/libXrandr + x11-libs/libXinerama" +DEPEND="${RDEPEND} + x11-proto/randrproto" + +pkg_setup() { + linux-info_pkg_setup + + XORG_CONFIGURE_OPTIONS=( + $(use_enable debug) + ) +} + +src_install() { + xorg-2_src_install + + rm -rf "${ED}"/usr/share/hal +} + +pkg_pretend() { + linux-info_pkg_setup + + 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 +} |