5bedb8497c
cgdb is a lightweight curses (terminal-based) interface to the GNU Debugger (GDB). In addition to the standard gdb console, cgdb provides a split screen view that displays the source code as it executes. Syntax-highlighted source window Visual breakpoint setting Keyboard shortcuts for common functions Searching source window (using regexp) Scrollable gdb history of entire session Tab completion Key mappings (macros)
30 lines
600 B
Makefile
30 lines
600 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/04/18 15:08:17 sthen Exp $
|
|
|
|
COMMENT= curses GDB interface
|
|
DISTNAME= cgdb-0.6.7
|
|
CATEGORIES= devel
|
|
HOMEPAGE= http://cgdb.me/
|
|
|
|
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += c ereadline m ncurses
|
|
|
|
MASTER_SITES= http://cgdb.me/files/
|
|
|
|
LIB_DEPENDS= devel/readline>=6.1p2
|
|
|
|
CONFIGURE_STYLE= autoconf
|
|
AUTOCONF_VERSION= 2.69
|
|
CONFIGURE_ARGS+= --with-readline=yes
|
|
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \
|
|
CPPFLAGS="-I${LOCALBASE}/include"
|
|
|
|
# there are tests, but not working yet
|
|
NO_TEST= Yes
|
|
|
|
.include <bsd.port.mk>
|