blob: abbea91d17b7ee64c655d251fb1c2d120c852bb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# New ports collection makefile for: sslproxy
# Date created: 11 February 1999
# Whom: Alex Le Heux
#
# $FreeBSD$
#
PORTNAME= sslproxy
PORTVERSION= 20000129
CATEGORIES= security
MASTER_SITES= ftp://ftp.obdev.at/pub/Products/sslproxy/
DISTNAME= sslproxy.2000_Jan_29
MAINTAINER= alexlh@funk.org
COMMENT= Proxies non-SSL request over an SSL connection
USE_OPENSSL= YES
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/sslproxy ${PREFIX}/bin/sslproxy
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/sslproxy
${INSTALL_DATA} ${WRKSRC}/README.txt ${WRKSRC}/dummyCert.pem \
${PREFIX}/share/doc/sslproxy
.endif
.include <bsd.port.mk>
|