blob: 90a7f7c7e78c7849c60d82429daf18aee7421b1a (
plain) (
blame)
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
32
33
34
35
36
|
# New ports collection makefile for: cgdb
# Date created: 2005-12-18
# Whom: Gea-Suan Lin <gslin@gslin.org>
#
# $FreeBSD$
#
PORTNAME= cgdb
PORTVERSION= 0.6.2
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= gslin@gslin.org
COMMENT= A curses-based interface to the GNU Debugger
INFO= cgdb
MAN1= cgdb.1
PLIST_FILES= bin/cgdb
GNU_CONFIGURE= yes
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 700016
LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline
.endif
.if ${OSVERSION} < 500000
BROKEN= Does not compile on FreeBSD 4.X
.endif
post-patch:
${REINPLACE_CMD} -e 's,libutil\.h,,g' ${WRKSRC}/configure
.include <bsd.port.post.mk>
|