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 85B0213835A for ; Tue, 20 Apr 2021 01:42:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1A54E0863; Tue, 20 Apr 2021 01:42:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 9AD08E0863 for ; Tue, 20 Apr 2021 01:42:44 +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 BC86C335D2E for ; Tue, 20 Apr 2021 01:42:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 203C6646 for ; Tue, 20 Apr 2021 01:42:41 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1618882943.6c80cd6b64de6fa402412eae6b1dd0b8f51cc135.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-xmpp-receipts/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.8.ebuild X-VCS-Directories: x11-plugins/pidgin-xmpp-receipts/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6c80cd6b64de6fa402412eae6b1dd0b8f51cc135 X-VCS-Branch: master Date: Tue, 20 Apr 2021 01:42: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: 0498789a-dae7-4127-be23-d5d78d040103 X-Archives-Hash: 600f3f9a4da07758b3fedbd3e792e14f commit: 6c80cd6b64de6fa402412eae6b1dd0b8f51cc135 Author: Sam James gentoo org> AuthorDate: Tue Apr 20 01:29:42 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 20 01:42:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c80cd6b x11-plugins/pidgin-xmpp-receipts: port to EAPI 7 Signed-off-by: Sam James gentoo.org> .../pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.8.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.8.ebuild b/x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.8.ebuild index f16b5e0b5d7..c62d3d1c907 100644 --- a/x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.8.ebuild +++ b/x11-plugins/pidgin-xmpp-receipts/pidgin-xmpp-receipts-0.8.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 inherit vcs-snapshot toolchain-funcs @@ -12,20 +12,19 @@ SRC_URI="https://github.com/noonien-d/pidgin-xmpp-receipts/archive/release_${PV} LICENSE="GPL-3" SLOT="0" KEYWORDS="amd64" -IUSE="" RDEPEND="net-im/pidgin[gtk]" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" src_compile() { - GTK_PIDGIN_INCLUDES=$($(tc-getPKG_CONFIG) --cflags gtk+-2.0 pidgin) + GTK_PIDGIN_INCLUDES="$($(tc-getPKG_CONFIG) --cflags gtk+-2.0 pidgin)" $(tc-getCC) ${LDFLAGS} -shared ${CFLAGS} -fpic ${GTK_PIDGIN_INCLUDES} -o ${PN/pidgin-/}.so ${PN/pidgin-/}.c || die } src_install() { PLUGIN_DIR_PIDGIN=$($(tc-getPKG_CONFIG) --variable=plugindir pidgin) - dodir "${PLUGIN_DIR_PIDGIN}" + insinto "${PLUGIN_DIR_PIDGIN}" doins ${PN/pidgin-/}.so }