diff options
author | rafan <rafan@FreeBSD.org> | 2007-07-03 13:10:00 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2007-07-03 13:10:00 +0800 |
commit | c27d9ca1b639c14108dc7da6dbbce95aa8a75060 (patch) | |
tree | 1159b83610a997cd17cce631773fde1c9404c969 /x11 | |
parent | cd27ecb65cdc194ab35e91ab633b68b765a31e59 (diff) | |
download | freebsd-ports-gnome-c27d9ca1b639c14108dc7da6dbbce95aa8a75060.tar.gz freebsd-ports-gnome-c27d9ca1b639c14108dc7da6dbbce95aa8a75060.tar.zst freebsd-ports-gnome-c27d9ca1b639c14108dc7da6dbbce95aa8a75060.zip |
Programatically (or manually) simulate keyboard input or mouse activity
using X11's XTEST extension.
WWW: http://www.semicomplete.com/projects/xdotool/
PR: ports/114217
Submitted by: Wesley Shields <wxs at atarininja.org>
Diffstat (limited to 'x11')
-rw-r--r-- | x11/Makefile | 1 | ||||
-rw-r--r-- | x11/xdotool/Makefile | 26 | ||||
-rw-r--r-- | x11/xdotool/distinfo | 3 | ||||
-rw-r--r-- | x11/xdotool/pkg-descr | 4 |
4 files changed, 34 insertions, 0 deletions
diff --git a/x11/Makefile b/x11/Makefile index 1d51d8c27372..430ea88355a8 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -333,6 +333,7 @@ SUBDIR += xdialog SUBDIR += xditview SUBDIR += xdm + SUBDIR += xdotool SUBDIR += xdpyinfo SUBDIR += xdriinfo SUBDIR += xdtm diff --git a/x11/xdotool/Makefile b/x11/xdotool/Makefile new file mode 100644 index 000000000000..c7ed15a0a889 --- /dev/null +++ b/x11/xdotool/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: xdotool +# Date created: 29 June 2007 +# Whom: Wesley Shields <wxs@atarininja.org> +# +# $FreeBSD$ +# + +PORTNAME= xdotool +PORTVERSION= 20070625 +CATEGORIES= x11 +MASTER_SITES= http://www.semicomplete.com/files/xdotool/ \ + http://www.atarininja.org/~wxs/distfiles/ + +MAINTAINER= wxs@atarininja.org +COMMENT= Programatically simulate keyboard input or mouse activity + +USE_GNOME= pkgconfig +USE_XLIB= yes +ALL_TARGET= ${PORTNAME} + +PLIST_FILES= bin/xdotool + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/xdotool ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/x11/xdotool/distinfo b/x11/xdotool/distinfo new file mode 100644 index 000000000000..0d920c85071a --- /dev/null +++ b/x11/xdotool/distinfo @@ -0,0 +1,3 @@ +MD5 (xdotool-20070625.tar.gz) = 78b693d1684825082cdc24450c61a9ac +SHA256 (xdotool-20070625.tar.gz) = f90116afb9042a679329e0e9f92a47a6e7af69dc7a664c0d9c805b26611ab33c +SIZE (xdotool-20070625.tar.gz) = 5991 diff --git a/x11/xdotool/pkg-descr b/x11/xdotool/pkg-descr new file mode 100644 index 000000000000..0f4f601316a2 --- /dev/null +++ b/x11/xdotool/pkg-descr @@ -0,0 +1,4 @@ +Programatically (or manually) simulate keyboard input or mouse activity +using X11's XTEST extension. + +WWW: http://www.semicomplete.com/projects/xdotool/ |