diff options
author | agc <agc@pkgsrc.org> | 2001-11-14 11:27:03 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-11-14 11:27:03 +0000 |
commit | b1118bd2fd5ccfcfb4b5a65857b2c3072f9f6bba (patch) | |
tree | ed6e23389913cff329653ca7540ce6acc794bbc8 /devel/cbrowser/Makefile | |
parent | 47bada094e1b58d717fa1e956eaf36d5d7c75c14 (diff) | |
download | pkgsrc-b1118bd2fd5ccfcfb4b5a65857b2c3072f9f6bba.tar.gz |
Initial import of cbrowser-0.6 into the NetBSD Packages Collection.
Cbrowser helps manage the recursive process of searching through
source code for usages by providing a history mechanism. Every query
is recorded and can be recalled at any time, without the need of
re-querying the database.
Cbrowser allows you to build and use multiple source code databases
for individual software projects. Switching databases is as simple as
selecting the file, and a history of all databases used is kept at all
times.
Best of all, cbrowser provides a hierarchical function viewer.
Functions may be expanded and contracted to show or hide the functions
they call. The function's code itself is shown in an adjoining
viewer. This feature is implemented using the megawidget Library by
Jeff Hobbs.
Diffstat (limited to 'devel/cbrowser/Makefile')
-rw-r--r-- | devel/cbrowser/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/devel/cbrowser/Makefile b/devel/cbrowser/Makefile new file mode 100644 index 00000000000..5d4b07eb653 --- /dev/null +++ b/devel/cbrowser/Makefile @@ -0,0 +1,28 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/11/14 11:27:03 agc Exp $ +# + +DISTNAME= cbrowser-0.6 +CATEGORIES= devel tk80 +MASTER_SITES= http://www.ziplink.net/~felaco/cbrowser/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.ziplink.net/~felaco/cbrowser/ +COMMENT= graphical C/C++ source code browsing tool, and call graph viewer + +DEPENDS+= cscope-[0-9]*:../../devel/cscope + +NO_BUILD= # defined + +post-patch: + ${MV} ${WRKSRC}/cbrowser ${WRKSRC}/cbrowser.input && \ + ${SED} -e 's|@PREFIX@|${PREFIX}|' ${WRKSRC}/cbrowser.input > ${WRKSRC}/cbrowser + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/cbrowser ${PREFIX}/bin + ${INSTALL_SCRIPT_DIR} ${PREFIX}/share/cbrowser + for f in builder.tcl calltree.tcl hierarchy.tcl widget.tcl tclIndex; do \ + ${INSTALL_SCRIPT} ${WRKSRC}/$$f ${PREFIX}/share/cbrowser; \ + done + +.include "../../x11/tk/buildlink.mk" +.include "../../mk/bsd.pkg.mk" |