aboutsummaryrefslogtreecommitdiff
path: root/security/scrypt
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2013-04-28 21:02:39 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2013-04-28 21:02:39 +0000
commit0b881b0ecebc9440a559f1c2b27758488a1188fa (patch)
tree933fd11da647dda8c169bc24693094174bdc0355 /security/scrypt
parent928d434bd206738b7213dd9b5802c680794a9b10 (diff)
downloadports-0b881b0ecebc9440a559f1c2b27758488a1188fa.tar.gz
ports-0b881b0ecebc9440a559f1c2b27758488a1188fa.zip
Convert security to new options framework
Notes
Notes: svn path=/head/; revision=316749
Diffstat (limited to 'security/scrypt')
-rw-r--r--security/scrypt/Makefile11
1 files changed, 4 insertions, 7 deletions
diff --git a/security/scrypt/Makefile b/security/scrypt/Makefile
index f3215ea9b9d0..38fd158cc2aa 100644
--- a/security/scrypt/Makefile
+++ b/security/scrypt/Makefile
@@ -1,9 +1,5 @@
-# New ports collection makefile for: scrypt
-# Date created: 26 May, 2009
-# Whom: Wen Heping <wenheping@gmail.com>
-#
+# Created by: Wen Heping <wenheping@gmail.com>
# $FreeBSD$
-#
PORTNAME= scrypt
PORTVERSION= 1.1.6
@@ -21,11 +17,12 @@ PLIST_FILES= bin/scrypt
MAN1= scrypt.1
-OPTIONS= SSE2 "Use SSE2-optimized code" Off
+OPTIONS_DEFINE= SSE2
+SSE2_DESC= Use SSE2-optimized code
.include <bsd.port.options.mk>
-.if defined(WITH_SSE2)
+.if ${PORT_OPTIONS:MSSE2}
CONFIGURE_ARGS+= --enable-sse2
.else
CONFIGURE_ARGS+= --disable-sse2