1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00
freebsd-ports/security/scrypt/Makefile
Adam Weinberger a84c115a09 Convert a bunch of EXTRACT_SUFX=... into USES=tar:...
Approved by:	portmgr (not really, but touches unstaged ports)
2014-07-29 19:11:51 +00:00

31 lines
548 B
Makefile

# Created by: Wen Heping <wenheping@gmail.com>
# $FreeBSD$
PORTNAME= scrypt
PORTVERSION= 1.1.6
CATEGORIES= security
MASTER_SITES= http://www.tarsnap.com/scrypt/
MAINTAINER= wen@FreeBSD.org
COMMENT= Key Derivation Function
GNU_CONFIGURE= yes
USES= gmake tar:tgz
USE_LDCONFIG= yes
PLIST_FILES= bin/scrypt \
man/man1/scrypt.1.gz
OPTIONS_DEFINE= SSE2
SSE2_DESC= Use SSE2-optimized code
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MSSE2}
CONFIGURE_ARGS+= --enable-sse2
.else
CONFIGURE_ARGS+= --disable-sse2
.endif
.include <bsd.port.mk>