blob: dda239045f8929e2ac776d1551b339b23d5384da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Created by: Wen Heping <wenheping@gmail.com>
# $FreeBSD$
PORTNAME= scrypt
PORTVERSION= 1.1.6
CATEGORIES= security
MASTER_SITES= http://www.tarsnap.com/scrypt/
EXTRACT_SUFX= .tgz
MAINTAINER= wen@FreeBSD.org
COMMENT= Key Derivation Function
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_LDCONFIG= yes
PLIST_FILES= bin/scrypt
MAN1= scrypt.1
OPTIONS_DEFINE= SSE2
SSE2_DESC= Use SSE2-optimized code
NO_STAGE= yes
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSSE2}
CONFIGURE_ARGS+= --enable-sse2
.else
CONFIGURE_ARGS+= --disable-sse2
.endif
.include <bsd.port.mk>
|