1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/devel/rlwrap/Makefile
Philip M. Gollucci 62e76e61f5 - update to 0.37
- remove -lutil cruft from before AC_CHECK_LIB() was added
- either use openpty() or search manually (not sure)[1]

[1] PTYS_ARE_PTMX ifdef patch was incorrect, anyway. According to
configure.ac there can be only one of PTYS_ARE_XXX be defined at a
time because the check uses `else if'.

PR:             ports/150694
Submitted by:   swell.k@gmail.com
Approved by:    maintainer timeout (gamato@users.sf.net ; 14 days)
2010-10-06 03:40:46 +00:00

39 lines
754 B
Makefile

# ex:ts=8
# New ports collection makefile for: rlwrap
# Date created: Aug 12, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= rlwrap
PORTVERSION= 0.37
CATEGORIES= devel
MASTER_SITES= http://utopia.knoware.nl/~hlub/uck/rlwrap/ \
${MASTER_SITE_LOCAL} \
http://dryice.name/computer/FreeBSD/distfiles/
MASTER_SITE_SUBDIR= dryice
MAINTAINER= gamato@users.sf.net
COMMENT= Readline wrapper
GNU_CONFIGURE= yes
MAN1= rlwrap.1
MAN3= RlwrapFilter.3pm
PORTDOCS= AUTHORS BUGS NEWS PLEA README TODO
post-patch: .SILENT
${REINPLACE_CMD} 's|/dev/ptmx|${NONEXISTENT}|' ${WRKSRC}/configure
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for i in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}/
.endfor
.endif
.include <bsd.port.mk>