public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-misc/keytouch: ChangeLog keytouch-2.4.1.ebuild
@ 2008-07-21 19:54 Tristan Heaven (nyhm)
  0 siblings, 0 replies; 6+ messages in thread
From: Tristan Heaven (nyhm) @ 2008-07-21 19:54 UTC (permalink / raw
  To: gentoo-commits

nyhm        08/07/21 19:54:22

  Modified:             ChangeLog
  Added:                keytouch-2.4.1.ebuild
  Log:
  Version bump
  (Portage version: 2.2_rc1/cvs/Linux 2.6.26 x86_64)

Revision  Changes    Path
1.16                 x11-misc/keytouch/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	25 Jun 2008 09:37:05 -0000	1.15
+++ ChangeLog	21 Jul 2008 19:54:22 -0000	1.16
@@ -1,6 +1,12 @@
 # ChangeLog for x11-misc/keytouch
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.15 2008/06/25 09:37:05 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.16 2008/07/21 19:54:22 nyhm Exp $
+
+*keytouch-2.4.1 (21 Jul 2008)
+
+  21 Jul 2008; Tristan Heaven <nyhm@gentoo.org>
+  +files/keytouch-2.4.1-glibc28.patch, +keytouch-2.4.1.ebuild:
+  Version bump
 
   25 Jun 2008; Tristan Heaven <nyhm@gentoo.org> keytouch-2.3.2.ebuild,
   keytouch-2.4.0.ebuild:



1.1                  x11-misc/keytouch/keytouch-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.1&content-type=text/plain

Index: keytouch-2.4.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.1 2008/07/21 19:54:22 nyhm Exp $

inherit eutils linux-info

DESCRIPTION="Easily configure extra keyboard function keys"
HOMEPAGE="http://keytouch.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="acpi kde"

RDEPEND=">=x11-libs/gtk+-2
	x11-libs/libXtst
	gnome-base/gnome-menus
	media-libs/alsa-lib"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	x11-proto/inputproto
	x11-proto/xextproto
	x11-proto/xproto"
RDEPEND="${RDEPEND}
	acpi? ( sys-power/acpid )
	kde? ( || (
		kde-base/kdesu
		kde-base/kdebase
	) )
	!kde? ( x11-libs/gksu )"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/${P}-glibc28.patch
	sed -i \
		's/install-data-local//1' \
		keytouch{-acpid,d,-init}/Makefile.in \
		|| die "sed failed"
}

src_compile() {
	local d
	for d in . keytouch-config keytouch-keyboard ; do
		pushd ${d} > /dev/null
		econf || die
		emake || die "emake ${d} failed"
		popd > /dev/null
	done
}

src_install() {
	if use acpi ; then
		newinitd "${FILESDIR}"/${PN}-acpid ${PN} || die "newinitd failed"
	else
		doinitd "${FILESDIR}"/${PN} || die "doinitd failed"
	fi

	newicon keytouch-keyboard/pixmaps/icon.png ${PN}.png
	make_desktop_entry ${PN} keyTouch ${PN} System

	dodoc AUTHORS ChangeLog

	local d
	for d in . keytouch-config keytouch-keyboard ; do
		emake -C ${d} DESTDIR="${D}" install \
			|| die "emake install ${d} failed"
	done
}

