Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnee/
Date: Thu, 02 Jul 2020 07:21:43
Message-Id: 1593674488.7ef4eaad32535af64538737db13cef06cfb7fbe4.asturm@gentoo
1 commit: 7ef4eaad32535af64538737db13cef06cfb7fbe4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 07:21:10 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 07:21:28 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ef4eaad
7
8 x11-misc/xnee: Drop 3.19-r1
9
10 Package-Manager: Portage-2.3.103, Repoman-2.3.23
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 x11-misc/xnee/xnee-3.19-r1.ebuild | 73 ---------------------------------------
14 1 file changed, 73 deletions(-)
15
16 diff --git a/x11-misc/xnee/xnee-3.19-r1.ebuild b/x11-misc/xnee/xnee-3.19-r1.ebuild
17 deleted file mode 100644
18 index 0d71add730d..00000000000
19 --- a/x11-misc/xnee/xnee-3.19-r1.ebuild
20 +++ /dev/null
21 @@ -1,73 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -inherit autotools desktop flag-o-matic
27 -
28 -DESCRIPTION="Program suite to record, replay and distribute user actions"
29 -HOMEPAGE="https://xnee.wordpress.com/"
30 -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
31 -
32 -LICENSE="GPL-3"
33 -SLOT="0"
34 -KEYWORDS="amd64 ~x86"
35 -IUSE="gnome static-libs xosd"
36 -
37 -RDEPEND="
38 - x11-libs/libX11
39 - x11-libs/libXau
40 - x11-libs/libXdmcp
41 - x11-libs/libXext
42 - x11-libs/libXi
43 - x11-libs/libXtst
44 - x11-libs/libxcb
45 - gnome? (
46 - x11-libs/gtk+:2
47 - >=gnome-base/libgnomeui-2
48 - >=gnome-base/gconf-2
49 - )
50 -"
51 -DEPEND="
52 - ${RDEPEND}
53 - x11-base/xorg-proto
54 - virtual/pkgconfig
55 - sys-devel/gettext
56 - gnome? ( virtual/imagemagick-tools[jpeg,png] )
57 -"
58 -
59 -# This needs RECORD extension from X.org server which isn't necessarily
60 -# enabled. Xlib: extension "RECORD" missing on display ":0.0".
61 -RESTRICT="test"
62 -PATCHES=(
63 - "${FILESDIR}"/${PN}-3.18-linker.patch
64 -)
65 -
66 -src_prepare() {
67 - default
68 - eautoreconf
69 -}
70 -
71 -src_configure() {
72 - append-cflags -fcommon
73 - econf \
74 - $(use_enable gnome gui) \
75 - $(use_enable static-libs static) \
76 - $(use_enable xosd buffer_verbose) \
77 - $(use_enable xosd verbose) \
78 - $(use_enable xosd) \
79 - --disable-gnome-applet \
80 - --disable-static-programs \
81 - --enable-cli \
82 - --enable-lib
83 -}
84 -
85 -src_test() {
86 - Xemake check
87 -}
88 -
89 -src_install() {
90 - default
91 - dodoc AUTHORS BUGS ChangeLog FAQ NEWS README TODO
92 - use gnome && make_desktop_entry gnee Gnee ${PN} "Utility;GTK"
93 - find "${ED}" -name '*.la' -delete || die
94 -}