diff options
author | sborrill <sborrill@pkgsrc.org> | 2008-12-05 12:52:39 +0000 |
---|---|---|
committer | sborrill <sborrill@pkgsrc.org> | 2008-12-05 12:52:39 +0000 |
commit | f26a10edd9447826b9ddd83966989c2314e6225e (patch) | |
tree | 85f7ae512c776a032dcf498ee188553074264d9a /security/sslproxy/Makefile | |
parent | cc036370742d588990887a95d5cefef2c8df73ab (diff) | |
download | pkgsrc-f26a10edd9447826b9ddd83966989c2314e6225e.tar.gz |
The Symbion SSL Proxy listens on a TCP port, accepts SSL connections, and
forwards them to another (local or remote) TCP port, or UNIX domain socket.
Diffstat (limited to 'security/sslproxy/Makefile')
-rw-r--r-- | security/sslproxy/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/security/sslproxy/Makefile b/security/sslproxy/Makefile new file mode 100644 index 00000000000..962709d25ac --- /dev/null +++ b/security/sslproxy/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1.1.1 2008/12/05 12:52:39 sborrill Exp $ + +DISTNAME= sslproxy-1.0.5 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sslproxy/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://sourceforge.net/projects/sslproxy/ +COMMENT= Small SSL proxy + +PKG_DESTDIR_SUPPORT= user-destdir +EXTRACT_SUFX= .tgz + +USE_TOOLS+= gmake + +DOCDIR= ${PREFIX}/share/doc/ssl_proxy +INSTALLATION_DIRS= bin ${DOCDIR} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ssl_proxy ${DESTDIR}${PREFIX}/bin/ssl_proxy + ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${DOCDIR} + +.include "../../security/openssl/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" |