diff options
author | ryoon <ryoon@pkgsrc.org> | 2019-11-26 14:41:13 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2019-11-26 14:41:13 +0000 |
commit | e680e063f1dd1d85d6b81237b43b951fe9dce12c (patch) | |
tree | e1bb0fde5e0135fc8dff29fb407dddca881452e0 /lang/rust | |
parent | 182dde13df774c9519a9a02b0743662ce1fcce8d (diff) | |
download | pkgsrc-e680e063f1dd1d85d6b81237b43b951fe9dce12c.tar.gz |
cargo requires root CA certificates, bump PKGREVISON
* NetBSD base has no root CA certificate, depend on mozilla-rootcerts-openssl.
Diffstat (limited to 'lang/rust')
-rw-r--r-- | lang/rust/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/rust/Makefile b/lang/rust/Makefile index ba14ec20300..5004a07b92d 100644 --- a/lang/rust/Makefile +++ b/lang/rust/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.131 2019/11/20 19:07:12 minskim Exp $ +# $NetBSD: Makefile,v 1.132 2019/11/26 14:41:13 ryoon Exp $ DISTNAME= rustc-1.39.0-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= http://static.rust-lang.org/dist/ @@ -285,6 +286,9 @@ TOOLS_CREATE+= md5sum TOOLS_PATH.md5sum= ${PREFIX}/bin/gmd5sum TOOLS_PLATFORM.gzcat= ${PREFIX}/bin/gzip -cd .endif +.if ${OPSYS} == "NetBSD" +DEPENDS+= mozilla-rootcerts-openssl-[0-9]*:../../security/mozilla-rootcerts-openssl +.endif SUBST_CLASSES+= rpath SUBST_STAGE.rpath= pre-configure |