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 123EC158041 for ; Sun, 25 Feb 2024 10:12:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58555E29C5; Sun, 25 Feb 2024 10:12:09 +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 3BD12E29C5 for ; Sun, 25 Feb 2024 10:12:09 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57FA734307A for ; Sun, 25 Feb 2024 10:12:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1F6A14B1 for ; Sun, 25 Feb 2024 10:12:06 +0000 (UTC) From: "Andreas Schuerch" 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 Schuerch" Message-ID: <1708855884.22fc2413208a9dc2c73c438f3c958ec0fc5e9bfc.nativemad@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/guifications/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/guifications/guifications-2.16-r1.ebuild X-VCS-Directories: x11-plugins/guifications/ X-VCS-Committer: nativemad X-VCS-Committer-Name: Andreas Schuerch X-VCS-Revision: 22fc2413208a9dc2c73c438f3c958ec0fc5e9bfc X-VCS-Branch: master Date: Sun, 25 Feb 2024 10:12:06 +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: 9acf377e-520b-4bf0-b85d-c1fa4b26d361 X-Archives-Hash: 6f59878ad674196de5041e4d04978a11 commit: 22fc2413208a9dc2c73c438f3c958ec0fc5e9bfc Author: Andreas Schuerch gentoo org> AuthorDate: Sun Feb 25 10:01:52 2024 +0000 Commit: Andreas Schuerch gentoo org> CommitDate: Sun Feb 25 10:11:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22fc2413 x11-plugins/guifications: EAPI8 bump, fix LICENSE, fix bug #853010 Closes: https://bugs.gentoo.org/853010 Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Andreas Schuerch gentoo.org> .../guifications/guifications-2.16-r1.ebuild | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/x11-plugins/guifications/guifications-2.16-r1.ebuild b/x11-plugins/guifications/guifications-2.16-r1.ebuild new file mode 100644 index 000000000000..e54eb1cf8f87 --- /dev/null +++ b/x11-plugins/guifications/guifications-2.16-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN="pidgin-${PN}" +MY_PV="${PV/_beta/beta}" +MY_P="${MY_PN}-${MY_PV}" + +DESCRIPTION="Guifications is a graphical notification plugin for pidgin" +HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" +SRC_URI="http://downloads.guifications.org/plugins//Guifications2/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="debug nls" + +RDEPEND="net-im/pidgin[gtk] + x11-libs/gtk+:2" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +src_configure() { + econf \ + $(use_enable debug ) \ + $(use_enable nls) +} + +src_install() { + default + + find "${D}" -type f -name '*.la' -delete || die "la removal failed" +}