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 8282B1382C5 for ; Sat, 2 Jan 2021 23:32:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82BECE081A; Sat, 2 Jan 2021 23:32:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4D680E081A for ; Sat, 2 Jan 2021 23:32:41 +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 D9E5A340FDD for ; Sat, 2 Jan 2021 23:32:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C871D487 for ; Sat, 2 Jan 2021 23:32:36 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1609630339.a96a257e0e3856f454539f264fecbecf664ad06b.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmsystemtray/, x11-plugins/wmsystemtray/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmsystemtray/files/wmsystemtray-1.4-ar.patch x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild X-VCS-Directories: x11-plugins/wmsystemtray/ x11-plugins/wmsystemtray/files/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: a96a257e0e3856f454539f264fecbecf664ad06b X-VCS-Branch: master Date: Sat, 2 Jan 2021 23:32:36 +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: b493b807-f6e2-46aa-a576-7929be63b11f X-Archives-Hash: 9d16b4d1878bf60734d6e1aa998a9ed8 commit: a96a257e0e3856f454539f264fecbecf664ad06b Author: Bernard Cafarelli gentoo org> AuthorDate: Sat Jan 2 23:24:48 2021 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sat Jan 2 23:32:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a96a257e x11-plugins/wmsystemtray: do not call ar directly Closes: https://bugs.gentoo.org/726224 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Bernard Cafarelli gentoo.org> x11-plugins/wmsystemtray/files/wmsystemtray-1.4-ar.patch | 11 +++++++++++ x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild | 10 +++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/x11-plugins/wmsystemtray/files/wmsystemtray-1.4-ar.patch b/x11-plugins/wmsystemtray/files/wmsystemtray-1.4-ar.patch new file mode 100644 index 00000000000..785893a989f --- /dev/null +++ b/x11-plugins/wmsystemtray/files/wmsystemtray-1.4-ar.patch @@ -0,0 +1,11 @@ +diff -Naur wmsystemtray-1.4.orig/configure.ac wmsystemtray-1.4/configure.ac +--- wmsystemtray-1.4.orig/configure.ac 2014-02-23 03:14:09.000000000 +0100 ++++ wmsystemtray-1.4/configure.ac 2021-01-03 00:23:12.004713692 +0100 +@@ -9,6 +9,7 @@ + AC_SUBST(VERSION) + + # Checks for programs. ++AM_PROG_AR + AC_PROG_AWK + AC_PROG_CC + AC_PROG_CC_STDC diff --git a/x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild b/x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild index 568d2c1936e..47d0230996a 100644 --- a/x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild +++ b/x11-plugins/wmsystemtray/wmsystemtray-1.4-r2.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit autotools DESCRIPTION="a system tray dockapp with the ability to display more than just four tray icons" HOMEPAGE="https://sourceforge.net/projects/wmsystemtray/" @@ -16,3 +17,10 @@ DEPEND="x11-libs/libXext x11-libs/libXmu x11-libs/libXpm" RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-ar.patch ) + +src_prepare() { + default + eautoreconf +}