diff options
author | Christian Birchinger <joker@gentoo.org> | 2009-06-15 17:13:41 +0000 |
---|---|---|
committer | Christian Birchinger <joker@gentoo.org> | 2009-06-15 17:13:41 +0000 |
commit | 4085b4f130e5b63a54e378ea5d715e00eb89d70d (patch) | |
tree | 03cccd95767dbdd4bbc721d877773ba66cafbfa4 /x11-misc/xdotool | |
parent | arm/ia64/sparc stable wrt #273045 (diff) | |
download | gentoo-2-4085b4f130e5b63a54e378ea5d715e00eb89d70d.tar.gz gentoo-2-4085b4f130e5b63a54e378ea5d715e00eb89d70d.tar.bz2 gentoo-2-4085b4f130e5b63a54e378ea5d715e00eb89d70d.zip |
Initial import.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/xdotool')
-rw-r--r-- | x11-misc/xdotool/ChangeLog | 11 | ||||
-rw-r--r-- | x11-misc/xdotool/metadata.xml | 14 | ||||
-rw-r--r-- | x11-misc/xdotool/xdotool-20090609.ebuild | 27 |
3 files changed, 52 insertions, 0 deletions
diff --git a/x11-misc/xdotool/ChangeLog b/x11-misc/xdotool/ChangeLog new file mode 100644 index 000000000000..dda2e805d85a --- /dev/null +++ b/x11-misc/xdotool/ChangeLog @@ -0,0 +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 $ + +*xdotool-20090609 (15 Jun 2009) + + 15 Jun 2009; Christian Birchinger <joker@gentoo.org> + +xdotool-20090609.ebuild: + Initial import. Thanks to Maryasin Semen <marsoft@ya.ru> and Urban + <urban82@gmail.com> + diff --git a/x11-misc/xdotool/metadata.xml b/x11-misc/xdotool/metadata.xml new file mode 100644 index 000000000000..b1a7380fe0bd --- /dev/null +++ b/x11-misc/xdotool/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> +<email>joker@gentoo.org</email> +<name>Christian Birchinger</name> +</maintainer> +<herd>no-herd</herd> +<longdescription> +This tool lets you programatically (or manually) simulate keyboard input and +mouse activity, move and resize windows, etc. It does this using X11's XTEST +extension and other Xlib functions. +</longdescription> +</pkgmetadata> diff --git a/x11-misc/xdotool/xdotool-20090609.ebuild b/x11-misc/xdotool/xdotool-20090609.ebuild new file mode 100644 index 000000000000..e29618d35f6e --- /dev/null +++ b/x11-misc/xdotool/xdotool-20090609.ebuild @@ -0,0 +1,27 @@ +# 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 $ + +inherit eutils + +DESCRIPTION="Fake keyboard/mouse input" +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="" + +DEPEND="x11-libs/libXtst + x11-libs/libX11" + +RDEPEND="${DEPEND}" + +src_compile() { + emake || die "emake failed" +} + +src_install() { + dobin xdotool + doman xdotool.1 +} |