xdotool: upgraded package to upstream

Upgraded x11-misc/xdotool to version 2.20110530.1 on amd64

BUG=chromium-os:36363
TEST=Manual build

Change-Id: I3a975bbfcab1055882e013ce1ba4f4d108769289
Reviewed-on: https://gerrit.chromium.org/gerrit/38032
Tested-by: Pawel Osciak <posciak@chromium.org>
Reviewed-by: Mike Frysinger <vapier@chromium.org>
Commit-Ready: Pawel Osciak <posciak@chromium.org>
This commit is contained in:
Pawel Osciak 2012-11-12 15:59:28 -08:00 committed by Gerrit
parent 0df023824b
commit 4c1051e1fc
3 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,14 @@
DEFINED_PHASES=compile install prepare
DEPEND=x11-libs/libXtst x11-libs/libX11 x11-libs/libXinerama
DESCRIPTION=Simulate keyboard input and mouse activity, move and resize windows.
EAPI=2
HOMEPAGE=http://www.semicomplete.com/projects/xdotool/
IUSE=examples
KEYWORDS=amd64 arm x86
LICENSE=as-is
RDEPEND=x11-libs/libXtst x11-libs/libX11 x11-libs/libXinerama
RESTRICT=test
SLOT=0
SRC_URI=http://semicomplete.googlecode.com/files/xdotool-2.20110530.1.tar.gz
_eclasses_=eutils 33ef77a15337022e05342d2c772a7a5a flag-o-matic 01a8b1eb019305bc4b4a8bd0b04e4cd8 multilib 5f4ad6cf85e365e8f0c6050ddd21659e portability 0be430f759a631e692678ed796e09f5c toolchain-funcs 6526ac6fc9aedf391efb91fcd75ace68 user 9e552f935106ff0bc92af16da64b4b29
_md5_=fe1146d727bfec086ea9aee1fdd9993a

View File

@ -0,0 +1 @@
DIST xdotool-2.20110530.1.tar.gz 107204 RMD160 1aebcd835a4741a9e77aa489a3bdce195c582204 SHA1 bf8372b2e76e8ee3884763cee6e8b3f66bf29aa6 SHA256 e7b42c8b1d391970e1c1009b256033f30e57d8e0a2a3de229fd61ecfc27baf67

View File

@ -0,0 +1,48 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xdotool/xdotool-2.20110530.1.ebuild,v 1.4 2012/04/04 21:24:51 jdhore Exp $
EAPI=2
inherit eutils toolchain-funcs flag-o-matic multilib
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="amd64 arm x86"
IUSE="examples"
RDEPEND="x11-libs/libXtst
x11-libs/libX11
x11-libs/libXinerama"
DEPEND="${RDEPEND}"
# The test wants to manualy start Xvfb, wont use VirtualX and it tries
# to run a full gnome-session. For such a tiny application i consider
# it overkill to rewrite the test scripts to not use it's own X server
# and add a full blown gnome just to run the tests.
RESTRICT="test"
src_prepare() {
sed -e "s/installheader post-install$/installheader/" \
-i Makefile || die "sed failed"
}
src_compile() {
tc-export CC LD
default
}
src_install() {
emake PREFIX="${D}usr" INSTALLMAN="${D}usr/share/man" INSTALLLIB="${D}usr/$(get_libdir)" install || die
dodoc CHANGELIST README
if use examples; then
insinto /usr/share/doc/${PF}/examples
doins examples/*
fi
}