Received: by mail.netbsd.org (Postfix, from userid 605) id 680D884D84; Fri, 31 Mar 2023 15:04:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 98A9384D3C for ; Fri, 31 Mar 2023 15:04:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Fs9RvDQ9225X for ; Fri, 31 Mar 2023 15:04:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E20F484CEE for ; Fri, 31 Mar 2023 15:04:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DA270FA81; Fri, 31 Mar 2023 15:04:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168027505216260" MIME-Version: 1.0 Date: Fri, 31 Mar 2023 15:04:12 +0000 From: "Hauke Fath" Subject: CVS commit: pkgsrc/graphics/gnuplot To: pkgsrc-changes@NetBSD.org Reply-To: hauke@netbsd.org X-Mailer: log_accum Message-Id: <20230331150412.DA270FA81@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168027505216260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: hauke Date: Fri Mar 31 15:04:12 UTC 2023 Modified Files: pkgsrc/graphics/gnuplot: Makefile options.mk Log Message: While gnuplot does not use libXaw, it does use one of the package's dependencies(xorgproto), which nowe ends up missing in an x11-only build. Let me guess - the change wasn't build-tested? To generate a diff of this commit: cvs rdiff -u -r1.168 -r1.169 pkgsrc/graphics/gnuplot/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/graphics/gnuplot/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168027505216260 Content-Disposition: inline Content-Length: 1259 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/gnuplot/Makefile diff -u pkgsrc/graphics/gnuplot/Makefile:1.168 pkgsrc/graphics/gnuplot/Makefile:1.169 --- pkgsrc/graphics/gnuplot/Makefile:1.168 Thu Mar 16 09:48:12 2023 +++ pkgsrc/graphics/gnuplot/Makefile Fri Mar 31 15:04:12 2023 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.168 2023/03/16 09:48:12 wiz Exp $ +# $NetBSD: Makefile,v 1.169 2023/03/31 15:04:12 hauke Exp $ DISTNAME= gnuplot-5.4.6 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES+= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gnuplot/} Index: pkgsrc/graphics/gnuplot/options.mk diff -u pkgsrc/graphics/gnuplot/options.mk:1.20 pkgsrc/graphics/gnuplot/options.mk:1.21 --- pkgsrc/graphics/gnuplot/options.mk:1.20 Thu Mar 16 09:48:12 2023 +++ pkgsrc/graphics/gnuplot/options.mk Fri Mar 31 15:04:12 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.20 2023/03/16 09:48:12 wiz Exp $ +# $NetBSD: options.mk,v 1.21 2023/03/31 15:04:12 hauke Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gnuplot PKG_SUPPORTED_OPTIONS= cairo cerf gd gnuplot-pdf-doc lua qt5 wxwidgets x11 @@ -82,6 +82,7 @@ CONFIGURE_ARGS+= --disable-wxwidgets .if !empty(PKG_OPTIONS:Mx11) PLIST.x11= yes +.include "../../x11/xorgproto/buildlink3.mk" .else CONFIGURE_ARGS+= --without-x .endif --_----------=_168027505216260--