public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: ChangeLog xdotool-20090609.ebuild
@ 2009-07-15 15:02 Christian Birchinger (joker)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Birchinger (joker) @ 2009-07-15 15:02 UTC (permalink / raw
  To: gentoo-commits

joker       09/07/15 15:02:46

  Modified:             ChangeLog xdotool-20090609.ebuild
  Log:
  Various adjustments to the ebuild to deal with bug #274661. No revision bump because the installed working binaries stay the same.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  x11-misc/xdotool/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog	15 Jun 2009 17:13:41 -0000	1.1
+++ ChangeLog	15 Jul 2009 15:02:46 -0000	1.2
@@ -1,6 +1,11 @@
 # ChangeLog for x11-misc/xdotool
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.1 2009/06/15 17:13:41 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.2 2009/07/15 15:02:46 joker Exp $
+
+  15 Jul 2009; Christian Birchinger <joker@gentoo.org>
+  xdotool-20090609.ebuild:
+  Various adjustments to the ebuild to deal with bug #274661. No revision bump
+  because the installed working binaries stay the same
 
 *xdotool-20090609 (15 Jun 2009)
 



1.2                  x11-misc/xdotool/xdotool-20090609.ebuild

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

Index: xdotool-20090609.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdotool-20090609.ebuild	15 Jun 2009 17:13:41 -0000	1.1
+++ xdotool-20090609.ebuild	15 Jul 2009 15:02:46 -0000	1.2
@@ -1,27 +1,44 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v 1.1 2009/06/15 17:13:41 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v 1.2 2009/07/15 15:02:46 joker Exp $
 
-inherit eutils
+EAPI=2
 
-DESCRIPTION="Fake keyboard/mouse input"
+inherit toolchain-funcs
+
+DESCRIPTION="Simulate keyboard input and mouse activity, move and resize windows."
 HOMEPAGE="http://www.semicomplete.com/projects/xdotool/"
 SRC_URI="http://semicomplete.googlecode.com/files/${P}.tar.gz"
 LICENSE="as-is"
+
 SLOT="0"
 KEYWORDS="~x86 ~amd64"
-IUSE=""
+IUSE="examples"
 
 DEPEND="x11-libs/libXtst
 	x11-libs/libX11"
 
 RDEPEND="${DEPEND}"
 
-src_compile() {
-	emake || die "emake failed"
+src_prepare() {
+	cd "${S}"
+	sed -i -e "s:^CFLAGS=.*:CFLAGS=-std=c99 ${CFLAGS}:" \
+		-e "s:^LIBS=.*:LIBS=$(pkg-config --libs x11 xtst):" \
+		-e "s:^INC=.*:INC=$(pkg-config --cflags x11 xtst):" \
+		-e "s:\$(CC):$(tc-getCC):" \
+		-e "s:\$(LDFLAGS): \$(LIBS) \$(LDFLAGS):" \
+		-e 's:LDFLAGS+=$(LIBS)::' \
+		-e "s:\$(CFLAGS):\$(INC) \$(CFLAGS):" \
+		Makefile \
+		|| die "sed Makefile failed."
 }
 
 src_install() {
-	dobin xdotool
-	doman xdotool.1
+	dobin ${PN}
+	doman ${PN}.1
+	dodoc CHANGELIST README
+	if use examples; then
+		insinto /usr/share/doc/${PF}/examples
+		doins examples/*
+	fi
 }






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: ChangeLog xdotool-20090609.ebuild
@ 2009-08-03  5:57 Christian Birchinger (joker)
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Birchinger (joker) @ 2009-08-03  5:57 UTC (permalink / raw
  To: gentoo-commits

joker       09/08/03 05:57:59

  Modified:             ChangeLog xdotool-20090609.ebuild
  Log:
  Change the linker argument order to LDFLAGS, objects, libraries.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  x11-misc/xdotool/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ChangeLog	15 Jul 2009 15:02:46 -0000	1.2
+++ ChangeLog	3 Aug 2009 05:57:59 -0000	1.3
@@ -1,6 +1,10 @@
 # ChangeLog for x11-misc/xdotool
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.2 2009/07/15 15:02:46 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.3 2009/08/03 05:57:59 joker Exp $
+
+  03 Aug 2009; Christian Birchinger <joker@gentoo.org>
+  xdotool-20090609.ebuild:
+  Change the linker argument order to LDFLAGS, objects, libraries.
 
   15 Jul 2009; Christian Birchinger <joker@gentoo.org>
   xdotool-20090609.ebuild:



1.3                  x11-misc/xdotool/xdotool-20090609.ebuild

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

Index: xdotool-20090609.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xdotool-20090609.ebuild	15 Jul 2009 15:02:46 -0000	1.2
+++ xdotool-20090609.ebuild	3 Aug 2009 05:57:59 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v 1.2 2009/07/15 15:02:46 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v 1.3 2009/08/03 05:57:59 joker Exp $
 
 EAPI=2
 
@@ -26,8 +26,8 @@
 		-e "s:^LIBS=.*:LIBS=$(pkg-config --libs x11 xtst):" \
 		-e "s:^INC=.*:INC=$(pkg-config --cflags x11 xtst):" \
 		-e "s:\$(CC):$(tc-getCC):" \
-		-e "s:\$(LDFLAGS): \$(LIBS) \$(LDFLAGS):" \
 		-e 's:LDFLAGS+=$(LIBS)::' \
+		-e 's:-o $@:$(LIBS) -o $@:' \
 		-e "s:\$(CFLAGS):\$(INC) \$(CFLAGS):" \
 		Makefile \
 		|| die "sed Makefile failed."






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

* [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: ChangeLog xdotool-20090609.ebuild
@ 2009-10-30 11:05 Markus Meier (maekke)
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Meier (maekke) @ 2009-10-30 11:05 UTC (permalink / raw
  To: gentoo-commits

maekke      09/10/30 11:05:38

  Modified:             ChangeLog xdotool-20090609.ebuild
  Log:
  amd64/x86 stable, bug #289978
  (Portage version: 2.2_rc46/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  x11-misc/xdotool/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	21 Oct 2009 10:17:23 -0000	1.4
+++ ChangeLog	30 Oct 2009 11:05:37 -0000	1.5
@@ -1,6 +1,9 @@
 # ChangeLog for x11-misc/xdotool
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.4 2009/10/21 10:17:23 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.5 2009/10/30 11:05:37 maekke Exp $
+
+  30 Oct 2009; Markus Meier <maekke@gentoo.org> xdotool-20090609.ebuild:
+  amd64/x86 stable, bug #289978
 
 *xdotool-20090815 (21 Oct 2009)
 



1.4                  x11-misc/xdotool/xdotool-20090609.ebuild

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

Index: xdotool-20090609.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xdotool-20090609.ebuild	3 Aug 2009 05:57:59 -0000	1.3
+++ xdotool-20090609.ebuild	30 Oct 2009 11:05:37 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v 1.3 2009/08/03 05:57:59 joker Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-20090609.ebuild,v 1.4 2009/10/30 11:05:37 maekke Exp $
 
 EAPI=2
 
@@ -12,7 +12,7 @@
 LICENSE="as-is"
 
 SLOT="0"
-KEYWORDS="~x86 ~amd64"
+KEYWORDS="amd64 x86"
 IUSE="examples"
 
 DEPEND="x11-libs/libXtst






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

end of thread, other threads:[~2009-10-30 11:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-30 11:05 [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: ChangeLog xdotool-20090609.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2009-08-03  5:57 Christian Birchinger (joker)
2009-07-15 15:02 Christian Birchinger (joker)

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