diff options
Diffstat (limited to 'security/symbion-sslproxy/Makefile')
-rw-r--r-- | security/symbion-sslproxy/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/security/symbion-sslproxy/Makefile b/security/symbion-sslproxy/Makefile new file mode 100644 index 0000000..06c09af --- /dev/null +++ b/security/symbion-sslproxy/Makefile @@ -0,0 +1,44 @@ +# Ports collection Makefile for: symbion-sslproxy +# Date created: 10 Dec 2005 +# Whom: Gabor Kovesdan +# $FreeBSD$ + +PORTNAME= symbion-sslproxy +PORTVERSION= 1.0.5 +CATEGORIES= security +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= sslproxy +DISTNAME= sslproxy-${PORTVERSION} +EXTRACT_SUFX= .tgz + +MAINTAINER= gkovesdan@t-hosting.hu +COMMENT= An SSL proxy for securing unsecure connections + +USE_OPENSSL= YES +USE_GMAKE= YES +USE_REINPLACE= YES +PLIST_FILES= sbin/ssl_proxy +SUB_FILES+= pkg-message + +.include <bsd.port.pre.mk> + +.if !defined(NOPORTDOCS) +PORTDOCS= README +.endif + +post-patch: + ${REINPLACE_CMD} -e 's|CC =|CC ?=|' \ + -e 's|CFLAGS =|CFLAGS +=|' ${WRKSRC}/Makefile.global + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ssl_proxy ${PREFIX}/sbin + +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif + +post-install: + ${CAT} ${PKGMESSAGE} + +.include <bsd.port.post.mk> |