pkg_postinst() {
	echo
	elog "To use keyTouch, add \"keytouchd\" to your"
	elog "X startup programs and run"
	elog "\"rc-update add keytouch default\""
	elog
	elog "If support for your keyboard is not included in"
	elog "this release, check for new keyboard files at"
	elog "${HOMEPAGE}dl-keyboards.html"
	elog
	elog "x11-misc/keytouch-editor can be used to create"
	elog "your own keyboard files"
	echo
	if use acpi && ! linux_chkconfig_present INPUT_EVDEV ; then
		ewarn "To enable support for ACPI hotkeys, CONFIG_INPUT_EVDEV"
		ewarn "must be enabled in your kernel config."
		ewarn
		ewarn "  Device Drivers"
		ewarn "    Input device support"
		ewarn "      <*>/<M> Event interface"
		echo
	fi
}






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-misc/keytouch: ChangeLog keytouch-2.4.1.ebuild
@ 2009-03-23 22:40 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2009-03-23 22:40 UTC (permalink / raw
  To: gentoo-commits

maekke      09/03/23 22:40:55

  Modified:             ChangeLog keytouch-2.4.1.ebuild
  Log:
  amd64/x86 stable, bug #263405
  (Portage version: 2.1.6.10/cvs/Linux x86_64)

Revision  Changes    Path
1.17                 x11-misc/keytouch/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	21 Jul 2008 19:54:22 -0000	1.16
+++ ChangeLog	23 Mar 2009 22:40:55 -0000	1.17
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/keytouch
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.16 2008/07/21 19:54:22 nyhm Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.17 2009/03/23 22:40:55 maekke Exp $
+
+  23 Mar 2009; Markus Meier <maekke@gentoo.org> keytouch-2.4.1.ebuild:
+  amd64/x86 stable, bug #263405
 
 *keytouch-2.4.1 (21 Jul 2008)
 



1.2                  x11-misc/keytouch/keytouch-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?r1=1.1&r2=1.2

Index: keytouch-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- keytouch-2.4.1.ebuild	21 Jul 2008 19:54:22 -0000	1.1
+++ keytouch-2.4.1.ebuild	23 Mar 2009 22:40:55 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.1 2008/07/21 19:54:22 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.2 2009/03/23 22:40:55 maekke Exp $
 
 inherit eutils linux-info
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="acpi kde"
 
 RDEPEND=">=x11-libs/gtk+-2






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-misc/keytouch: ChangeLog keytouch-2.4.1.ebuild
@ 2010-01-10  8:17 Robin H. Johnson (robbat2)
  0 siblings, 0 replies; 6+ messages in thread
From: Robin H. Johnson (robbat2) @ 2010-01-10  8:17 UTC (permalink / raw
  To: gentoo-commits

robbat2     10/01/10 08:17:42

  Modified:             ChangeLog keytouch-2.4.1.ebuild
  Log:
  Bug #283320 cleanup: linux_config_exists before linux_chkconfig*.
  (Portage version: 2.2_rc61/cvs/Linux x86_64)

Revision  Changes    Path
1.18                 x11-misc/keytouch/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -p -w -b -B -u -u -r1.17 -r1.18
--- ChangeLog	23 Mar 2009 22:40:55 -0000	1.17
+++ ChangeLog	10 Jan 2010 08:17:42 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/keytouch
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.17 2009/03/23 22:40:55 maekke Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.18 2010/01/10 08:17:42 robbat2 Exp $
+
+  10 Jan 2010; Robin H. Johnson <robbat2@gentoo.org> keytouch-2.4.1.ebuild:
+  Bug #283320 cleanup: linux_config_exists before linux_chkconfig*.
 
   23 Mar 2009; Markus Meier <maekke@gentoo.org> keytouch-2.4.1.ebuild:
   amd64/x86 stable, bug #263405



1.3                  x11-misc/keytouch/keytouch-2.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?r1=1.2&r2=1.3

Index: keytouch-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -p -w -b -B -u -u -r1.2 -r1.3
--- keytouch-2.4.1.ebuild	23 Mar 2009 22:40:55 -0000	1.2
+++ keytouch-2.4.1.ebuild	10 Jan 2010 08:17:42 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.2 2009/03/23 22:40:55 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.3 2010/01/10 08:17:42 robbat2 Exp $
 
 inherit eutils linux-info
 
@@ -82,7 +82,8 @@ pkg_postinst() {
 	elog "x11-misc/keytouch-editor can be used to create"
 	elog "your own keyboard files"
 	echo
-	if use acpi && ! linux_chkconfig_present INPUT_EVDEV ; then
+	if use acpi; then
+	if ! linux_config_exists || ! linux_chkconfig_present INPUT_EVDEV; then
 		ewarn "To enable support for ACPI hotkeys, CONFIG_INPUT_EVDEV"
 		ewarn "must be enabled in your kernel config."
 		ewarn
@@ -91,4 +92,5 @@ pkg_postinst() {
 		ewarn "      <*>/<M> Event interface"
 		echo
 	fi
+	fi
 }






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-misc/keytouch: ChangeLog keytouch-2.4.1.ebuild
@ 2010-09-03  8:43 Tristan Heaven (nyhm)
  0 siblings, 0 replies; 6+ messages in thread
From: Tristan Heaven (nyhm) @ 2010-09-03  8:43 UTC (permalink / raw
  To: gentoo-commits

nyhm        10/09/03 08:43:30

  Modified:             ChangeLog keytouch-2.4.1.ebuild
  Log:
  Respect CFLAGS/LDFLAGS when building plugins, bug #333975
  
  (Portage version: 2.2_rc73/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 x11-misc/keytouch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	10 Jan 2010 08:17:42 -0000	1.18
+++ ChangeLog	3 Sep 2010 08:43:30 -0000	1.19
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/keytouch
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.18 2010/01/10 08:17:42 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.19 2010/09/03 08:43:30 nyhm Exp $
+
+  03 Sep 2010; Tristan Heaven <nyhm@gentoo.org> keytouch-2.4.1.ebuild:
+  Respect CFLAGS/LDFLAGS when building plugins, bug #333975
 
   10 Jan 2010; Robin H. Johnson <robbat2@gentoo.org> keytouch-2.4.1.ebuild:
   Bug #283320 cleanup: linux_config_exists before linux_chkconfig*.



1.4                  x11-misc/keytouch/keytouch-2.4.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?r1=1.3&r2=1.4

Index: keytouch-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- keytouch-2.4.1.ebuild	10 Jan 2010 08:17:42 -0000	1.3
+++ keytouch-2.4.1.ebuild	3 Sep 2010 08:43:30 -0000	1.4
@@ -1,7 +1,8 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.3 2010/01/10 08:17:42 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.4 2010/09/03 08:43:30 nyhm Exp $
 
+EAPI=2
 inherit eutils linux-info
 
 DESCRIPTION="Easily configure extra keyboard function keys"
@@ -30,26 +31,35 @@
 	) )
 	!kde? ( x11-libs/gksu )"
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
+src_prepare() {
 	epatch "${FILESDIR}"/${P}-glibc28.patch
 	sed -i \
 		's/install-data-local//1' \
 		keytouch{-acpid,d,-init}/Makefile.in \
 		|| die "sed failed"
+	sed -i \
+		-e '/^CFLAGS/s:\(.*\)=\(.*\)-O2:\1+=\2$(LDFLAGS):' \
+		{mxml,plugins}/Makefile.in \
+		|| die "sed failed"
 }
 
-src_compile() {
+d_iter() {
 	local d
 	for d in . keytouch-config keytouch-keyboard ; do
 		pushd ${d} > /dev/null
-		econf || die
-		emake || die "emake ${d} failed"
+		eval "${1}"
 		popd > /dev/null
 	done
 }
 
+src_configure() {
+	d_iter 'econf'
+}
+
+src_compile() {
+	d_iter 'emake || die "emake ${d} failed"'
+}
+
 src_install() {
 	if use acpi ; then
 		newinitd "${FILESDIR}"/${PN}-acpid ${PN} || die "newinitd failed"
@@ -62,11 +72,7 @@
 
 	dodoc AUTHORS ChangeLog
 
-	local d
-	for d in . keytouch-config keytouch-keyboard ; do
-		emake -C ${d} DESTDIR="${D}" install \
-			|| die "emake install ${d} failed"
-	done
+	d_iter 'emake DESTDIR="${D}" install || die "emake install ${d} failed"'
 }
 
 pkg_postinst() {






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-misc/keytouch: ChangeLog keytouch-2.4.1.ebuild
@ 2011-03-29 13:02 Christoph Mende (angelos)
  0 siblings, 0 replies; 6+ messages in thread
From: Christoph Mende (angelos) @ 2011-03-29 13:02 UTC (permalink / raw
  To: gentoo-commits

angelos     11/03/29 13:02:56

  Modified:             ChangeLog keytouch-2.4.1.ebuild
  Log:
  Fix gtk+ slot deps
  
  (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)

Revision  Changes    Path
1.20                 x11-misc/keytouch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	3 Sep 2010 08:43:30 -0000	1.19
+++ ChangeLog	29 Mar 2011 13:02:56 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/keytouch
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.19 2010/09/03 08:43:30 nyhm Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.20 2011/03/29 13:02:56 angelos Exp $
+
+  29 Mar 2011; Christoph Mende <angelos@gentoo.org> keytouch-2.4.1.ebuild:
+  Fix gtk+ slot deps
 
   03 Sep 2010; Tristan Heaven <nyhm@gentoo.org> keytouch-2.4.1.ebuild:
   Respect CFLAGS/LDFLAGS when building plugins, bug #333975



1.5                  x11-misc/keytouch/keytouch-2.4.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?r1=1.4&r2=1.5

Index: keytouch-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- keytouch-2.4.1.ebuild	3 Sep 2010 08:43:30 -0000	1.4
+++ keytouch-2.4.1.ebuild	29 Mar 2011 13:02:56 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.4 2010/09/03 08:43:30 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.5 2011/03/29 13:02:56 angelos Exp $
 
 EAPI=2
 inherit eutils linux-info
@@ -14,7 +14,7 @@
 KEYWORDS="amd64 x86"
 IUSE="acpi kde"
 
-RDEPEND=">=x11-libs/gtk+-2
+RDEPEND="x11-libs/gtk+:2
 	x11-libs/libXtst
 	gnome-base/gnome-menus
 	media-libs/alsa-lib"






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in x11-misc/keytouch: ChangeLog keytouch-2.4.1.ebuild
@ 2011-10-28  1:05 Alexandre Rostovtsev (tetromino)
  0 siblings, 0 replies; 6+ messages in thread
From: Alexandre Rostovtsev (tetromino) @ 2011-10-28  1:05 UTC (permalink / raw
  To: gentoo-commits

tetromino    11/10/28 01:05:10

  Modified:             ChangeLog keytouch-2.4.1.ebuild
  Log:
  Slot gnome-menus dependency to 0 in preparation for gnome-menus-3.2.
  
  (Portage version: 2.2.0_alpha71/cvs/Linux x86_64)

Revision  Changes    Path
1.21                 x11-misc/keytouch/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	29 Mar 2011 13:02:56 -0000	1.20
+++ ChangeLog	28 Oct 2011 01:05:09 -0000	1.21
@@ -1,6 +1,10 @@
 # ChangeLog for x11-misc/keytouch
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.20 2011/03/29 13:02:56 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/ChangeLog,v 1.21 2011/10/28 01:05:09 tetromino Exp $
+
+  28 Oct 2011; Alexandre Rostovtsev <tetromino@gentoo.org>
+  keytouch-2.4.1.ebuild:
+  Slot gnome-menus dependency to 0 in preparation for gnome-menus-3.2.
 
   29 Mar 2011; Christoph Mende <angelos@gentoo.org> keytouch-2.4.1.ebuild:
   Fix gtk+ slot deps



1.6                  x11-misc/keytouch/keytouch-2.4.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild?r1=1.5&r2=1.6

Index: keytouch-2.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- keytouch-2.4.1.ebuild	29 Mar 2011 13:02:56 -0000	1.5
+++ keytouch-2.4.1.ebuild	28 Oct 2011 01:05:09 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.5 2011/03/29 13:02:56 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/keytouch/keytouch-2.4.1.ebuild,v 1.6 2011/10/28 01:05:09 tetromino Exp $
 
 EAPI=2
 inherit eutils linux-info
@@ -16,7 +16,7 @@
 
 RDEPEND="x11-libs/gtk+:2
 	x11-libs/libXtst
-	gnome-base/gnome-menus
+	gnome-base/gnome-menus:0
 	media-libs/alsa-lib"
 DEPEND="${RDEPEND}
 	dev-util/pkgconfig






^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-10-28  1:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-10  8:17 [gentoo-commits] gentoo-x86 commit in x11-misc/keytouch: ChangeLog keytouch-2.4.1.ebuild Robin H. Johnson (robbat2)
  -- strict thread matches above, loose matches on Subject: below --
2011-10-28  1:05 Alexandre Rostovtsev (tetromino)
2011-03-29 13:02 Christoph Mende (angelos)
2010-09-03  8:43 Tristan Heaven (nyhm)
2009-03-23 22:40 Markus Meier (maekke)
2008-07-21 19:54 Tristan Heaven (nyhm)

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