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 1159E158041 for ; Sun, 25 Feb 2024 11:51:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5891FE29F0; Sun, 25 Feb 2024 11:51:01 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 42D7FE29F0 for ; Sun, 25 Feb 2024 11:51:01 +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 6F8CD335DE9 for ; Sun, 25 Feb 2024 11:51:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB173955 for ; Sun, 25 Feb 2024 11:50:58 +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: <1708861841.c4ec4c1c97d2d32abe90ef7172743b20ed1ed1b9.nativemad@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-led-notification/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1-r1.ebuild X-VCS-Directories: x11-plugins/pidgin-led-notification/ X-VCS-Committer: nativemad X-VCS-Committer-Name: Andreas Schuerch X-VCS-Revision: c4ec4c1c97d2d32abe90ef7172743b20ed1ed1b9 X-VCS-Branch: master Date: Sun, 25 Feb 2024 11:50:58 +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: de08acc5-83b8-40ca-a4f4-17be4cc95110 X-Archives-Hash: af39374b4cd5920309e7665e8464d2de commit: c4ec4c1c97d2d32abe90ef7172743b20ed1ed1b9 Author: Andreas Schuerch gentoo org> AuthorDate: Sun Feb 25 11:49:15 2024 +0000 Commit: Andreas Schuerch gentoo org> CommitDate: Sun Feb 25 11:50:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4ec4c1c x11-plugins/pidgin-led-notification: EAPI8 bump, fix LICENSE Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Andreas Schuerch gentoo.org> .../pidgin-led-notification-0.1-r1.ebuild | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1-r1.ebuild b/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1-r1.ebuild new file mode 100644 index 000000000000..da59b6d4d098 --- /dev/null +++ b/x11-plugins/pidgin-led-notification/pidgin-led-notification-0.1-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +MY_PN="${PN/pidgin-/}" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Pidgin plugin to notify by writing user defined strings to (led control) files" +HOMEPAGE="https://sites.google.com/site/simohmattila/led-notification" +SRC_URI="https://sites.google.com/site/simohmattila/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~riscv ~x86" + +RDEPEND=" + net-im/pidgin[gtk] + x11-libs/gtk+:2" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${P}-hardware.patch ) + +src_compile() { + $(tc-getCC) \ + ${CFLAGS} -fPIC \ + ${CPPFLAGS} \ + ${LDFLAGS} \ + $($(tc-getPKG_CONFIG) --cflags gtk+-2.0 pidgin) \ + -shared ${MY_PN}.c -o ${MY_PN}.so \ + $($(tc-getPKG_CONFIG) --libs gtk+-2.0 pidgin) || die +} + +src_install() { + exeinto /usr/$(get_libdir)/pidgin + doexe ${MY_PN}.so + + einstalldocs +}