b1118bd2fd
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.
28 lines
892 B
Makefile
28 lines
892 B
Makefile
# $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"
|