Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 18 Jun 2016 23:41:41 +0000 (UTC)
From:      Colin Percival <cperciva@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r417096 - head/security/scrypt
Message-ID:  <201606182341.u5INffBt089271@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606182341.u5INffBt089271>