aboutsummaryrefslogtreecommitdiffstats
path: root/security/scrypt
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2013-04-29 05:02:39 +0800
committerbapt <bapt@FreeBSD.org>2013-04-29 05:02:39 +0800
commit63cff4fb52ecbe8ce9260e04e0049980d8cb41d5 (patch)
tree933fd11da647dda8c169bc24693094174bdc0355 /security/scrypt
parent65f6091f0d07908b50e6042a48cdadec0073a2ac (diff)
downloadfreebsd-ports-gnome-63cff4fb52ecbe8ce9260e04e0049980d8cb41d5.tar.gz
freebsd-ports-gnome-63cff4fb52ecbe8ce9260e04e0049980d8cb41d5.tar.zst
freebsd-ports-gnome-63cff4fb52ecbe8ce9260e04e0049980d8cb41d5.zip
Convert security to new options framework
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