blob: 7f1819a1abed5c0bd333211cc6d86e93d673fc8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# $NetBSD: Makefile,v 1.24 2015/04/20 07:35:00 wiz Exp $
DISTNAME= cgdb-0.6.8
CATEGORIES= devel
MASTER_SITES= http://cgdb.me/files/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://cgdb.sourceforge.net/
COMMENT= Curses-based interface to the GNU Debugger (GDB)
LICENSE= gnu-gpl-v2
BUILD_DEPENDS+= help2man-[0-9]*:../../converters/help2man
GNU_CONFIGURE= yes
USE_TOOLS+= gmake
INFO_FILES= yes
# As -L/usr/lib tends to be found in LDFLAGS, make sure that the library
# of interest (the local libutil) is found first.
MAKE_ENV+= AM_LDFLAGS=-L${WRKSRC}/lib/util/src
# rl_mark and others
.include "../../devel/readline/buildlink3.mk"
.include "../../mk/terminfo.buildlink3.mk"
.include "../../mk/curses.buildlink3.mk"
.if ${CURSES_TYPE} == "curses"
CONFIGURE_ARGS+= --with-curses
.endif
.include "../../mk/bsd.pkg.mk"
|