32 lines
634 B
Makefile
32 lines
634 B
Makefile
# $OpenBSD: Makefile,v 1.7 2018/02/10 09:59:37 landry Exp $
|
|
|
|
COMMENT= curses GDB interface
|
|
|
|
DISTNAME= cgdb-0.7.0
|
|
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= https://cgdb.github.io/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB= ${COMPILER_LIBCXX} c curses ereadline m util
|
|
|
|
MASTER_SITES= https://cgdb.me/files/
|
|
|
|
LIB_DEPENDS= devel/readline>=6.1p2
|
|
|
|
SEPARATE_BUILD= Yes
|
|
CONFIGURE_STYLE= autoconf
|
|
CONFIGURE_ARGS+= --with-readline=yes
|
|
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \
|
|
CPPFLAGS="-I${LOCALBASE}/include/ereadline -I${LOCALBASE}/include"
|
|
|
|
AUTOCONF_VERSION= 2.69
|
|
|
|
# there are tests, but not working yet
|
|
NO_TEST= Yes
|
|
|
|
.include <bsd.port.mk>
|