blob: 73d8fe8010483a869c59b00887ef9f2638e91d13 (
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
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# $NetBSD: Makefile,v 1.58 2002/08/19 15:17:55 wiz Exp $
DISTNAME= openssl-0.9.6g
SVR4_PKGNAME= ossl
CATEGORIES= security
MASTER_SITES= ftp://ftp.openssl.org/source/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.openssl.org/
COMMENT= Secure Socket Layer and cryptographic library
USE_PERL5= build
CONFLICTS= SSLeay-[0-9]* ssleay-[0-9]* base64-[0-9]* \
glimpse-[0-9]
CRYPTO= YES
# openssl supplies IDEA/RC5. IDEA/RC5 need license for commercial use.
LICENCE= fee-based-commercial-use
CONFIGURE_SCRIPT= config
CONFIGURE_ARGS= shared --openssldir=${PKG_SYSCONFDIR} --prefix=${PREFIX}
CONFIGURE_ENV= CC="${CC}"
PLIST_SRC= ${PKGDIR}/PLIST.${LOWER_OPSYS}
PLIST_SRC+= ${PLIST_RSAREF}
PLIST_SRC+= ${PKGDIR}/PLIST.common
PKG_SYSCONFSUBDIR= openssl
CONF_FILES= ${PREFIX}/share/examples/openssl/openssl.cnf \
${PKG_SYSCONFDIR}/openssl.cnf
OWN_DIRS= ${PKG_SYSCONFDIR}/certs ${PKG_SYSCONFDIR}/private
do-configure:
cd ${WRKSRC} \
&& ${PERL5} util/perlpath.pl ${PERL5} \
&& ${SETENV} ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} \
${CONFIGURE_ARGS}
test: all
@cd ${WRKSRC}/test \
&& ${SETENV} ${LD_PATH_VARNAME}=${WRKSRC} \
${MAKE_PROGRAM} tests \
&& ${ECHO} "*** Tests successful. ***"
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "NetBSD"
PATCH_SITES= ${MASTER_SITE_LOCAL}
PATCHFILES= openssl-0.9.6g-20020810-netbsd.patch.gz
PKG_SYSCONFDIR.${PKGBASE}?= /etc/openssl
. if !exists(/usr/libexec/ld.elf_so) && !exists(/usr/libexec/ld.so)
IGNORE= ${PKGNAME} requires shared object support
. endif
# This hack goes away, once we formally de-support NetBSD-1.4.2.
. if ${OS_VERSION:M1.4.[123]} != ""
CONFIGURE_ARGS= no-shared --openssldir=${PKG_SYSCONFDIR} --prefix=${PREFIX}
PLIST_SRC= ${PLIST_RSAREF} ${PKGDIR}/PLIST.common
. if ${OS_VERSION:M1.4.[12]} != ""
post-patch:
${PATCH} ${PATCH_ARGS} < ${FILESDIR}/patch-netbsd-1.4.2
. endif # ${OS_VERSION} matches 1.4.[12]
. endif # ${OS_VERSION} matches 1.4.[123]
.endif # ${OPSYS} == "NetBSD"
.if ${OPSYS} == "Darwin"
LD_PATH_VARNAME= DYLD_LIBRARY_PATH
.else
LD_PATH_VARNAME= LD_LIBRARY_PATH
.endif
.if defined(USE_RSAREF2) && ${USE_RSAREF2} == YES
DEPENDS= rsaref-2.0p3:../../security/rsaref
CONFIGURE_ARGS+= rsaref
PLIST_RSAREF= ${PKGDIR}/PLIST.rsaref
.endif
.if (${OPSYS} == SunOS) && (${MACHINE_ARCH} == sparc)
CONFIGURE_SCRIPT= Configure
CONFIGURE_ARGS+= solaris-${SPARC_TARGET_ARCH}-${CC}
.endif
.include "../../mk/bsd.pkg.install.mk"
.include "../../mk/bsd.pkg.mk"
|