freebsd-ports/security/fressh/Makefile
Eric Anholt d67b191224 Fix with newer gcc by converting multiline string literals to string
concatenation.  Changed the formatting of the strings to what was more likely
intended, so bump PORTREVISION.
2003-05-12 22:06:35 +00:00

35 lines
824 B
Makefile

# New ports collection makefile for: fressh
# Date created: 25 July 2000
# Whom: Alistair G. Crooks <agc@netbsd.org>
#
# $FreeBSD$
#
PORTNAME= fressh
PORTVERSION= 0.8.1
PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= http://www.fressh.org/
MAINTAINER= ports@FreeBSD.org
COMMENT= A free rewritten implementation of the SSH communication protocol
USE_BZIP2= yes
.include <bsd.port.pre.mk>
.if !exists(/usr/lib/libssl.a) || !exists(/usr/lib/libcrypto.a)
.if exists(${LOCALBASE}/lib/libssl.a) && exists(${LOCALBASE}/lib/libcrypto.a)
LIB_DEPENDS+= ssl.3:${PORTSDIR}/security/openssl
MAKE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
RSAGLUE="${RSAGLUE}"
.if exists(${LOCALBASE}/lib/librsaref.a)
RSAGLUE= -lrsaref
.endif
RSAGLUE+= -lRSAglue
.endif
.endif
.include <bsd.port.post.mk>