From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0C6501382F6 for ; Thu, 7 Jul 2016 19:48:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B58FE08B8; Thu, 7 Jul 2016 19:48:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0B62E08B2 for ; Thu, 7 Jul 2016 19:48:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 493203407E6 for ; Thu, 7 Jul 2016 19:48:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C9C9B2446 for ; Thu, 7 Jul 2016 19:48:14 +0000 (UTC) From: "Austin English" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" Message-ID: <1467920820.c3ef0d77ddf5221185872f062f10233d5d844aa9.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdotool/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xdotool/metadata.xml x11-misc/xdotool/xdotool-3.20150503.1-r1.ebuild X-VCS-Directories: x11-misc/xdotool/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: c3ef0d77ddf5221185872f062f10233d5d844aa9 X-VCS-Branch: master Date: Thu, 7 Jul 2016 19:48:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a6b59dc2-61bc-4ce8-b2f4-b01944e1d1f2 X-Archives-Hash: 4aa26f0ed9119989b0aaf3c4af693109 commit: c3ef0d77ddf5221185872f062f10233d5d844aa9 Author: Austin English gentoo org> AuthorDate: Thu Jul 7 19:14:44 2016 +0000 Commit: Austin English gentoo org> CommitDate: Thu Jul 7 19:47:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3ef0d77 x11-misc/xdotool: bump to EAPI 6, add maintainer-needed Package-Manager: portage-2.2.28 x11-misc/xdotool/metadata.xml | 2 + x11-misc/xdotool/xdotool-3.20150503.1-r1.ebuild | 51 +++++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/x11-misc/xdotool/metadata.xml b/x11-misc/xdotool/metadata.xml index c2d5578..2355eb9 100644 --- a/x11-misc/xdotool/metadata.xml +++ b/x11-misc/xdotool/metadata.xml @@ -1,10 +1,12 @@ + 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. semicomplete + jordansissel/xdotool diff --git a/x11-misc/xdotool/xdotool-3.20150503.1-r1.ebuild b/x11-misc/xdotool/xdotool-3.20150503.1-r1.ebuild new file mode 100644 index 0000000..5cb1c6e --- /dev/null +++ b/x11-misc/xdotool/xdotool-3.20150503.1-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit 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="https://github.com/jordansissel/xdotool/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="examples" + +RDEPEND="x11-libs/libXtst + x11-libs/libX11 + x11-libs/libXinerama + x11-libs/libxkbcommon" +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() { + default + sed -i \ + -e "s/installheader post-install$/installheader/" \ + -e 's:\:$(PKG_CONFIG):' \ + Makefile || die "sed failed" +} + +src_compile() { + tc-export CC LD PKG_CONFIG + default +} + +src_install() { + emake PREFIX="${D}usr" INSTALLMAN="${D}usr/share/man" INSTALLLIB="${D}usr/$(get_libdir)" install + + dodoc CHANGELIST README + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins examples/* + fi +}