diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2016-12-14 13:43:35 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2016-12-14 13:43:35 +0000 |
commit | 4a8dc62f3f3ae0539e08c5e770d2ddc7069c82d8 (patch) | |
tree | 8485212184c202fde8c8091ca389ce9a4a6550a3 /security/nacl | |
parent | aea78c6479112bcb9fb6b0d8739b45a34f00dc35 (diff) | |
download | ports-4a8dc62f3f3ae0539e08c5e770d2ddc7069c82d8.tar.gz ports-4a8dc62f3f3ae0539e08c5e770d2ddc7069c82d8.zip |
Notes
Diffstat (limited to 'security/nacl')
-rw-r--r-- | security/nacl/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/security/nacl/Makefile b/security/nacl/Makefile index 5c9b192d1107..0c1aaf3d971b 100644 --- a/security/nacl/Makefile +++ b/security/nacl/Makefile @@ -3,13 +3,15 @@ PORTNAME= nacl PORTVERSION= 20110221 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= http://hyperelliptic.org/nacl/ MAINTAINER= johans@FreeBSD.org COMMENT= High speed cryptography library +LICENSE= PD + USES= tar:bzip2 ALL_TARGET= do USE_BINUTILS= yes @@ -21,9 +23,9 @@ HOSTNAME_CMD?= /bin/hostname -s MYARCH= ${ARCH:S/i386/x86/} post-patch: - @${REINPLACE_CMD} -i -e "s|$$| -fPIC|" ${WRKSRC}/okcompilers/c - @${REINPLACE_CMD} -i -e "s|gcc|${CC}|" ${WRKSRC}/okcompilers/c - @${REINPLACE_CMD} -i -e "s|c++|${CXX}|" ${WRKSRC}/okcompilers/cpp + @${REINPLACE_CMD} -e "s|$$| -fPIC|" ${WRKSRC}/okcompilers/c + @${REINPLACE_CMD} -e "s|gcc|${CC}|" ${WRKSRC}/okcompilers/c + @${REINPLACE_CMD} -e "s|g++|${CXX}|" ${WRKSRC}/okcompilers/cpp pre-build: ${RM} -r ${WRKSRC}/crypto_onetimeauth/poly1305/amd64 |