Received: by mail.netbsd.org (Postfix, from userid 605) id CC7B684E27; Mon, 28 Oct 2019 08:33:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5444F84D54 for ; Mon, 28 Oct 2019 08:33:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id j1-KTT6hoZCY for ; Mon, 28 Oct 2019 08:33:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CE8D684C2B for ; Mon, 28 Oct 2019 08:33:24 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C704AFA8D; Mon, 28 Oct 2019 08:33:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1572251604125280" MIME-Version: 1.0 Date: Mon, 28 Oct 2019 08:33:24 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/graphics/gnuplot To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20191028083324.C704AFA8D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1572251604125280 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Mon Oct 28 08:33:24 UTC 2019 Modified Files: pkgsrc/graphics/gnuplot: Makefile options.mk Log Message: gnuplot: Remove the qt4 build option (it was disabled by default) To generate a diff of this commit: cvs rdiff -u -r1.132 -r1.133 pkgsrc/graphics/gnuplot/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/graphics/gnuplot/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1572251604125280 Content-Disposition: inline Content-Length: 1887 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.132 pkgsrc/graphics/gnuplot/Makefile:1.133 --- pkgsrc/graphics/gnuplot/Makefile:1.132 Wed Sep 18 14:17:11 2019 +++ pkgsrc/graphics/gnuplot/Makefile Mon Oct 28 08:33:24 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.132 2019/09/18 14:17:11 ryoon Exp $ +# $NetBSD: Makefile,v 1.133 2019/10/28 08:33:24 kamil Exp $ DISTNAME= gnuplot-5.2.7 CATEGORIES+= graphics @@ -7,7 +7,7 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE: MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://gnuplot.sourceforge.net/ COMMENT= Portable interactive, function plotting utility -PKGREVISION= 1 +PKGREVISION= 2 #LICENSE= gnuplot + BSD API_VERSION= ${PKGVERSION_NOREV:C/([0-9])\.([0-9])\.([0-9])/\1.\2/} Index: pkgsrc/graphics/gnuplot/options.mk diff -u pkgsrc/graphics/gnuplot/options.mk:1.14 pkgsrc/graphics/gnuplot/options.mk:1.15 --- pkgsrc/graphics/gnuplot/options.mk:1.14 Wed Nov 21 17:12:06 2018 +++ pkgsrc/graphics/gnuplot/options.mk Mon Oct 28 08:33:24 2019 @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.14 2018/11/21 17:12:06 adam Exp $ +# $NetBSD: options.mk,v 1.15 2019/10/28 08:33:24 kamil Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.gnuplot -PKG_SUPPORTED_OPTIONS= cairo cerf gd gnuplot-pdf-doc lua pdf qt4 qt5 wxwidgets x11 +PKG_SUPPORTED_OPTIONS= cairo cerf gd gnuplot-pdf-doc lua pdf qt5 wxwidgets x11 PKG_SUGGESTED_OPTIONS= cairo cerf gd gnuplot-pdf-doc x11 .include "../../mk/bsd.options.mk" @@ -54,13 +54,7 @@ PLIST.x11= yes CONFIGURE_ARGS+= --without-x .endif -.if !empty(PKG_OPTIONS:Mqt4) -USE_LANGUAGES+= c++ -CONFIGURE_ARGS+= --with-qt=qt4 -PLIST.qt= yes -.include "../../x11/qt4-libs/buildlink3.mk" -.include "../../x11/qt4-tools/buildlink3.mk" -.elif !empty(PKG_OPTIONS:Mqt5) +.if !empty(PKG_OPTIONS:Mqt5) USE_LANGUAGES+= c++11 CONFIGURE_ARGS+= --with-qt=qt5 PLIST.qt= yes --_----------=_1572251604125280--