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 0512D1382C5 for ; Tue, 6 Apr 2021 08:46:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 31BCAE08CD; Tue, 6 Apr 2021 08:46:30 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 19177E08CD for ; Tue, 6 Apr 2021 08:46:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E3D2F335C02 for ; Tue, 6 Apr 2021 08:46:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20BF4634 for ; Tue, 6 Apr 2021 08:46:27 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1617698783.6328e44d6fafb9d0fbd5d02bd5907d719cb4a10e.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-roguelike/tome/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-roguelike/tome/tome-2.3.5.ebuild X-VCS-Directories: games-roguelike/tome/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 6328e44d6fafb9d0fbd5d02bd5907d719cb4a10e X-VCS-Branch: master Date: Tue, 6 Apr 2021 08:46:27 +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: 723e2c8b-5a16-4a2f-b89f-06476d1b0ea3 X-Archives-Hash: 2bee3823b738f7d4eadb132d7a05f1d6 commit: 6328e44d6fafb9d0fbd5d02bd5907d719cb4a10e Author: Sergei Trofimovich gentoo org> AuthorDate: Tue Apr 6 08:46:14 2021 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Apr 6 08:46:23 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6328e44d games-roguelike/tome: fix spelling of tc-getPKG_CONFIG Reported-by: Agostino Sarubbo Closes: https://bugs.gentoo.org/780516 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Sergei Trofimovich gentoo.org> games-roguelike/tome/tome-2.3.5.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/games-roguelike/tome/tome-2.3.5.ebuild b/games-roguelike/tome/tome-2.3.5.ebuild index e7b97c6f370..3e388418794 100644 --- a/games-roguelike/tome/tome-2.3.5.ebuild +++ b/games-roguelike/tome/tome-2.3.5.ebuild @@ -56,7 +56,7 @@ src_prepare() { src_compile() { tc-export CC - local GENTOO_INCLUDES="" GENTOO_DEFINES="-DUSE_GCU " GENTOO_LIBS="$($(tc_getPKG_CONFIG) ncurses --libs)" + local GENTOO_INCLUDES="" GENTOO_DEFINES="-DUSE_GCU " GENTOO_LIBS="$($(tc-getPKG_CONFIG) ncurses --libs)" if use sdl || use X || use gtk || use Xaw3d; then GENTOO_DEFINES="${GENTOO_DEFINES} -DUSE_EGO_GRAPHICS -DUSE_TRANSPARENCY \ @@ -86,9 +86,9 @@ src_compile() { fi if use gtk; then - GENTOO_INCLUDES="${GENTOO_INCLUDES} $($(tc_getPKG_CONFIG) gtk+-2.0 --cflags)" + GENTOO_INCLUDES="${GENTOO_INCLUDES} $($(tc-getPKG_CONFIG) gtk+-2.0 --cflags)" GENTOO_DEFINES="${GENTOO_DEFINES} -DUSE_GTK2 " - GENTOO_LIBS="${GENTOO_LIBS} $($(tc_getPKG_CONFIG) gtk+-2.0 --libs) " + GENTOO_LIBS="${GENTOO_LIBS} $($(tc-getPKG_CONFIG) gtk+-2.0 --libs) " GTK_SRC_FILE="main-gtk2.c" GTK_OBJ_FILE="main-gtk2.o" else