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 B7B9615808B for ; Thu, 10 Feb 2022 12:19:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0129AE0A52; Thu, 10 Feb 2022 12:19:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 71C17E09FD for ; Thu, 10 Feb 2022 12:19:54 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6666C343162 for ; Thu, 10 Feb 2022 12:19:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA23A2CB for ; Thu, 10 Feb 2022 12:19:51 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1644495578.2dcff97b0f0973f792e22a534c97811b3267472b.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/irrlicht-mt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/irrlicht-mt/irrlicht-mt-1.9.0.4-r1.ebuild dev-games/irrlicht-mt/irrlicht-mt-1.9.0.4.ebuild X-VCS-Directories: dev-games/irrlicht-mt/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: 2dcff97b0f0973f792e22a534c97811b3267472b X-VCS-Branch: master Date: Thu, 10 Feb 2022 12:19:51 +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: 6cb290fb-848a-42b5-807d-3bd465447e7e X-Archives-Hash: 3f271d415f3c253f1efbea0529ae032b commit: 2dcff97b0f0973f792e22a534c97811b3267472b Author: Marek Szuba gentoo org> AuthorDate: Thu Feb 10 12:08:30 2022 +0000 Commit: Marek Szuba gentoo org> CommitDate: Thu Feb 10 12:19:38 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dcff97b dev-games/irrlicht-mt: headers live in a separate package now Note that src_compile still uses bundled headers. This is intentional - if they are not the same as those from dev-games/irrlicht-mt-headers something is SERIOUSLY wrong, and that way we do not have to mess with build scripts. Closes: https://bugs.gentoo.org/833052 Signed-off-by: Marek Szuba gentoo.org> ...licht-mt-1.9.0.4.ebuild => irrlicht-mt-1.9.0.4-r1.ebuild} | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/dev-games/irrlicht-mt/irrlicht-mt-1.9.0.4.ebuild b/dev-games/irrlicht-mt/irrlicht-mt-1.9.0.4-r1.ebuild similarity index 69% rename from dev-games/irrlicht-mt/irrlicht-mt-1.9.0.4.ebuild rename to dev-games/irrlicht-mt/irrlicht-mt-1.9.0.4-r1.ebuild index 34b915793472..15ffef6d4c61 100644 --- a/dev-games/irrlicht-mt/irrlicht-mt-1.9.0.4.ebuild +++ b/dev-games/irrlicht-mt/irrlicht-mt-1.9.0.4-r1.ebuild @@ -17,7 +17,8 @@ LICENSE="ZLIB" SLOT="0" KEYWORDS="~amd64 ~riscv" -RDEPEND="media-libs/libpng:0= +RDEPEND="~dev-games/irrlicht-mt-headers-${PV} + media-libs/libpng:0= sys-libs/zlib virtual/jpeg:0 virtual/opengl @@ -26,4 +27,11 @@ RDEPEND="media-libs/libpng:0= DEPEND="${RDEPEND} x11-base/xorg-proto" -S="${WORKDIR}/${MY_P}" +S="${WORKDIR}"/${MY_P} + +src_install() { + cmake_src_install + + # We package these separately + rm -r "${ED}"/usr/include/${PN/-/} || die "Failed to exclude header files from installation" +}