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 8689D138359 for ; Thu, 2 Jul 2020 07:21:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9A2FE088F; Thu, 2 Jul 2020 07:21:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9FC81E088F for ; Thu, 2 Jul 2020 07:21:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AA45134F36C for ; Thu, 2 Jul 2020 07:21:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 624412B8 for ; Thu, 2 Jul 2020 07:21:40 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1593674488.7ef4eaad32535af64538737db13cef06cfb7fbe4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xnee/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xnee/xnee-3.19-r1.ebuild X-VCS-Directories: x11-misc/xnee/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7ef4eaad32535af64538737db13cef06cfb7fbe4 X-VCS-Branch: master Date: Thu, 2 Jul 2020 07:21:40 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fdfa7cfa-fa0c-4300-bad4-ecff2cd347d6 X-Archives-Hash: b875ae70858f5f4ef803cbae9d40b631 commit: 7ef4eaad32535af64538737db13cef06cfb7fbe4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jul 2 07:21:10 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jul 2 07:21:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ef4eaad x11-misc/xnee: Drop 3.19-r1 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner gentoo.org> x11-misc/xnee/xnee-3.19-r1.ebuild | 73 --------------------------------------- 1 file changed, 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 0d71add730d..00000000000 --- 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 -}