blob: bbd9ca2fce89730213fab5e889a331d682079d25 (
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
|
# ex:ts=8
# New ports collection makefile for: rlwrap
# Date created: Aug 12, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= rlwrap
PORTVERSION= 0.12
CATEGORIES= devel
MASTER_SITES= http://utopia.knoware.nl/~hlub/uck/rlwrap/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500018
BROKEN= "Requires readline 4.2 or newer"
.endif
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt"
ALL_TARGET= # empty
MAN1= rlwrap.1
.include <bsd.port.post.mk>
|