Received: by mail.netbsd.org (Postfix, from userid 605) id BAB8784E5E; Sun, 2 Oct 2022 18:39:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EA2C284CFA for ; Sun, 2 Oct 2022 18:39:42 +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 8wndvm3yxqU7 for ; Sun, 2 Oct 2022 18:39:42 +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 47A0284CBC for ; Sun, 2 Oct 2022 18:39:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 41299FA90; Sun, 2 Oct 2022 18:39:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166473598295660" MIME-Version: 1.0 Date: Sun, 2 Oct 2022 18:39:42 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/multimedia/mkvtoolnix To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20221002183942.41299FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166473598295660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Oct 2 18:39:42 UTC 2022 Modified Files: pkgsrc/multimedia/mkvtoolnix: options.mk Log Message: mkvtoolnix: put PKG_SUGGESTED_OPTIONS instead of PKG_DEFAULT_OPTIONS To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/multimedia/mkvtoolnix/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166473598295660 Content-Disposition: inline Content-Length: 888 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/mkvtoolnix/options.mk diff -u pkgsrc/multimedia/mkvtoolnix/options.mk:1.6 pkgsrc/multimedia/mkvtoolnix/options.mk:1.7 --- pkgsrc/multimedia/mkvtoolnix/options.mk:1.6 Thu Sep 29 08:13:17 2022 +++ pkgsrc/multimedia/mkvtoolnix/options.mk Sun Oct 2 18:39:42 2022 @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.6 2022/09/29 08:13:17 mrg Exp $ +# $NetBSD: options.mk,v 1.7 2022/10/02 18:39:42 adam Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.mkvtoolnix PKG_SUPPORTED_OPTIONS= gui doc -PKG_DEFAULT_OPTIONS= doc +PKG_SUGGESTED_OPTIONS= doc .include "../../mk/bsd.options.mk" @@ -20,7 +20,7 @@ CONFIGURE_ARGS+= --disable-gui .if !empty(PKG_OPTIONS:Mdoc) PLIST_SRC+= PLIST.po4a CONFIGURE_ARGS+= --with-po4a -BUILD_DEPENDS+= po4a-[0-9]*:../../textproc/po4a +BUILD_DEPENDS+= po4a-[0-9]*:../../textproc/po4a .else CONFIGURE_ARGS+= --without-po4a .endif --_----------=_166473598295660--