mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
398cd9b117
PR: ports/148170 Submitted by: Olivier Cochard-Labbé <olivier _at_ cochard.me> Approved by: rene@ (mentor vacation), Jui-Nan Lin <jnlin _at_ csie.nctu.edu.tw> (maintainer)
35 lines
685 B
Makefile
35 lines
685 B
Makefile
# New ports collection makefile for: sslh
|
|
# Date created: 2010-03-29
|
|
# Whom: Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sslh
|
|
PORTVERSION= 1.7a
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.rutschle.net/tech/
|
|
|
|
MAINTAINER= jnlin@csie.nctu.edu.tw
|
|
COMMENT= A ssl/ssh multiplexer
|
|
|
|
USE_GMAKE= yes
|
|
USE_PERL5_BUILD= yes
|
|
|
|
MAN8= sslh.8
|
|
PLIST_FILES= sbin/sslh
|
|
|
|
USE_RC_SUBR= sslh
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^PREFIX=/usr/local|PREFIX=${PREFIX}|g' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/sslh ${PREFIX}/sbin
|
|
.if !defined(NO_INSTALL_MANPAGES)
|
|
@${INSTALL_MAN} ${WRKSRC}/sslh.8 ${MANPREFIX}/man/man8
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|