svn commit: r417096 - head/security/scrypt
Colin Percival
cperciva at FreeBSD.org
Sat Jun 18 23:41:42 UTC 2016
Author: cperciva
Date: Sat Jun 18 23:41:41 2016
New Revision: 417096
URL: https://svnweb.freebsd.org/changeset/ports/417096
Log:
Teach security/scrypt about libcrypto versions:
* Add USE_OPENSSL
* Pass the appropriate CFLAGS and LDFLAGS to configure
Modified:
head/security/scrypt/Makefile
Modified: head/security/scrypt/Makefile
==============================================================================
--- head/security/scrypt/Makefile Sat Jun 18 23:35:02 2016 (r417095)
+++ head/security/scrypt/Makefile Sat Jun 18 23:41:41 2016 (r417096)
@@ -3,6 +3,7 @@
PORTNAME= scrypt
PORTVERSION= 1.2.0
+PORTREVISION= 1
CATEGORIES= security
MASTER_SITES= http://www.tarsnap.com/scrypt/
@@ -10,7 +11,11 @@ MAINTAINER= cperciva at tarsnap.com
COMMENT= Key Derivation Function
GNU_CONFIGURE= yes
+CONFIGURE_ENV= CFLAGS="-I${OPENSSLINC} ${CFLAGS}" \
+ LDFLAGS="-L${OPENSSLLIB} ${LDFLAGS}"
+
USES= gmake tar:tgz
+USE_OPENSSL= YES
PLIST_FILES= bin/scrypt \
man/man1/scrypt.1.gz
More information about the svn-ports-all
mailing list