summaryrefslogtreecommitdiff
path: root/devel/global/options.mk
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2015-04-02 22:39:45 +0000
committerwiz <wiz@pkgsrc.org>2015-04-02 22:39:45 +0000
commitdf5bced6aca296adb58a870eddbb3c5c95c70ab3 (patch)
tree4c3cb81219f64071231d14c16bb9d5b5ec816eaf /devel/global/options.mk
parent416d59da8e146e8b5b232f5f88ed593a4ce2bb50 (diff)
downloadpkgsrc-df5bced6aca296adb58a870eddbb3c5c95c70ab3.tar.gz
Update to 6.4:
Version 6.4 - March 24 2015 [CHANGES] New facilities: o gtags: Now --sqlite3 option is supported formally. This option uses SQLite3 API instead of BSD/DB API for making tag files. To use this option, you need to invoke configure script with --with-sqlite3 in the build phase. [configuration phase] $ ./configure --with-sqlite3 # use sqlite3 API [execution phase] $ gtags --sqlite3 # make sqlite3 tag files o gtags: --single-update option supports deletion of a file. Now the next command line works well. $ rm test.c $ gtags --single-update=test.c o gtags: New --explain option. This option explains handling files. You can know the following information: - Skipped reason for each skipped files. - Used parser and its library path for each source file. [FIXED BUGS] o global: global(1) could not pick up source code from source files in library projects (GTAGSLLIBPATH) if their tag files are compact format. Now it works. [INCOMPATIBLE CHANGES] The following features of htags(1) were removed. o The -c (--compact) option. o The --system-cgi option. o The --overwrite-key option. o The -x (--xhtml[=version]) option. All files are 1.0. o The following configuration variables: colorize-warned-line (substitute: --colorize-warned-line) gzipped_suffix (substitute: not available) htags_options (substitute: HTAGS_OPTIONS) ncol (substitute: -n, --line-number [n]) normal_suffix (will be always '.html') no_order_list (substitute: --no-order-list) script_alias (substitute: not available) tabs (substitute: --tabs n) xhtml_version (will be always 1.0)
Diffstat (limited to 'devel/global/options.mk')
-rw-r--r--devel/global/options.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/devel/global/options.mk b/devel/global/options.mk
new file mode 100644
index 00000000000..ea42ecf8793
--- /dev/null
+++ b/devel/global/options.mk
@@ -0,0 +1,17 @@
+# $NetBSD: options.mk,v 1.1 2015/04/02 22:39:45 wiz Exp $
+
+PKG_OPTIONS_VAR= PKG_OPTIONS.global
+PKG_OPTIONS_REQUIRED_GROUPS= db
+PKG_OPTIONS_GROUP.db= bdb sqlite3
+PKG_SUGGESTED_OPTIONS= sqlite3
+
+.include "../../mk/bsd.options.mk"
+
+.if !empty(PKG_OPTIONS:Mbdb)
+.include "../../mk/bdb.buildlink3.mk"
+.endif
+
+.if !empty(PKG_OPTIONS:Msqlite3)
+CONFIGURE_ARGS+= --with-sqlite3
+.include "../../databases/sqlite3/buildlink3.mk"
+.endif