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 27059158094 for ; Tue, 11 Oct 2022 03:17:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F33B9E084A; Tue, 11 Oct 2022 03:17:46 +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 DD8ECE084A for ; Tue, 11 Oct 2022 03:17:46 +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 BAD6B341204 for ; Tue, 11 Oct 2022 03:17:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBD6C5B2 for ; Tue, 11 Oct 2022 03:17:43 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1665457728.4046aacb83395ab4e0f227c85d72736cb9fedd77.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-board/xskat/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-board/xskat/xskat-4.0-r2.ebuild X-VCS-Directories: games-board/xskat/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 4046aacb83395ab4e0f227c85d72736cb9fedd77 X-VCS-Branch: master Date: Tue, 11 Oct 2022 03:17:43 +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: 4d3cc8c3-c847-4a48-aefb-0c7663d1e2dc X-Archives-Hash: c3d4c974c53897ac66d9969a5655a098 commit: 4046aacb83395ab4e0f227c85d72736cb9fedd77 Author: Ionen Wolkens gentoo org> AuthorDate: Tue Oct 11 02:31:05 2022 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Tue Oct 11 03:08:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4046aacb games-board/xskat: adjust CPPFLAGS, move xorg-proto to DEPEND Signed-off-by: Ionen Wolkens gentoo.org> games-board/xskat/xskat-4.0-r2.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/games-board/xskat/xskat-4.0-r2.ebuild b/games-board/xskat/xskat-4.0-r2.ebuild index da925919f0cc..e32197c981c3 100644 --- a/games-board/xskat/xskat-4.0-r2.ebuild +++ b/games-board/xskat/xskat-4.0-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,13 +15,14 @@ LICENSE="freedist" SLOT="0" KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86" -DEPEND="x11-libs/libX11" +COMMON_DEPEND="x11-libs/libX11" RDEPEND=" - ${DEPEND} + ${COMMON_DEPEND} media-fonts/font-misc-misc" -BDEPEND=" - virtual/pkgconfig +DEPEND=" + ${COMMON_DEPEND} x11-base/xorg-proto" +BDEPEND="virtual/pkgconfig" src_configure() { :; } @@ -29,7 +30,8 @@ src_compile() { tc-export CC local emakeargs=( - CFLAGS="${CFLAGS} ${CPPFLAGS}" + CFLAGS="${CFLAGS} ${CPPFLAGS} $($(tc-getPKG_CONFIG) --cflags x11 || die)" + CPPFLAGS= # force everywhere above, but avoid implicit duplication LDFLAGS="${LDFLAGS} $($(tc-getPKG_CONFIG) --libs x11 || die)" )