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 448C6158086 for ; Thu, 18 Nov 2021 04:42:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0EEDE08BD; Thu, 18 Nov 2021 04:42:38 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C26D9E08A2 for ; Thu, 18 Nov 2021 04:42:37 +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 8FE72342E3D for ; Thu, 18 Nov 2021 04:42:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 096901C8 for ; Thu, 18 Nov 2021 04:42:35 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1637210346.f64e08a7c84bd2ccd1611f7b845e5138e815bbd5.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/openjdk/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/openjdk/openjdk-11.0.13_p8.ebuild X-VCS-Directories: dev-java/openjdk/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: f64e08a7c84bd2ccd1611f7b845e5138e815bbd5 X-VCS-Branch: master Date: Thu, 18 Nov 2021 04:42:35 +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: 2cc07ce9-e27b-4dd7-89e2-dbe351ae3286 X-Archives-Hash: d70fb242cddb1be575a9a979c883a42e commit: f64e08a7c84bd2ccd1611f7b845e5138e815bbd5 Author: Georgy Yakovlev gentoo org> AuthorDate: Thu Nov 18 04:10:58 2021 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu Nov 18 04:39:06 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f64e08a7 dev-java/openjdk: fix build failure with USE=javafx Closes: https://bugs.gentoo.org/822612 Signed-off-by: Georgy Yakovlev gentoo.org> dev-java/openjdk/openjdk-11.0.13_p8.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-java/openjdk/openjdk-11.0.13_p8.ebuild b/dev-java/openjdk/openjdk-11.0.13_p8.ebuild index 585f789e5f81..a6e8f0af875b 100644 --- a/dev-java/openjdk/openjdk-11.0.13_p8.ebuild +++ b/dev-java/openjdk/openjdk-11.0.13_p8.ebuild @@ -178,6 +178,11 @@ src_configure() { ) if use javafx; then + # this is not useful for users, just for upstream developers + # build system compares mesa version in md file + # https://bugs.gentoo.org/822612 + export LEGAL_EXCLUDES=mesa3d.md + local zip="${EPREFIX%/}/usr/$(get_libdir)/openjfx-${SLOT}/javafx-exports.zip" if [[ -r ${zip} ]]; then myconf+=( --with-import-modules="${zip}" )