diff options
author | Mike Auty <ikelos@gentoo.org> | 2008-02-24 18:45:41 +0000 |
---|---|---|
committer | Mike Auty <ikelos@gentoo.org> | 2008-02-24 18:45:41 +0000 |
commit | 27b8c643d4c1e94623f179b34a9cc29a6a57dd1b (patch) | |
tree | 497f96792bd3dcedf39ce86d7c01a98b7fc216bd /x11-drivers | |
parent | Version bump, bug 211191. Thank Vieri <rentorbuy AT yahoo.com> for all work! (diff) | |
download | gentoo-2-27b8c643d4c1e94623f179b34a9cc29a6a57dd1b.tar.gz gentoo-2-27b8c643d4c1e94623f179b34a9cc29a6a57dd1b.tar.bz2 gentoo-2-27b8c643d4c1e94623f179b34a9cc29a6a57dd1b.zip |
Add warning about compiling with gcc-4.1 or lower.
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/linuxwacom/ChangeLog | 5 | ||||
-rw-r--r-- | x11-drivers/linuxwacom/linuxwacom-0.7.9_p7.ebuild | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/x11-drivers/linuxwacom/ChangeLog b/x11-drivers/linuxwacom/ChangeLog index eb5e2da4b2a2..d4ccc72dcd3f 100644 --- a/x11-drivers/linuxwacom/ChangeLog +++ b/x11-drivers/linuxwacom/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-drivers/linuxwacom # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/linuxwacom/ChangeLog,v 1.21 2008/02/24 02:52:17 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/linuxwacom/ChangeLog,v 1.22 2008/02/24 18:45:41 ikelos Exp $ + + 24 Feb 2008; Mike Auty <ikelos@gentoo.org> linuxwacom-0.7.9_p7.ebuild: + Add warning about compiling with gcc-4.1 or lower. 24 Feb 2008; Donnie Berkholz <dberkholz@gentoo.org>; ChangeLog: Update my email. diff --git a/x11-drivers/linuxwacom/linuxwacom-0.7.9_p7.ebuild b/x11-drivers/linuxwacom/linuxwacom-0.7.9_p7.ebuild index 6fb62973df92..d1a723e8c2bf 100644 --- a/x11-drivers/linuxwacom/linuxwacom-0.7.9_p7.ebuild +++ b/x11-drivers/linuxwacom/linuxwacom-0.7.9_p7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/linuxwacom/linuxwacom-0.7.9_p7.ebuild,v 1.2 2008/02/21 12:57:38 rbu Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/linuxwacom/linuxwacom-0.7.9_p7.ebuild,v 1.3 2008/02/24 18:45:41 ikelos Exp $ inherit eutils autotools toolchain-funcs linux-mod @@ -14,8 +14,9 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" -RDEPEND="x11-proto/inputproto - x11-base/xorg-server +RDEPEND="|| ( ( x11-proto/inputproto + x11-base/xorg-server ) + virtual/x11 ) media-libs/libpixman gtk? ( >=x11-libs/gtk+-2 ) tcl? ( dev-lang/tcl ) @@ -57,6 +58,7 @@ wacom_check() { pkg_setup() { linux-mod_pkg_setup # echo "kernel version is ${KV} , name is ${KV%%-*}" + ewarn "Versions of linuxwacom >= 0.7.9 require gcc >= 4.2 to compile." wacom_check } |