diff options
author | edwin <edwin@FreeBSD.org> | 2005-01-12 04:39:24 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-01-12 04:39:24 +0000 |
commit | 7a3a7490fd6598a5062375cbdec914f03ef46596 (patch) | |
tree | ea6d14c582891dd135c68b003b6f70dfe8ed1fcc /devel/global | |
parent | 8e777f2e633694ea21f253bc6675565afdcd69d3 (diff) | |
download | FreeBSD-ports-7a3a7490fd6598a5062375cbdec914f03ef46596.zip FreeBSD-ports-7a3a7490fd6598a5062375cbdec914f03ef46596.tar.gz |
Update port: devel/global to 4.8.2
Make sure you remove the files/ directory altogether, its
not neeeded anymore.
PR: ports/76079
Submitted by: Rui Lopes <rui@ruilopes.com>
Diffstat (limited to 'devel/global')
-rw-r--r-- | devel/global/Makefile | 6 | ||||
-rw-r--r-- | devel/global/distinfo | 4 | ||||
-rw-r--r-- | devel/global/files/patch-htags::htags.c-fix-d | 27 | ||||
-rw-r--r-- | devel/global/pkg-plist | 6 |
4 files changed, 10 insertions, 33 deletions
diff --git a/devel/global/Makefile b/devel/global/Makefile index 4f0cc92..a8342cd 100644 --- a/devel/global/Makefile +++ b/devel/global/Makefile @@ -6,7 +6,7 @@ # PORTNAME= global -PORTVERSION= 4.8 +PORTVERSION= 4.8.2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -34,4 +34,8 @@ post-install: .endfor .endif +# This target is only meant to be used by the port maintainer. +x-generate-plist: + (${PORTSDIR}/Tools/scripts/plist -d -m ${MTREE_FILE} ${PREFIX}|${SED} -E 's,.*share/nls/.+$$,,;s,(@dirrm )share/doc/global,%%PORTDOCS%%\1%%DOCSDIR%%,;s,share/doc/global,%%PORTDOCS%%%%DOCSDIR%%,;s,^info/.+,,'|${TR} -s '\n') > temp-pkg-plist + .include <bsd.port.mk> diff --git a/devel/global/distinfo b/devel/global/distinfo index beb30c2..ef92aa1 100644 --- a/devel/global/distinfo +++ b/devel/global/distinfo @@ -1,2 +1,2 @@ -MD5 (global-4.8.tar.gz) = 1c1c80f3bd6bd8eea16124fa0a8006bf -SIZE (global-4.8.tar.gz) = 591811 +MD5 (global-4.8.2.tar.gz) = ec0b03ea8042ed84b6d9f607e24f6360 +SIZE (global-4.8.2.tar.gz) = 641674 diff --git a/devel/global/files/patch-htags::htags.c-fix-d b/devel/global/files/patch-htags::htags.c-fix-d deleted file mode 100644 index 2dd66ef..0000000 --- a/devel/global/files/patch-htags::htags.c-fix-d +++ /dev/null @@ -1,27 +0,0 @@ ---- htags/htags.c 2004/09/01 14:44:33 1.14 -+++ htags/htags.c 2004/09/01 21:58:28 1.15 -@@ -61,7 +61,6 @@ - char *save_config; - char *save_argv; - --char rootpath[MAXPATHLEN]; - char cwdpath[MAXPATHLEN]; - char dbpath[MAXPATHLEN]; - char distpath[MAXPATHLEN]; -@@ -1481,11 +1480,14 @@ - strbuf_close(sb); - } - /* -- * get root, cwd and dbpath. -+ * get dbpath. - */ -- getdbpath(cwdpath, rootpath, dbpath, 0); -+ if (!getcwd(cwdpath, sizeof(cwdpath))) -+ die("cannot get current directory."); - if (arg_dbpath[0]) - strlimcpy(dbpath, arg_dbpath, sizeof(dbpath)); -+ else -+ strlimcpy(dbpath, cwdpath, sizeof(cwdpath)); - - if (cflag && !usable("gzip")) { - warning("'gzip' command not found. -c option ignored."); diff --git a/devel/global/pkg-plist b/devel/global/pkg-plist index a11e1f8..a10f771 100644 --- a/devel/global/pkg-plist +++ b/devel/global/pkg-plist @@ -1,9 +1,9 @@ bin/gctags bin/global +bin/gnusort bin/gozilla bin/gtags bin/htags -bin/htags.pl %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/ChangeLog @@ -13,13 +13,13 @@ bin/htags.pl %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/THANKS +share/gtags/bless.sh.tmpl +share/gtags/global.cgi.tmpl share/gtags/globash.rc share/gtags/gtags.conf share/gtags/gtags.el share/gtags/gtags.pl share/gtags/gtags.vim share/gtags/nvi-1.79-gtags.diff -share/gtags/bless.sh.tmpl -share/gtags/global.cgi.tmpl @dirrm share/gtags %%PORTDOCS%%@dirrm %%DOCSDIR%% |