diff options
author | 2021-09-20 11:41:35 +0200 | |
---|---|---|
committer | 2021-09-20 11:41:35 +0200 | |
commit | ed7c4ff7654a777b4ab65e63146310964ddef0e5 (patch) | |
tree | 9cf5c8aacdb36d4a1b09943458c32614d110bc43 /x11-misc/xdotool/xdotool-3.20210804.2.ebuild | |
parent | x11-misc/xdotool: stabilize 3.20210903.1 for amd64 (diff) | |
download | gentoo-ed7c4ff7654a777b4ab65e63146310964ddef0e5.tar.gz gentoo-ed7c4ff7654a777b4ab65e63146310964ddef0e5.tar.bz2 gentoo-ed7c4ff7654a777b4ab65e63146310964ddef0e5.zip |
x11-misc/xdotool: drop 3.20210804.2
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'x11-misc/xdotool/xdotool-3.20210804.2.ebuild')
-rw-r--r-- | x11-misc/xdotool/xdotool-3.20210804.2.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/x11-misc/xdotool/xdotool-3.20210804.2.ebuild b/x11-misc/xdotool/xdotool-3.20210804.2.ebuild deleted file mode 100644 index 307cff596bf4..000000000000 --- a/x11-misc/xdotool/xdotool-3.20210804.2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="Simulate keyboard input and mouse activity, move and resize windows" -HOMEPAGE="https://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 ~arm64 ~ppc ~ppc64 ~x86" -IUSE="examples" - -# Many the tests want to manually start Xvfb regardless of whether there -# is an X server running or not (i.e. does not play nicely with virtualx), -# some tests require x11-wm/openbox, some try to run a complete Gnome -# session. All of them require a Ruby interpreter with dev-ruby/minitest -# installed. In short, supporting tests here will need MUCH work. -RESTRICT="test" - -RDEPEND="x11-libs/libX11 - x11-libs/libXi - x11-libs/libXinerama - x11-libs/libXtst - x11-libs/libxkbcommon" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig - x11-base/xorg-proto" - -PATCHES=( - "${FILESDIR}"/${PN}-3.20210804.2-allow_xwayland.patch - "${FILESDIR}"/${PN}-3.20210804.2-no_hardcoded_pkg-config.patch - "${FILESDIR}"/${PN}-3.20210804.2-no_ldconfig.patch -) - -DOCS=( CHANGELIST README.md ) - -src_compile() { - tc-export CC LD PKG_CONFIG - emake PREFIX="${EPREFIX}/usr" -} - -src_install() { - emake PREFIX="${ED}/usr" INSTALLMAN="${ED}/usr/share/man" INSTALLLIB="${ED}/usr/$(get_libdir)" install - - use examples && DOCS+=( examples ) - einstalldocs -} |