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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AF33815800F for ; Sat, 28 Jan 2023 13:29:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0116CE0909; Sat, 28 Jan 2023 13:29:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C211EE0909 for ; Sat, 28 Jan 2023 13:29:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D18DC340FFA for ; Sat, 28 Jan 2023 13:29:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33137895 for ; Sat, 28 Jan 2023 13:29:04 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1674912531.d83d61ca1beb6951f857aa67151130aa4f999245.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-indicator-applet/ X-VCS-Repository: repo/gentoo X-VCS-Files: mate-extra/mate-indicator-applet/mate-indicator-applet-1.26.0-r1.ebuild X-VCS-Directories: mate-extra/mate-indicator-applet/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: d83d61ca1beb6951f857aa67151130aa4f999245 X-VCS-Branch: master Date: Sat, 28 Jan 2023 13:29:04 +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: 978e9450-6b8f-432c-bc99-ae3adc9ad73f X-Archives-Hash: bfdbd68adfd3259e6e3709e3dc0f6c73 commit: d83d61ca1beb6951f857aa67151130aa4f999245 Author: Pacho Ramos gentoo org> AuthorDate: Sat Jan 28 12:48:55 2023 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Jan 28 13:28:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d83d61ca mate-extra/mate-indicator-applet: Use Ayatana indicators Closes: https://bugs.gentoo.org/887705 Signed-off-by: Pacho Ramos gentoo.org> .../mate-indicator-applet-1.26.0-r1.ebuild | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/mate-extra/mate-indicator-applet/mate-indicator-applet-1.26.0-r1.ebuild b/mate-extra/mate-indicator-applet/mate-indicator-applet-1.26.0-r1.ebuild new file mode 100644 index 000000000000..95ffd6971d79 --- /dev/null +++ b/mate-extra/mate-indicator-applet/mate-indicator-applet-1.26.0-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit mate + +if [[ ${PV} != 9999 ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86" +fi + +DESCRIPTION="MATE indicator applet" +LICENSE="GPL-3 GPL-3+ LGPL-2+ LGPL-3+" +SLOT="0" + +IUSE="" + +COMMON_DEPEND=" + dev-libs/libayatana-indicator:3 + >=mate-base/mate-panel-1.17.0 + >=x11-libs/gtk+-3.22:3 +" + +RDEPEND="${COMMON_DEPEND} + virtual/libintl +" + +BDEPEND="${COMMON_DEPEND} + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_configure() { + mate_src_configure \ + --with-ayatana-indicators +}