mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
28 lines
678 B
Makefile
28 lines
678 B
Makefile
# Created by: Michael L. Hostbaek (mich@freebsdcluster.org)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tcpsg
|
|
PORTVERSION= 0.0.2
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= mich@FreeBSD.org
|
|
COMMENT= A simple TCP port forwarder
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/tcpsg.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/tcpsg.conf ${PREFIX}/etc/
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README
|
|
${INSTALL_DATA} ${WRKSRC}/tcpsg.ctl ${DOCSDIR}/tcpsg.ctl
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|