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 17B041382C5 for ; Thu, 10 Jun 2021 15:36:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E841E0930; Thu, 10 Jun 2021 15:36:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 5475BE0931 for ; Thu, 10 Jun 2021 15:36:16 +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 82D173409F1 for ; Thu, 10 Jun 2021 15:36:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D7837AE for ; Thu, 10 Jun 2021 15:36:13 +0000 (UTC) From: "Adam Feldman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Adam Feldman" Message-ID: <1623334904.8d8e6b164dd12031f162241aeac4d9b564186f4c.np-hardass@gentoo> Subject: [gentoo-commits] proj/gentoo-mate:master commit in: mate-extra/mate-system-monitor/ X-VCS-Repository: proj/gentoo-mate X-VCS-Files: mate-extra/mate-system-monitor/mate-system-monitor-9999.ebuild X-VCS-Directories: mate-extra/mate-system-monitor/ X-VCS-Committer: np-hardass X-VCS-Committer-Name: Adam Feldman X-VCS-Revision: 8d8e6b164dd12031f162241aeac4d9b564186f4c X-VCS-Branch: master Date: Thu, 10 Jun 2021 15:36:13 +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: 9ef14737-35b9-4cbd-ba04-fcb2e604e7f6 X-Archives-Hash: 2eb3113f31dce65fd15136ec89f5a019 commit: 8d8e6b164dd12031f162241aeac4d9b564186f4c Author: Adam Feldman gentoo org> AuthorDate: Thu Jun 10 14:21:44 2021 +0000 Commit: Adam Feldman gentoo org> CommitDate: Thu Jun 10 14:21:44 2021 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=8d8e6b16 mate-extra/mate-system-monitor: Update 9999 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Adam Feldman gentoo.org> mate-extra/mate-system-monitor/mate-system-monitor-9999.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mate-extra/mate-system-monitor/mate-system-monitor-9999.ebuild b/mate-extra/mate-system-monitor/mate-system-monitor-9999.ebuild index a489ee3..1c7ebff 100644 --- a/mate-extra/mate-system-monitor/mate-system-monitor-9999.ebuild +++ b/mate-extra/mate-system-monitor/mate-system-monitor-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit mate +inherit mate toolchain-funcs if [[ ${PV} != 9999 ]]; then KEYWORDS="~amd64 ~arm ~arm64 ~x86" @@ -51,9 +51,10 @@ src_configure() { if use elogind || use systemd; then myconf+=( --enable-systemd ) if use elogind; then + local pkgconfig="$(tc-getPKG_CONFIG)" myconf+=( - SYSTEMD_CFLAGS=`pkg-config --cflags "libelogind" 2>/dev/null` - SYSTEMD_LIBS=`pkg-config --libs "libelogind" 2>/dev/null` + SYSTEMD_CFLAGS="$(${pkgconfig} --cflags 'libelogind')" + SYSTEMD_LIBS="$(${pkgconfig} --libs 'libelogind')" ) fi else