aboutsummaryrefslogtreecommitdiff
path: root/security/rsaref/Makefile
blob: 6f15ea7a40c7be2212132b1db47d8e485e5cea84 (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# New ports collection makefile for:	rsaref
# Date created:		2 Feb 1997
# Whom:			ache
#
# $FreeBSD$
#

PORTNAME=	rsaref
PORTVERSION= 	2.0
CATEGORIES=	security
MASTER_SITES=	ftp://ftp.deva.net/pub/sources/crypto/ \
		ftp://ftp.kddlabs.co.jp/.7/inet/caida/bmwt/ \
		ftp://ftp.zedz.net/pub/crypto/crypto/LIBS/rsa/ \
		ftp://ftp.hacktic.nl/pub/crypto/crypto/LIBS/rsa/ \
		ftp://ftp.demon.net/pub/mirrors/crypto/replay/crypto/LIBS/rsa/ \
		ftp://ftp.jyu.fi/.3/ftp.zedz.net/pub/replay/crypto/LIBS/rsa/ \
		ftp://ftp.funet.fi/pub/mirrors/utopia.hacktic.nl/crypto/LIBS/rsa/ \
		ftp://ftp.fu-berlin.de/unix/security/replay-mirror/crypto/LIBS/rsa/
DISTNAME=	rsaref20.1996
EXTRACT_SUFX=	.tar.Z

MAINTAINER=	kris@FreeBSD.ORG

WRKSRC=		${WRKDIR}/source
RESTRICTED=	"Contains cryptography"

pre-extract:
.if !defined(BATCH) && !defined(PACKAGE_BUILDING)
	/usr/bin/more -e ${FILESDIR}/LICENSE.english
	/usr/bin/dialog --yesno "Do you accept the terms of the RSAREF license agreement and wish to proceed with the build?" 8 40 || ${FALSE}
.endif

pre-configure:
	${CP} ${FILESDIR}/Makefile ${WRKSRC}
	cd ${WRKSRC} && \
		${CP} des.h _des.h && \
		${CP} md2.h _md2.h && \
		${CP} md5.h _md5.h

do-install:
.for file in rsa.h _des.h _md2.h _md5.h rsaref.h global.h
	${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include
.endfor
	${INSTALL_DATA} ${WRKSRC}/librsaref.a ${WRKSRC}/librsaref.so.2 \
		${PREFIX}/lib
	ln -sf librsaref.so.2 ${PREFIX}/lib/librsaref.so
	${LDCONFIG} -m ${PREFIX}/lib
.if !defined(NOPORTDOCS)
	@${MKDIR} ${PREFIX}/share/doc/rsaref
.for file in info.txt rsaref.txt
	${INSTALL_DATA} ${WRKSRC}/../doc/${file} ${PREFIX}/share/doc/rsaref
.endfor
.endif

.include <bsd.port.mk>