Version 6.2.8 - February 28 2013 [CHANGES] New facilities: o htags: Added support of Python's built-in web server. Required python 2.4 or later. Please try this: (CGI and AJAX work completely) $ htags --suggest2 $ cd HTML $ python -m CGIHTTPServer # Python 2.X(2.4-) ($ python3 -m http.server --cgi # Python 3.X) Serving HTTP on 0.0.0.0 port 8000 ... (in another terminal) $ firefox http://localhost:8000/ o gtags.conf: Added a new record for Drupal(Content management platform). o global: New --path-style=<format> option. <format> may be relative, absolute, shorter, abslib and through. shorter: use shorter one among relative and absolute paths. abslib: use absolute path only in library projects. through: raw path name as is in GPATH. The --path-style option is given more priority than the -a options. [INCOMPATIBLE CHANGES] o htags: End of support of customization of HTML tag using gtags.conf. Please use CSS(cascading style sheets) instead. - The --html option of htags(1) was removed. - The tag definitions in gtags.conf were removed.
25 lines
637 B
Makefile
25 lines
637 B
Makefile
# $NetBSD: Makefile,v 1.37 2013/03/15 21:55:15 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= global-6.2.8
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=global/}
|
|
|
|
MAINTAINER= uebayasi@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/global/
|
|
COMMENT= Source code tag system including web browser output
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
CONFIGURE_ARGS+= --with-posix-sort=${SORT:Q}
|
|
|
|
INFO_FILES= YES
|
|
USE_LIBTOOL= YES
|
|
USE_TOOLS+= perl:run sort:run
|
|
|
|
CONF_FILES= ${PREFIX}/share/gtags/gtags.conf ${PKG_SYSCONFDIR}/gtags.conf
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|