Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdotool/
Date: Mon, 06 Feb 2017 10:12:14
Message-Id: 1486375912.50c2f53f347ea0ac231a627fb321bfda4e59bb35.kensington@gentoo
1 commit: 50c2f53f347ea0ac231a627fb321bfda4e59bb35
2 Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 6 09:04:50 2017 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 6 10:11:52 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c2f53f
7
8 x11-misc/xdotool: Drop old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 x11-misc/xdotool/xdotool-3.20150503.1.ebuild | 50 ----------------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/x11-misc/xdotool/xdotool-3.20150503.1.ebuild b/x11-misc/xdotool/xdotool-3.20150503.1.ebuild
16 deleted file mode 100644
17 index 247db09..00000000
18 --- a/x11-misc/xdotool/xdotool-3.20150503.1.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=2
26 -
27 -inherit eutils toolchain-funcs flag-o-matic multilib
28 -
29 -DESCRIPTION="Simulate keyboard input and mouse activity, move and resize windows"
30 -HOMEPAGE="http://www.semicomplete.com/projects/xdotool/"
31 -SRC_URI="https://github.com/jordansissel/xdotool/releases/download/v${PV}/${P}.tar.gz"
32 -
33 -LICENSE="BSD"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~arm ~ppc ~x86"
36 -IUSE="examples"
37 -
38 -RDEPEND="x11-libs/libXtst
39 - x11-libs/libX11
40 - x11-libs/libXinerama
41 - x11-libs/libxkbcommon"
42 -DEPEND="${RDEPEND}"
43 -
44 -# The test wants to manualy start Xvfb, wont use VirtualX and it tries
45 -# to run a full gnome-session. For such a tiny application i consider
46 -# it overkill to rewrite the test scripts to not use it's own X server
47 -# and add a full blown gnome just to run the tests.
48 -RESTRICT="test"
49 -
50 -src_prepare() {
51 - sed -i \
52 - -e "s/installheader post-install$/installheader/" \
53 - -e 's:\<pkg-config\>:$(PKG_CONFIG):' \
54 - Makefile || die "sed failed"
55 -}
56 -
57 -src_compile() {
58 - tc-export CC LD PKG_CONFIG
59 - default
60 -}
61 -
62 -src_install() {
63 - emake PREFIX="${D}usr" INSTALLMAN="${D}usr/share/man" INSTALLLIB="${D}usr/$(get_libdir)" install || die
64 -
65 - dodoc CHANGELIST README
66 - if use examples; then
67 - insinto /usr/share/doc/${PF}/examples
68 - doins examples/*
69 - fi
70 -}