Date: Tue, 25 Aug 2015 16:41:02 +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: r395300 - head/security/scrypt Message-ID: <201508251641.t7PGf2aV029784@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cperciva Date: Tue Aug 25 16:41:01 2015 New Revision: 395300 URL: https://svnweb.freebsd.org/changeset/ports/395300 Log: Claim ownership of security/scrypt. It's my code anyway... Remove SSE2 option; the latest version autodetects CPU support at runtime so it no longer has a compile-time selection. Remove USE_LDCONFIG; this port does not install any libraries, so it's not clear why this was ever in here. Modified: head/security/scrypt/Makefile Modified: head/security/scrypt/Makefile ============================================================================== --- head/security/scrypt/Makefile Tue Aug 25 15:40:08 2015 (r395299) +++ head/security/scrypt/Makefile Tue Aug 25 16:41:01 2015 (r395300) @@ -6,25 +6,13 @@ PORTVERSION= 1.2.0 CATEGORIES= security MASTER_SITES= http://www.tarsnap.com/scrypt/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= cperciva@tarsnap.com 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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508251641.t7PGf2aV029784>