From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 4E43115827B for ; Sat, 23 Aug 2025 16:49:00 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3C478340CF2 for ; Sat, 23 Aug 2025 16:49:00 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 37CA3110560; Sat, 23 Aug 2025 16:48:59 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 bobolink.gentoo.org (Postfix) with ESMTPS id 2DEBD110560 for ; Sat, 23 Aug 2025 16:48:59 +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 ADF57340CF2 for ; Sat, 23 Aug 2025 16:48:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 145DE34CD for ; Sat, 23 Aug 2025 16:48:57 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1755967728.a657effe695c0ef0063ee18694205e01b4fd2d92.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-visualization/gnuplot/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-visualization/gnuplot/gnuplot-6.0.3.ebuild X-VCS-Directories: sci-visualization/gnuplot/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: a657effe695c0ef0063ee18694205e01b4fd2d92 X-VCS-Branch: master Date: Sat, 23 Aug 2025 16:48:57 +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: 2782ba06-dbe3-4499-84f4-40b799d41d9e X-Archives-Hash: 99504cc53fb2bcdefb9f099cc3328c81 commit: a657effe695c0ef0063ee18694205e01b4fd2d92 Author: Ulrich Müller gentoo org> AuthorDate: Sat Aug 23 16:47:49 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Aug 23 16:48:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a657effe sci-visualization/gnuplot: Install the pre-built gnuplot.pdf Closes: https://bugs.gentoo.org/960528 Signed-off-by: Ulrich Müller gentoo.org> sci-visualization/gnuplot/gnuplot-6.0.3.ebuild | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/sci-visualization/gnuplot/gnuplot-6.0.3.ebuild b/sci-visualization/gnuplot/gnuplot-6.0.3.ebuild index a3c0e518034f..f8e95ce628ac 100644 --- a/sci-visualization/gnuplot/gnuplot-6.0.3.ebuild +++ b/sci-visualization/gnuplot/gnuplot-6.0.3.ebuild @@ -29,9 +29,7 @@ LICENSE="gnuplot" SLOT="0" IUSE="amos aqua bitmap cairo doc examples +gd gpic latex libcaca libcerf lua metafont metapost qt6 readline regis tgif wxwidgets X" -REQUIRED_USE=" - doc? ( gd ) - lua? ( ${LUA_REQUIRED_USE} )" +REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )" RDEPEND=" amos? ( dev-libs/openspecfun ) @@ -161,16 +159,18 @@ src_compile() { emake all - if use doc; then - if use cairo; then - emake -C docs pdf - else - ewarn "Cannot build figures unless cairo is enabled." - ewarn "Building documentation without figures." - emake -C docs pdf_nofig - mv docs/nofigures.pdf docs/gnuplot.pdf || die - fi - fi + # Building the documentation is broken for some configurations. + # Install the pre-built gnuplot.pdf instead. #577828 #689894 #960528 + #if use doc; then + # if use cairo; then + # emake -C docs pdf + # else + # ewarn "Cannot build figures unless cairo is enabled." + # ewarn "Building documentation without figures." + # emake -C docs pdf_nofig + # mv docs/nofigures.pdf docs/gnuplot.pdf || die + # fi + #fi } src_install() {