diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2004-04-19 18:12:27 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2004-04-19 18:12:27 +0000 |
commit | c6d6f37cb6907bd9b4fb0c2cb7c297306a61f56d (patch) | |
tree | 83a82eeeb7a32c6d89436f8d39bedb28df8d2328 /devel/cgdb/Makefile | |
parent | 1cccee0f7b5cb7fde49b75238372fc988aea494d (diff) | |
download | pkgsrc-c6d6f37cb6907bd9b4fb0c2cb7c297306a61f56d.tar.gz |
Initial import of cgdb-0.4.0, from pkgsrc-wip.
CGDB is a curses-based interface to the GNU Debugger (GDB). The goal of CGDB
is to be lightweight and responsive; not encumbered with unnecessary features.
The interface is designed to deliver the familiar GDB text interface, with a
split screen showing the source as it executes. The UI is modeled on the
classic Unix text editor, vi. Those familiar with vi should feel right at home
using CGDB.
Diffstat (limited to 'devel/cgdb/Makefile')
-rw-r--r-- | devel/cgdb/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/devel/cgdb/Makefile b/devel/cgdb/Makefile new file mode 100644 index 00000000000..c69f62345e5 --- /dev/null +++ b/devel/cgdb/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2004/04/19 18:12:27 xtraeme Exp $ +# + +DISTNAME= cgdb-0.4.0 +CATEGORIES= devel +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cgdb/} + +MAINTAINER= xtraeme@NetBSD.org +HOMEPAGE= http://cgdb.sourceforge.net/ +COMMENT= Curses-based interface to the GNU Debugger (GDB) + +USE_BUILDLINK3= yes +GNU_CONFIGURE= yes +USE_GNU_TOOLS+= make + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cgdb + ${INSTALL_PROGRAM} ${WRKSRC}/cgdb/src/cgdb ${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/cgdb + +.include "../../devel/readline/buildlink3.mk" +.include "../../devel/ncurses/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |