From owner-svn-ports-head@freebsd.org Tue Aug 25 16:41:02 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A751E99A559; Tue, 25 Aug 2015 16:41:02 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 945EEAED; Tue, 25 Aug 2015 16:41:02 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7PGf25n029785; Tue, 25 Aug 2015 16:41:02 GMT (envelope-from cperciva@FreeBSD.org) Received: (from cperciva@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7PGf2aV029784; Tue, 25 Aug 2015 16:41:02 GMT (envelope-from cperciva@FreeBSD.org) Message-Id: <201508251641.t7PGf2aV029784@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cperciva set sender to cperciva@FreeBSD.org using -f From: Colin Percival Date: Tue, 25 Aug 2015 16:41:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r395300 - head/security/scrypt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Aug 2015 16:41:02 -0000 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 - -.if ${PORT_OPTIONS:MSSE2} -CONFIGURE_ARGS+= --enable-sse2 -.else -CONFIGURE_ARGS+= --disable-sse2 -.endif - .include