mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
6482269534
0.8.1 is no longer available due to PKCS#1 security hole.
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
# New ports collection makefile for: Eric Young's SSL/Crypto Library
|
|
# Version required: 0.8.1b
|
|
# Date created: 15 Aug 1997
|
|
# Whom: markm@freebsd.org
|
|
#
|
|
# $Id: Makefile,v 1.16 1998/02/17 21:14:23 markm Exp $
|
|
|
|
DISTNAME= SSLeay-0.8.1b
|
|
CATEGORIES= devel security
|
|
MASTER_SITES= ftp://psych.psy.uq.oz.au/pub/Crypto/SSL/
|
|
|
|
MAINTAINER= markm@FreeBSD.ORG
|
|
|
|
RESTRICTED= "Cryptography"
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= util/FreeBSD.sh
|
|
|
|
.if !defined(USA_RESIDENT) || ${USA_RESIDENT} != YES && ${USA_RESIDENT} != NO
|
|
pre-fetch:
|
|
@echo
|
|
@echo You must set variable USA_RESIDENT to YES, if you are USA resident
|
|
@echo or to NO, if you aren\'t USA resident to build this package.
|
|
@echo You must also have installed RSAREF if you are USA resident.
|
|
@false
|
|
.elif defined(USA_RESIDENT)
|
|
.if ${USA_RESIDENT} == YES
|
|
BUILD_DEPENDS= rsaref\\.2\\.:${PORTSDIR}/security/rsaref
|
|
|
|
post-configure:
|
|
${CP} ${WRKSRC}/rsaref/rsaref.h ${WRKSRC}/include/rsaref.h
|
|
(${PATCH} <${FILESDIR}/Makefile.patch)
|
|
.endif
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/SSLeay
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/SSLeay
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|