Received: by mail.netbsd.org (Postfix, from userid 605) id 848F184ED3; Thu, 21 Feb 2019 06:00:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0C18984ED1 for ; Thu, 21 Feb 2019 06:00:23 +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 2DZzVLJYTEYt for ; Thu, 21 Feb 2019 06:00:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6442984ED0 for ; Thu, 21 Feb 2019 06:00:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5F3D8FB16; Thu, 21 Feb 2019 06:00:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1550728822185650" MIME-Version: 1.0 Date: Thu, 21 Feb 2019 06:00:22 +0000 From: "Izumi Tsutsui" Subject: CVS commit: pkgsrc/graphics/xv To: pkgsrc-changes@NetBSD.org Reply-To: tsutsui@netbsd.org X-Mailer: log_accum Message-Id: <20190221060022.5F3D8FB16@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. --_----------=_1550728822185650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tsutsui Date: Thu Feb 21 06:00:22 UTC 2019 Added Files: pkgsrc/graphics/xv: options.mk Log Message: xv: add a missed options.mk file in the previous commit. > xv: make ghostscript support optional and disable it by default. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/graphics/xv/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1550728822185650 Content-Disposition: inline Content-Length: 628 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/graphics/xv/options.mk diff -u /dev/null pkgsrc/graphics/xv/options.mk:1.1 --- /dev/null Thu Feb 21 06:00:22 2019 +++ pkgsrc/graphics/xv/options.mk Thu Feb 21 06:00:22 2019 @@ -0,0 +1,15 @@ +# $NetBSD: options.mk,v 1.1 2019/02/21 06:00:22 tsutsui Exp $ + +PKG_OPTIONS_VAR= PKG_OPTIONS.xv +PKG_SUPPORTED_OPTIONS= ghostscript +PKG_SUGGESTED_OPTIONS= + +.include "../../mk/bsd.options.mk" + +# Postscript support using installed ghostscript commands +.if !empty(PKG_OPTIONS:Mghostscript) +USE_TOOLS+= gs:run +IMAKEOPTS+= -DUseInstalledGhostScript +.else +IMAKEOPTS+= -UUseInstalledGhostScript +.endif --_----------=_1550728822185650--