* [gentoo-commits] proj/x11:master commit in: x11-drivers/xf86-input-wacom/
@ 2011-03-01 18:55 Tomas Chvatal
0 siblings, 0 replies; 6+ messages in thread
From: Tomas Chvatal @ 2011-03-01 18:55 UTC (permalink / raw
To: gentoo-commits
commit: bb58344ac9efeabc63d4740feac4f1477429bfe3
Author: Tomas Chvatal <scarabeus <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 1 18:55:23 2011 +0000
Commit: Tomas Chvatal <scarabeus <AT> gentoo <DOT> org>
CommitDate: Tue Mar 1 18:55:23 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=bb58344a
[x11-drivers/xf86-input-wacom] sync with main tree
---
.../xf86-input-wacom/xf86-input-wacom-9999.ebuild | 32 +++++++++++--------
1 files changed, 18 insertions(+), 14 deletions(-)
diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
index b40e189..a41005d 100644
--- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
+++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
@@ -1,30 +1,35 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-input-wacom/xf86-input-wacom-0.10.8-r1.ebuild,v 1.2 2011/02/20 10:54:27 ssuominen Exp $
EAPI=4
+
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="~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}
+IUSE="debug"
+
+RDEPEND="!x11-drivers/linuxwacom
+ >=x11-base/xorg-server-1.7
+ x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXi
+ x11-libs/libXrandr"
+DEPEND="${RDEPEND}
x11-proto/inputproto
+ x11-proto/kbproto
+ x11-proto/randrproto
x11-proto/xproto"
pkg_setup() {
linux-info_pkg_setup
- xorg-2_pkg_setup
CONFIGURE_OPTIONS="$(use_enable debug)"
}
@@ -32,16 +37,15 @@ pkg_setup() {
src_install() {
xorg-2_src_install
- use hal || rm -fr "${D}/usr/share/hal"
-
+ rm -rf "${D}"/usr/share/hal
}
pkg_postinst() {
xorg-2_pkg_postinst
if ! linux_config_exists \
- || ! linux_chkconfig_present TABLET_USB_WACOM \
- || ! linux_chkconfig_present INPUT_EVDEV; then
+ || ! 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 --->"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-drivers/xf86-input-wacom/
@ 2011-04-15 19:04 Michał Górny
0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2011-04-15 19:04 UTC (permalink / raw
To: gentoo-commits
commit: 4655d36d3603974b56e4969fe21887987c3d19db
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 15 18:18:31 2011 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Apr 15 18:18:31 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=4655d36d
x11-drivers/xf86-input-wacom: Migrate to XORG_CONFIGURE_OPTIONS.
(Portage version: 2.2.0_alpha29_p5/git/Linux x86_64, signed Manifest commit with key 05DE07BB)
---
x11-drivers/xf86-input-wacom/metadata.xml | 10 ++++++++++
.../xf86-input-wacom/xf86-input-wacom-9999.ebuild | 4 +++-
2 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/x11-drivers/xf86-input-wacom/metadata.xml b/x11-drivers/xf86-input-wacom/metadata.xml
new file mode 100644
index 0000000..6640ee5
--- /dev/null
+++ b/x11-drivers/xf86-input-wacom/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>x11</herd>
+ <maintainer>
+ <email>ikelos@gentoo.org</email>
+ <name>Mike Auty</name>
+ </maintainer>
+ <longdescription>Driver for Wacom tablets and drawing devices (friendly fork of linuxwacom)</longdescription>
+</pkgmetadata>
diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
index a41005d..fbaf240 100644
--- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
+++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
@@ -31,7 +31,9 @@ DEPEND="${RDEPEND}
pkg_setup() {
linux-info_pkg_setup
- CONFIGURE_OPTIONS="$(use_enable debug)"
+ XORG_CONFIGURE_OPTIONS=(
+ $(use_enable debug)
+ )
}
src_install() {
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-drivers/xf86-input-wacom/
@ 2013-01-04 2:37 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2013-01-04 2:37 UTC (permalink / raw
To: gentoo-commits
commit: 420b352df1267e2cf8905fb1606bf38207964cb0
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 4 02:37:23 2013 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Fri Jan 4 02:37:23 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=420b352d
x11-drivers/xf86-input-wacom: sync with portage for cosmetic and keyword changes.
---
.../xf86-input-wacom/xf86-input-wacom-9999.ebuild | 20 ++++++++------------
1 files changed, 8 insertions(+), 12 deletions(-)
diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
index fdc3210..85010ec 100644
--- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
+++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 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.8-r1.ebuild,v 1.2 2011/02/20 10:54:27 ssuominen Exp $
+# $Header: $
EAPI=4
@@ -13,34 +13,30 @@ EGIT_REPO_URI="git://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}"
[[ ${PV} != 9999* ]] && \
SRC_URI="mirror://sourceforge/linuxwacom/${PN}/${P}.tar.bz2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
IUSE="debug"
-RDEPEND="!x11-drivers/linuxwacom
- >=x11-base/xorg-server-1.7
+RDEPEND=">=x11-base/xorg-server-1.7
x11-libs/libX11
x11-libs/libXext
x11-libs/libXi
- x11-libs/libXrandr"
+ x11-libs/libXrandr
+ x11-libs/libXinerama"
DEPEND="${RDEPEND}
x11-proto/randrproto"
pkg_setup() {
linux-info_pkg_setup
- xorg-2_pkg_setup
-}
-src_configure() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable debug)
)
- xorg-2_src_configure
}
src_install() {
xorg-2_src_install
- rm -rf "${D}"/usr/share/hal
+ rm -rf "${ED}"/usr/share/hal
}
pkg_pretend() {
@@ -55,7 +51,7 @@ pkg_pretend() {
ewarn " Input device support --->"
ewarn " <*> Event interface"
ewarn " [*] Tablets --->"
- ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
+ ewarn " <*> Wacom Intuos/Graphire tablet support (USB)"
echo
fi
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-drivers/xf86-input-wacom/
@ 2013-03-06 19:54 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2013-03-06 19:54 UTC (permalink / raw
To: gentoo-commits
commit: 82fbcc08f10766538d1146eee45519f05d55377e
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 6 19:54:25 2013 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Wed Mar 6 19:54:25 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=82fbcc08
x11-drivers/xf86-input-wacom: sync keywords with portage.
---
.../xf86-input-wacom/xf86-input-wacom-9999.ebuild | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
index 64365cf..7586e76 100644
--- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
+++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
@@ -13,7 +13,7 @@ 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 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug"
RDEPEND=">=x11-base/xorg-server-1.7
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-drivers/xf86-input-wacom/
@ 2014-01-06 17:14 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2014-01-06 17:14 UTC (permalink / raw
To: gentoo-commits
commit: 185145745e7c9b5d36abeecd94ea76dacf081896
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 6 17:14:54 2014 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Mon Jan 6 17:14:54 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=18514574
x11-drivers/xf86-input-wacom: add udev dependency for bug #474918
---
x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
index 7586e76..175bcfd 100644
--- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
+++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
@@ -16,7 +16,8 @@ EGIT_REPO_URI="git://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug"
-RDEPEND=">=x11-base/xorg-server-1.7
+RDEPEND="virtual/udev
+ >=x11-base/xorg-server-1.7
x11-libs/libX11
x11-libs/libXext
x11-libs/libXi
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] proj/x11:master commit in: x11-drivers/xf86-input-wacom/
@ 2014-01-06 17:16 Chi-Thanh Christopher Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Chi-Thanh Christopher Nguyen @ 2014-01-06 17:16 UTC (permalink / raw
To: gentoo-commits
commit: 9df7511ab44074cd137423b374bed1fe01248e88
Author: Chi-Thanh Christopher Nguyen <chithanh <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 6 17:16:37 2014 +0000
Commit: Chi-Thanh Christopher Nguyen <chithanh <AT> cs <DOT> tu-berlin <DOT> de>
CommitDate: Mon Jan 6 17:16:37 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/x11.git;a=commit;h=9df7511a
x11-drivers/xf86-input-wacom: add libwacom dependency for bug #389633
---
x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
index 175bcfd..9610585 100644
--- a/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
+++ b/x11-drivers/xf86-input-wacom/xf86-input-wacom-9999.ebuild
@@ -16,7 +16,8 @@ EGIT_REPO_URI="git://linuxwacom.git.sourceforge.net/gitroot/linuxwacom/${PN}"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug"
-RDEPEND="virtual/udev
+RDEPEND="dev-libs/libwacom
+ virtual/udev
>=x11-base/xorg-server-1.7
x11-libs/libX11
x11-libs/libXext
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-01-06 17:16 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-06 19:54 [gentoo-commits] proj/x11:master commit in: x11-drivers/xf86-input-wacom/ Chi-Thanh Christopher Nguyen
-- strict thread matches above, loose matches on Subject: below --
2014-01-06 17:16 Chi-Thanh Christopher Nguyen
2014-01-06 17:14 Chi-Thanh Christopher Nguyen
2013-01-04 2:37 Chi-Thanh Christopher Nguyen
2011-04-15 19:04 Michał Górny
2011-03-01 18:55 Tomas Chvatal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox