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 5043A158041 for ; Sun, 25 Feb 2024 11:37:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95BD1E29DD; Sun, 25 Feb 2024 11:37:43 +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 6EE22E29DD for ; Sun, 25 Feb 2024 11:37:43 +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 77FE3335DE9 for ; Sun, 25 Feb 2024 11:37:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1686D955 for ; Sun, 25 Feb 2024 11:37:41 +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: <1708861044.2dc060c1f907e35648bacaafd25e6221ddd90bc9.nativemad@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-libnotify/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14-r2.ebuild X-VCS-Directories: x11-plugins/pidgin-libnotify/ X-VCS-Committer: nativemad X-VCS-Committer-Name: Andreas Schuerch X-VCS-Revision: 2dc060c1f907e35648bacaafd25e6221ddd90bc9 X-VCS-Branch: master Date: Sun, 25 Feb 2024 11:37:41 +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: f312d183-41eb-4b4d-bdff-f11ec9fd5cbc X-Archives-Hash: 670f3bc8702aa536d6dbed364254b451 commit: 2dc060c1f907e35648bacaafd25e6221ddd90bc9 Author: Andreas Schuerch gentoo org> AuthorDate: Sun Feb 25 11:35:41 2024 +0000 Commit: Andreas Schuerch gentoo org> CommitDate: Sun Feb 25 11:37:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dc060c1 x11-plugins/pidgin-libnotify: EAPI8 bump, fix LICENSE Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Andreas Schuerch gentoo.org> .../pidgin-libnotify-0.14-r2.ebuild | 42 ++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14-r2.ebuild b/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14-r2.ebuild new file mode 100644 index 000000000000..355ebc642121 --- /dev/null +++ b/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14-r2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Pidgin-libnotify provides popups for pidgin via a libnotify interface" +HOMEPAGE="https://gaim-libnotify.sourceforge.net/" +SRC_URI="mirror://sourceforge/gaim-libnotify/${P}.tar.gz + mirror://debian/pool/main/p/${PN}/${PN}_${PV}-4.debian.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~riscv ~x86" +IUSE="nls debug" + +RDEPEND=">=x11-libs/libnotify-0.3.2 + net-im/pidgin[gtk] + x11-libs/gtk+:2" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${WORKDIR}/debian/patches" + "${FILESDIR}/${P}-libnotify-0.7.patch" +) + +src_prepare() { + default + sed -i -e '/CFLAGS/s:-g3::' configure || die "sed failed" +} + +src_configure() { + econf \ + --disable-static \ + $(use_enable debug) \ + $(use_enable nls) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die "Pruning failed" +}