summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2014-12-01 10:08:27 +0000
committerwiz <wiz@pkgsrc.org>2014-12-01 10:08:27 +0000
commit6cf3bf97fc215242babd1e74832887aa6c3c89d2 (patch)
treebaa80ba48f9e441637fbcd358cc5f7fd57d8b608
parent5cabe76b5355b31cb380309ac7cff56285a65e1e (diff)
downloadpkgsrc-6cf3bf97fc215242babd1e74832887aa6c3c89d2.tar.gz
Update to 6.3.3.
[CHANGES] New facilities: o Pygments plug-in parser: Support python 3. o gozilla: added support of OSX's default browser. Please set environment variable BROWSER to 'osx-default'. $ htags --suggest --map-file $ export BROWSER=osx-default $ gozilla +120 main.c # shows line 120 in main.c $ gozilla -d main # shows definitions of main() o vim74-gtags-cscope.patch: New patch for vim + gtags-cscope to treat file names which include spaces correctly. Please see README.PATCHES. Release for beta test: o Added --sqlite3 option which uses SQLite3 API instead of BSD/DB API for making tag files. If you will test the code then please do as follows: [configuration phase] $ ./configure --with-sqlite3 # use sqlite3 API [execution phase] $ gtags --sqlite3 # make sqlite3 tag files [FIXED BUGS] o gtags-cscope.vim: There was a calling to undefined function. Now it works.
-rw-r--r--devel/global/Makefile4
-rw-r--r--devel/global/PLIST4
-rw-r--r--devel/global/distinfo9
-rw-r--r--devel/global/patches/patch-gozilla_Makefile.in17
4 files changed, 27 insertions, 7 deletions
diff --git a/devel/global/Makefile b/devel/global/Makefile
index 69127a99598..021e0f7508c 100644
--- a/devel/global/Makefile
+++ b/devel/global/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.47 2014/10/09 14:06:09 wiz Exp $
+# $NetBSD: Makefile,v 1.48 2014/12/01 10:08:27 wiz Exp $
-DISTNAME= global-6.3.2
+DISTNAME= global-6.3.3
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU:=global/}
diff --git a/devel/global/PLIST b/devel/global/PLIST
index b0d67dd548c..432697ac37a 100644
--- a/devel/global/PLIST
+++ b/devel/global/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.20 2014/09/07 20:17:29 wiz Exp $
+@comment $NetBSD: PLIST,v 1.21 2014/12/01 10:08:27 wiz Exp $
bin/global
bin/globash
bin/gozilla
@@ -32,6 +32,7 @@ share/gtags/NEWS
share/gtags/PLUGIN_HOWTO
share/gtags/PLUGIN_HOWTO.pygments
share/gtags/README
+share/gtags/README.PATCHES
share/gtags/SERVERSIDE_HOWTO
share/gtags/THANKS
share/gtags/bless.sh.tmpl
@@ -96,4 +97,5 @@ share/gtags/script/htags-client
share/gtags/script/less-global
share/gtags/script/pygments_parser.py
share/gtags/style.css.tmpl
+share/gtags/vim74-gtags-cscope.patch
@pkgdir var/gtags/sitekeys
diff --git a/devel/global/distinfo b/devel/global/distinfo
index 8ce15775407..438ed4d8d5a 100644
--- a/devel/global/distinfo
+++ b/devel/global/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.21 2014/09/07 20:17:29 wiz Exp $
+$NetBSD: distinfo,v 1.22 2014/12/01 10:08:27 wiz Exp $
-SHA1 (global-6.3.2.tar.gz) = 46b681a0ccb84c928a67f6901ca60227ad71b5bd
-RMD160 (global-6.3.2.tar.gz) = fd377561189c4aa408ea28fe2f3c73ef0b1b11c0
-Size (global-6.3.2.tar.gz) = 1386734 bytes
+SHA1 (global-6.3.3.tar.gz) = 2e66fb1529fe1fb2c473507de91814df4eb50b93
+RMD160 (global-6.3.3.tar.gz) = 9473788e760bbb3484965842019f86129802ccd5
+Size (global-6.3.3.tar.gz) = 2901056 bytes
+SHA1 (patch-gozilla_Makefile.in) = e769975f79bd1f0501eca00ffcefa5d5ee2e2db3
diff --git a/devel/global/patches/patch-gozilla_Makefile.in b/devel/global/patches/patch-gozilla_Makefile.in
new file mode 100644
index 00000000000..32be9d80860
--- /dev/null
+++ b/devel/global/patches/patch-gozilla_Makefile.in
@@ -0,0 +1,17 @@
+$NetBSD: patch-gozilla_Makefile.in,v 1.1 2014/12/01 10:08:27 wiz Exp $
+
+Add DESTDIR support.
+
+--- gozilla/Makefile.in.orig 2014-11-26 02:49:49.000000000 +0000
++++ gozilla/Makefile.in
+@@ -734,8 +734,8 @@ uninstall-man: uninstall-man1
+ uninstall-man1
+
+ install-data-hook:
+- mkdir -p ${gtagsdir}
+- chmod 777 ${gtagsdir}
++ mkdir -p ${DESTDIR}${gtagsdir}
++ chmod 777 ${DESTDIR}${gtagsdir}
+
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.