summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-07-02 09:21:10 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2020-07-02 09:21:28 +0200
commit7ef4eaad32535af64538737db13cef06cfb7fbe4 (patch)
tree014e249c06e93b4384d5761dcbff041cc72a38dd /x11-misc
parentx11-misc/xnee: Disable libgnomeui dependency (diff)
downloadgentoo-7ef4eaad32535af64538737db13cef06cfb7fbe4.tar.gz
gentoo-7ef4eaad32535af64538737db13cef06cfb7fbe4.tar.bz2
gentoo-7ef4eaad32535af64538737db13cef06cfb7fbe4.zip
x11-misc/xnee: Drop 3.19-r1
Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/xnee/xnee-3.19-r1.ebuild73
1 files changed, 0 insertions, 73 deletions
diff --git a/x11-misc/xnee/xnee-3.19-r1.ebuild b/x11-misc/xnee/xnee-3.19-r1.ebuild
deleted file mode 100644
index 0d71add730d5..000000000000
--- a/x11-misc/xnee/xnee-3.19-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools desktop flag-o-matic
-
-DESCRIPTION="Program suite to record, replay and distribute user actions"
-HOMEPAGE="https://xnee.wordpress.com/"
-SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~x86"
-IUSE="gnome static-libs xosd"
-
-RDEPEND="
- x11-libs/libX11
- x11-libs/libXau
- x11-libs/libXdmcp
- x11-libs/libXext
- x11-libs/libXi
- x11-libs/libXtst
- x11-libs/libxcb
- gnome? (
- x11-libs/gtk+:2
- >=gnome-base/libgnomeui-2
- >=gnome-base/gconf-2
- )
-"
-DEPEND="
- ${RDEPEND}
- x11-base/xorg-proto
- virtual/pkgconfig
- sys-devel/gettext
- gnome? ( virtual/imagemagick-tools[jpeg,png] )
-"
-
-# This needs RECORD extension from X.org server which isn't necessarily
-# enabled. Xlib: extension "RECORD" missing on display ":0.0".
-RESTRICT="test"
-PATCHES=(
- "${FILESDIR}"/${PN}-3.18-linker.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- append-cflags -fcommon
- econf \
- $(use_enable gnome gui) \
- $(use_enable static-libs static) \
- $(use_enable xosd buffer_verbose) \
- $(use_enable xosd verbose) \
- $(use_enable xosd) \
- --disable-gnome-applet \
- --disable-static-programs \
- --enable-cli \
- --enable-lib
-}
-
-src_test() {
- Xemake check
-}
-
-src_install() {
- default
- dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
- use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
- find "${ED}" -name '*.la' -delete || die
-}