diff options
author | fredb <fredb@pkgsrc.org> | 2000-02-12 14:08:29 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2000-02-12 14:08:29 +0000 |
commit | 2782ab019562a85032abed88729ee897d287ad45 (patch) | |
tree | aefcebafc9a9c999438a6712c43d28de94ff8a23 /security/openssl | |
parent | d22a026a2951fed20da7d444ef2eb981747de745 (diff) | |
download | pkgsrc-2782ab019562a85032abed88729ee897d287ad45.tar.gz |
Install the static libs, now that they're built anyway, and run "ranlib",
if it exists. Minor fix-up to PLIST. Closes PR pkg/8897.
Diffstat (limited to 'security/openssl')
-rw-r--r-- | security/openssl/Makefile | 9 | ||||
-rw-r--r-- | security/openssl/pkg/PLIST | 5 |
2 files changed, 11 insertions, 3 deletions
diff --git a/security/openssl/Makefile b/security/openssl/Makefile index 038552ab884..ff5ebde00d4 100644 --- a/security/openssl/Makefile +++ b/security/openssl/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 1999/12/16 12:03:21 abs Exp $ +# $NetBSD: Makefile,v 1.12 2000/02/12 14:08:29 fredb Exp $ # DISTNAME= openssl-0.9.4 @@ -82,7 +82,12 @@ do-install: cd ${WRKSRC}/apps && ${INSTALL_SCRIPT} CA.sh CA.pl ${PREFIX}/bin/ ${INSTALL_DATA} ${WRKSRC}/apps/openssl.cnf ${PREFIX}/etc/openssl.cnf.example cd ${WRKSRC} && \ - ${INSTALL_DATA} libcrypto.so.?.0 libssl.so.?.0 ${PREFIX}/lib/ + ${INSTALL_DATA} libcrypto.so.?.0 libssl.so.?.0 ${PREFIX}/lib/; \ + ${INSTALL_DATA} libcrypto.a libssl.a ${PREFIX}/lib/ +.if exists(/usr/bin/ranlib) + /usr/bin/ranlib ${PREFIX}/lib/libcrypto.a + /usr/bin/ranlib ${PREFIX}/lib/libssl.a +.endif .if defined(USE_RSAREF2) && ${USE_RSAREF2} == YES # libRSAglue.a is only useful if you are using the RSAREF2 library. cd ${WRKSRC} && ${INSTALL_DATA} libRSAglue.a ${PREFIX}/lib/ diff --git a/security/openssl/pkg/PLIST b/security/openssl/pkg/PLIST index 64aa31897cb..f059fad3e7c 100644 --- a/security/openssl/pkg/PLIST +++ b/security/openssl/pkg/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 1999/11/25 18:51:47 erh Exp $ +@comment $NetBSD: PLIST,v 1.3 2000/02/12 14:08:30 fredb Exp $ bin/CA.pl bin/CA.sh bin/asn1parse @@ -136,9 +136,12 @@ include/openssl/txt_db.h include/openssl/x509.h include/openssl/x509_vfy.h include/openssl/x509v3.h +lib/libcrypto.a lib/libcrypto.so.1.0 +lib/libssl.a lib/libssl.so.1.0 share/doc/openssl/README +share/doc/openssl/c-indentation.el share/doc/openssl/crypto.pod share/doc/openssl/openssl.pod share/doc/openssl/openssl.txt |