diff --git a/sdk_container/src/third_party/portage-stable/metadata/md5-cache/x11-misc/xdotool-2.20110530.1 b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/x11-misc/xdotool-2.20110530.1 new file mode 100644 index 0000000000..4834d26c10 --- /dev/null +++ b/sdk_container/src/third_party/portage-stable/metadata/md5-cache/x11-misc/xdotool-2.20110530.1 @@ -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 diff --git a/sdk_container/src/third_party/portage-stable/x11-misc/xdotool/Manifest b/sdk_container/src/third_party/portage-stable/x11-misc/xdotool/Manifest new file mode 100644 index 0000000000..2dd2e6e1df --- /dev/null +++ b/sdk_container/src/third_party/portage-stable/x11-misc/xdotool/Manifest @@ -0,0 +1 @@ +DIST xdotool-2.20110530.1.tar.gz 107204 RMD160 1aebcd835a4741a9e77aa489a3bdce195c582204 SHA1 bf8372b2e76e8ee3884763cee6e8b3f66bf29aa6 SHA256 e7b42c8b1d391970e1c1009b256033f30e57d8e0a2a3de229fd61ecfc27baf67 diff --git a/sdk_container/src/third_party/portage-stable/x11-misc/xdotool/xdotool-2.20110530.1.ebuild b/sdk_container/src/third_party/portage-stable/x11-misc/xdotool/xdotool-2.20110530.1.ebuild new file mode 100644 index 0000000000..e1f47c0fbf --- /dev/null +++ b/sdk_container/src/third_party/portage-stable/x11-misc/xdotool/xdotool-2.20110530.1.ebuild @@ -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 +}