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 09024158096 for ; Fri, 7 Oct 2022 22:30:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D0D3E09EA; Fri, 7 Oct 2022 22:30:13 +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 ECE32E09EA for ; Fri, 7 Oct 2022 22:30:12 +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 B8353340DAB for ; Fri, 7 Oct 2022 22:30:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D94625BF for ; Fri, 7 Oct 2022 22:30:09 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1665181797.83892ec7833ff8ff9ff0e909b7a277475ceaf3bf.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-panel/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-base/gnome-panel/gnome-panel-3.44.0-r1.ebuild gnome-base/gnome-panel/gnome-panel-3.44.0-r2.ebuild X-VCS-Directories: gnome-base/gnome-panel/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 83892ec7833ff8ff9ff0e909b7a277475ceaf3bf X-VCS-Branch: master Date: Fri, 7 Oct 2022 22:30:09 +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: 2d027026-3d05-42fb-bd3f-89170affaa5d X-Archives-Hash: 43c3392aa084862f3d66148e2578d885 commit: 83892ec7833ff8ff9ff0e909b7a277475ceaf3bf Author: Pascal Jäger leimstift de> AuthorDate: Tue Oct 4 17:36:30 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Oct 7 22:29:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83892ec7 gnome-base/gnome-panel: fix elogind build Closes: https://bugs.gentoo.org/787431 Signed-off-by: Pascal Jäger leimstift.de> Signed-off-by: Matt Turner gentoo.org> .../{gnome-panel-3.44.0-r1.ebuild => gnome-panel-3.44.0-r2.ebuild} | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnome-base/gnome-panel/gnome-panel-3.44.0-r1.ebuild b/gnome-base/gnome-panel/gnome-panel-3.44.0-r2.ebuild similarity index 80% rename from gnome-base/gnome-panel/gnome-panel-3.44.0-r1.ebuild rename to gnome-base/gnome-panel/gnome-panel-3.44.0-r2.ebuild index 248101e116ee..e2782d5ff07f 100644 --- a/gnome-base/gnome-panel/gnome-panel-3.44.0-r1.ebuild +++ b/gnome-base/gnome-panel/gnome-panel-3.44.0-r2.ebuild @@ -59,6 +59,8 @@ src_configure() { # to force a manual recheck. Only update the explicit version if the # "PKG_CHECK_MODULES([MENU], ...)" block did not change; otherwise adjust # elogind conditional block below accordingly first. + # DO NOT just change the version, look in configure.ac in which PKG_CHECK_MODULES-sections + # libsystemd is used and check if there are new sections where it is used! if ver_test ${PV} -ne 3.44.0; then die "Maintainer has not checked over packages MENU pkg-config deps for elogind support" fi @@ -66,6 +68,10 @@ src_configure() { if use elogind; then local pkgconfig="$(tc-getPKG_CONFIG)" myconf+=( + ACTION_BUTTON_CFLAGS="$(${pkgconfig} --cflags gio-unix-2.0 gtk+-3.0 libelogind x11)" + ACTION_BUTTON_LIBS="$(${pkgconfig} --libs gio-unix-2.0 gtk+-3.0 libelogind x11)" + LAUNCHER_CFLAGS="$(${pkgconfig} --cflags gio-unix-2.0 gtk+-3.0 libgnome-menu-3.0 libelogind)" + LAUNCHER_LIBS="$(${pkgconfig} --libs gio-unix-2.0 gtk+-3.0 libgnome-menu-3.0 libelogind)" MENU_CFLAGS="$(${pkgconfig} --cflags gdm gio-unix-2.0 gtk+-3.0 libgnome-menu-3.0 libelogind)" MENU_LIBS="$(${pkgconfig} --libs gdm gio-unix-2.0 gtk+-3.0 libgnome-menu-3.0 libelogind)" )