Gentoo Archives: gentoo-commits

From: "Christian Birchinger (joker)" <joker@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/xdotool: xdotool-2.20110530.1.ebuild ChangeLog
Date: Sun, 03 Jul 2011 19:11:06
Message-Id: 20110703120022.7D3B42004B@flycatcher.gentoo.org
1 joker 11/07/03 12:00:22
2
3 Modified: ChangeLog
4 Added: xdotool-2.20110530.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.10.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.21 x11-misc/xdotool/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 28 Mar 2011 13:33:33 -0000 1.20
24 +++ ChangeLog 3 Jul 2011 12:00:22 -0000 1.21
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-misc/xdotool
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.20 2011/03/28 13:33:33 phajdan.jr Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/ChangeLog,v 1.21 2011/07/03 12:00:22 joker Exp $
30 +
31 +*xdotool-2.20110530.1 (03 Jul 2011)
32 +
33 + 03 Jul 2011; Christian Birchinger <joker@g.o>
34 + +xdotool-2.20110530.1.ebuild:
35 + Version bump
36
37 28 Mar 2011; Pawel Hajdan jr <phajdan.jr@g.o>
38 xdotool-2.20101012.3049.ebuild:
39
40
41
42 1.1 x11-misc/xdotool/xdotool-2.20110530.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/xdotool-2.20110530.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/xdotool/xdotool-2.20110530.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xdotool-2.20110530.1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-2.20110530.1.ebuild,v 1.1 2011/07/03 12:00:22 joker Exp $
52
53 EAPI=2
54
55 inherit eutils toolchain-funcs flag-o-matic multilib
56
57 DESCRIPTION="Simulate keyboard input and mouse activity, move and resize windows."
58 HOMEPAGE="http://www.semicomplete.com/projects/xdotool/"
59 SRC_URI="http://semicomplete.googlecode.com/files/${P}.tar.gz"
60 LICENSE="as-is"
61
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="examples"
65
66 DEPEND="x11-libs/libXtst
67 x11-libs/libX11"
68
69 RDEPEND="${DEPEND}"
70
71 # The test wants to manualy start Xvfb, wont use VirtualX and it tries
72 # to run a full gnome-session. For such a tiny application i consider
73 # it overkill to rewrite the test scripts to not use it's own X server
74 # and add a full blown gnome just to run the tests.
75 RESTRICT="test"
76
77 src_prepare() {
78 sed -e "s/installheader post-install$/installheader/" \
79 -i Makefile || die "sed failed"
80 }
81
82 src_compile() {
83 tc-export CC LD
84 default
85 }
86
87 src_install() {
88 emake PREFIX="${D}usr" INSTALLMAN="${D}usr/share/man" INSTALLLIB="${D}usr/$(get_libdir)" install || die
89
90 dodoc CHANGELIST README
91 if use examples; then
92 insinto /usr/share/doc/${PF}/examples
93 doins examples/*
94 fi
95 }