Received: by mail.netbsd.org (Postfix, from userid 605) id 3F26484DC1; Sat, 11 Jan 2020 16:24:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B881384DAB for ; Sat, 11 Jan 2020 16:24:12 +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 FjFycV0wkV-Q for ; Sat, 11 Jan 2020 16:24:12 +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 194C484C6C for ; Sat, 11 Jan 2020 16:24:12 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 13436FBF4; Sat, 11 Jan 2020 16:24:12 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578759852120380" MIME-Version: 1.0 Date: Sat, 11 Jan 2020 16:24:12 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/imv To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200111162412.13436FBF4@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. --_----------=_1578759852120380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Jan 11 16:24:12 UTC 2020 Modified Files: pkgsrc/graphics/imv: options.mk Log Message: imv: Use NONEMPTY_SETS for options.mk To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/graphics/imv/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578759852120380 Content-Disposition: inline Content-Length: 952 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/imv/options.mk diff -u pkgsrc/graphics/imv/options.mk:1.1 pkgsrc/graphics/imv/options.mk:1.2 --- pkgsrc/graphics/imv/options.mk:1.1 Sat Jan 11 15:18:46 2020 +++ pkgsrc/graphics/imv/options.mk Sat Jan 11 16:24:11 2020 @@ -1,7 +1,10 @@ -# $NetBSD: options.mk,v 1.1 2020/01/11 15:18:46 nia Exp $ +# $NetBSD: options.mk,v 1.2 2020/01/11 16:24:11 nia Exp $ -PKG_OPTIONS_VAR= PKG_OPTIONS.imv -PKG_SUPPORTED_OPTIONS= svg wayland x11 +PKG_OPTIONS_VAR= PKG_OPTIONS.imv +PKG_SUPPORTED_OPTIONS= svg + +PKG_OPTIONS_NONEMPTY_SETS= display +PKG_OPTIONS_SET.display= wayland x11 .include "../../devel/wayland/platform.mk" .if ${PLATFORM_SUPPORTS_WAYLAND} == "yes" @@ -27,8 +30,6 @@ MAKE_FLAGS+= WINDOWS="all" MAKE_FLAGS+= WINDOWS="wayland" .elif !empty(PKG_OPTIONS:Mx11) MAKE_FLAGS+= WINDOWS="x11" -.else -PKG_FAIL_REASON+= "Must select at least one windowing system" .endif .if !empty(PKG_OPTIONS:Mwayland) --_----------=_1578759852120380--