Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Nov 1999 23:16:04 +0100 (CET)
From:      zgabor@CoDe.HU
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/14771: new port of sslwrap - another ssl-wrapper
Message-ID:  <199911072216.XAA69746@nyuszi.akg.hu>

next in thread | raw e-mail | index | archive | help

>Number:         14771
>Category:       ports
>Synopsis:       sslwrap - a new port
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Nov  7 14:20:01 PST 1999
>Closed-Date:
>Last-Modified:
>Originator:     Zahemszky Gabor
>Release:        FreeBSD 3.3-RELEASE i386
>Organization:
CoDe Ltd.
>Environment:

	3.3R + OpenSSL-0.9.4

>Description:

	Nothing, but a new port

>How-To-Repeat:

	Hmm.

>Fix:

==== beginning of shar ====
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	sslwrap
#	sslwrap/Makefile
#	sslwrap/pkg
#	sslwrap/pkg/COMMENT
#	sslwrap/pkg/DESCR
#	sslwrap/pkg/PLIST
#	sslwrap/patches
#	sslwrap/patches/patch-aa
#	sslwrap/files
#	sslwrap/files/md5
#
echo c - sslwrap
mkdir -p sslwrap > /dev/null 2>&1
echo x - sslwrap/Makefile
sed 's/^X//' >sslwrap/Makefile << 'END-of-sslwrap/Makefile'
X# New ports collection makefile for:	sslwrap
X# Version required:	2.0.5
X# Date created:		1999 november 7.
X# Whom:			Zahemszky, Gabor <ZGabor at CoDe dot HU>
X#
X# $Id$
X#
X
XDISTNAME=	sslwrap
XPKGNAME=	sslwrap-2.0.5
XCATEGORIES=	security
XMASTER_SITES=	http://www.rickk.com/sslwrap/
X
XMAINTAINER=	ZGabor@CoDe.HU
X
XRUN_DEPENDS=	${PREFIX}/lib/libssl.a:${PORTSDIR}/security/openssl
XBUILD_DEPENDS=	${PREFIX}/include/openssl/ssl.h:${PORTSDIR}/security/openssl
X
X.if defined(USA_RESIDENT) && ${USA_RESIDENT} == YES
XLIB_DEPENDS=	rsaref.2:${PORTSDIR}/security/rsaref
XMAKE_ENV+=	EXTRA_SSL_LIBS="-lRSAglue -lrsaref"
X.endif
X
XWRKSRC=		${WRKDIR}/sslwrap205
X
Xdo-install:
X	${INSTALL_PROGRAM} ${WRKSRC}/sslwrap ${PREFIX}/bin/sslwrap
X.if !defined(NOPORTDOCS)
X	${MKDIR} ${PREFIX}/share/doc/sslwrap
X	${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/docs.html \
X			${PREFIX}/share/doc/sslwrap
X.endif
X
Xpost-install:
X	strip ${PREFIX}/bin/sslwrap
X
X.include <bsd.port.mk>
END-of-sslwrap/Makefile
echo c - sslwrap/pkg
mkdir -p sslwrap/pkg > /dev/null 2>&1
echo x - sslwrap/pkg/COMMENT
sed 's/^X//' >sslwrap/pkg/COMMENT << 'END-of-sslwrap/pkg/COMMENT'
XThis is another SSL Wrapper application, which uses SSLEay/OpenSSL.
END-of-sslwrap/pkg/COMMENT
echo x - sslwrap/pkg/DESCR
sed 's/^X//' >sslwrap/pkg/DESCR << 'END-of-sslwrap/pkg/DESCR'
X   This is a port of sslwrap.
X
X   "... sslwrap is a simple Unix service that sits over any simple TCP service
X   such as POP3, IMAP, SMTP, and encrypts all of the data on the
X   connection using TLS/SSL. It uses ssleay to support SSL version 2 and
X   3. It can run out of inetd. It can also encrypt data for services
X   located on another computer.
X
X   It works with the servers you already have, and does not require any
X   modifications to your existing servers. ..."
X
X   Of course, it works with OpenSSL, too.
X
X
Xhttp://www.rickk.com/sslwrap/
X
X--
X
XPorted by Zahemszky, Gabor <ZGabor at CoDe dot HU>
END-of-sslwrap/pkg/DESCR
echo x - sslwrap/pkg/PLIST
sed 's/^X//' >sslwrap/pkg/PLIST << 'END-of-sslwrap/pkg/PLIST'
Xbin/sslwrap
Xshare/doc/sslwrap/README
Xshare/doc/sslwrap/docs.html
X@dirrm share/doc/sslwrap
END-of-sslwrap/pkg/PLIST
echo c - sslwrap/patches
mkdir -p sslwrap/patches > /dev/null 2>&1
echo x - sslwrap/patches/patch-aa
sed 's/^X//' >sslwrap/patches/patch-aa << 'END-of-sslwrap/patches/patch-aa'
Xdiff -c -r sslwrap205.orig/Makefile sslwrap205/Makefile
X*** Makefile.orig	Tue Sep 28 14:49:54 1999
X--- Makefile	Sat Oct 23 00:52:12 1999
X***************
X*** 14,21 ****
X  
X  all :
X  	gcc -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
X! 		-L/usr/local/ssl/lib -lssl -lcrypto \
X! 		-I/usr/local/ssl/include \
X  		${EXTLIBS}
X  
X  clean:
X--- 14,21 ----
X  
X  all :
X  	gcc -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
X! 		-L/usr/local/lib -lssl -lcrypto \
X! 		-I/usr/local/include \
X  		${EXTLIBS}
X  
X  clean:
END-of-sslwrap/patches/patch-aa
echo c - sslwrap/files
mkdir -p sslwrap/files > /dev/null 2>&1
echo x - sslwrap/files/md5
sed 's/^X//' >sslwrap/files/md5 << 'END-of-sslwrap/files/md5'
XMD5 (sslwrap.tar.gz) = 1aaccd6cd4c0822f798ff67061d0c90d
END-of-sslwrap/files/md5
exit


>Release-Note:
>Audit-Trail:
>Unformatted:


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199911072216.XAA69746>