8d6597e0bb
With hat: portmgr Sponsored by: Absolight
35 lines
902 B
Makefile
35 lines
902 B
Makefile
# Created by: Chris D. Faulhaber <jedgar@fxp.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rfc
|
|
PORTVERSION= 3.2.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.dewn.com/rfc/
|
|
|
|
MAINTAINER= scf@FreeBSD.org
|
|
COMMENT= Perl script to search for RFC's
|
|
|
|
RUN_DEPENDS= w3m:www/w3m
|
|
|
|
NO_BUILD= yes
|
|
USES= perl5 shebangfix
|
|
USE_PERL5= run
|
|
SHEBANG_FILES= ${PORTNAME}-${PORTVERSION}
|
|
|
|
PLIST_FILES= bin/rfc man/man1/rfc.1.gz
|
|
|
|
do-configure:
|
|
@${REINPLACE_CMD} -e 's|/usr/local/etc/rfc|${PREFIX}/etc/rfc| ; \
|
|
s|/usr/local/etc/nmap|${PREFIX}/share/misc/nmap| ; \
|
|
s|400k|1024k| ; \
|
|
s|http://ftp.isi.edu/in-notes|http://www.ietf.org/rfc| ; \
|
|
s|http://www.iana|ftp://ftp.iana|' \
|
|
${WRKSRC}/${PORTNAME}-${PORTVERSION}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}-${PORTVERSION} \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|