1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/devel/rlwrap/Makefile
Frank J. Laszlo c50cf0fe19 Fix manpage install location.
Reported by: 	kris via pointyhat
2006-12-12 12:06:37 +00:00

38 lines
945 B
Makefile

# ex:ts=8
# New ports collection makefile for: rlwrap
# Date created: Aug 12, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= rlwrap
PORTVERSION= 0.28
CATEGORIES= devel
MASTER_SITES= http://utopia.knoware.nl/~hlub/uck/rlwrap/
MAINTAINER= laszlof@FreeBSD.org
COMMENT= Readline wrapper
USE_GETOPT_LONG= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV+= ptyttylib_cv_ptys=BSD LDFLAGS=-lutil
CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man
MAN1= rlwrap.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500018
# This port requires readline 4.2 or newer, which is only available
# in the base system in FreeBSD 5.x.
BUILD_DEPENDS+= ${PREFIX}/lib/libreadline.so.5:${PORTSDIR}/devel/readline
RUN_DEPENDS+= ${BUILD_DEPENDS}
# Make sure the dynamic linker does not pick up
# the older libreadline library from the base system.
LDFLAGS+= -rpath ${PREFIX}/lib
.endif
.include <bsd.port.post.mk>