Received: by mail.netbsd.org (Postfix, from userid 605) id 98DAF84DC8; Wed, 1 Jan 2020 16:30:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 22C3A84CEA for ; Wed, 1 Jan 2020 16:30:38 +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 EO0QHqBfBohg for ; Wed, 1 Jan 2020 16:30:37 +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 98A4684CD5 for ; Wed, 1 Jan 2020 16:30:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 91639FA97; Wed, 1 Jan 2020 16:30:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1577896237170880" MIME-Version: 1.0 Date: Wed, 1 Jan 2020 16:30:37 +0000 From: "Olaf Seibert" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: rhialto@netbsd.org X-Mailer: log_accum Message-Id: <20200101163037.91639FA97@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. --_----------=_1577896237170880 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rhialto Date: Wed Jan 1 16:30:37 UTC 2020 Modified Files: pkgsrc/emulators/vice: options.mk pkgsrc/mk/defaults: options.description Log Message: Rename options for vice to have a "vice-" prefix (x64, cpuhistory). To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/emulators/vice/options.mk cvs rdiff -u -r1.602 -r1.603 pkgsrc/mk/defaults/options.description Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1577896237170880 Content-Disposition: inline Content-Length: 2190 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/vice/options.mk diff -u pkgsrc/emulators/vice/options.mk:1.11 pkgsrc/emulators/vice/options.mk:1.12 --- pkgsrc/emulators/vice/options.mk:1.11 Tue Dec 31 14:42:22 2019 +++ pkgsrc/emulators/vice/options.mk Wed Jan 1 16:30:37 2020 @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.11 2019/12/31 14:42:22 rhialto Exp $ +# $NetBSD: options.mk,v 1.12 2020/01/01 16:30:37 rhialto Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.vice -PKG_SUPPORTED_OPTIONS= ffmpeg x64 cpuhistory +PKG_SUPPORTED_OPTIONS= ffmpeg vice-x64 vice-cpuhistory PKG_OPTIONS_REQUIRED_GROUPS= gui PKG_OPTIONS_GROUP.gui= gtk3 sdl sdl2 PKG_SUGGESTED_OPTIONS= gtk3 ffmpeg @@ -39,11 +39,11 @@ CONFIGURE_ARGS+= --enable-external-ffmpe .endif # Building x64 is deprecated, in favour of x64sc (but that is slower). -.if !empty(PKG_OPTIONS:Mx64) +.if !empty(PKG_OPTIONS:Mvice-x64) CONFIGURE_ARGS+= --enable-x64 PLIST.x64= yes .endif -.if !empty(PKG_OPTIONS:Mcpuhistory) +.if !empty(PKG_OPTIONS:Mvice-cpuhistory) CONFIGURE_ARGS+= --enable-cpuhistory .endif Index: pkgsrc/mk/defaults/options.description diff -u pkgsrc/mk/defaults/options.description:1.602 pkgsrc/mk/defaults/options.description:1.603 --- pkgsrc/mk/defaults/options.description:1.602 Tue Dec 31 14:30:09 2019 +++ pkgsrc/mk/defaults/options.description Wed Jan 1 16:30:37 2020 @@ -109,7 +109,7 @@ courier-esmtp ESMTP mail delivery. courier-gnutls Support using GNU TLS instead of OpenSSL. courier-local Local mail delivery. courier-uucp UUCP mail delivery. -cpuhistory Enable the 65xx cpu history feature. +vice-cpuhistory Enable the 65xx cpu history feature. cups Enable cups (Common UNIX Printing System) support. curl Enable curl support. curses Enable curses support. @@ -856,7 +856,7 @@ wxwidgets Enable wxWidgets support. x11 Enable X11 support. x264 Enable x264 support. x265 Enable x265 support. -x64 Enable building of the old x64 emulator. +vice-x64 Enable building of the old x64 emulator. xapian-flint-backend Enable "Flint" format Xapian database support. xapian-quartz-backend Enable "Quartz" format Xapian database support. xatracker Enable XA X Acceleration API support. --_----------=_1577896237170880--