0f43a16b03
ctunnel is a software for proxying and forwarding TCP connections via a cryptographic tunnel. ctunnel can be used to secure any existing TCP based protocol, such as HTTP, VNC, Telnet, FTP, RSH, MySQL, etc. You can also chain/bounce connections to any number of intermediary hosts. from Pierre-Emmanuel Andre <pea@raveland.org>, thanks!
29 lines
572 B
Makefile
29 lines
572 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/10/01 16:12:55 ajacoutot Exp $
|
|
|
|
COMMENT= provide cryptographic tunnel
|
|
|
|
DISTNAME= ctunnel-0.2
|
|
CATEGORIES= security
|
|
|
|
HOMEPAGE= http://nardcore.org/ctunnel/
|
|
|
|
MAINTAINER= Pierre-Emmanuel Andre <pea@raveland.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
WANTLIB= c crypto
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ctunnel
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/ctunnel/
|
|
|
|
.include <bsd.port.mk>
|