freebsd-ports/net/sslh/Makefile
Pav Lucistnik 780b5123e6 sslh lets one accept both HTTPS and SSH connections on the same port. It makes
it possible to connect to an SSH server on port 443 (e.g. from inside a
corporate firewall) while still serving HTTPS on that port.

WWW:	http://www.rutschle.net/tech/sslh.shtml

PR:		ports/145113
Submitted by:	Jui-Nan Lin <jnlin@csie.nctu.edu.tw>
2010-04-02 13:06:43 +00:00

31 lines
650 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
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
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>