From owner-svn-ports-head@FreeBSD.ORG Mon Nov 4 20:12:05 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C46807CA; Mon, 4 Nov 2013 20:12:05 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A45982F84; Mon, 4 Nov 2013 20:12:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA4KC5xi022505; Mon, 4 Nov 2013 20:12:05 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA4KC4su022500; Mon, 4 Nov 2013 20:12:04 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201311042012.rA4KC4su022500@svn.freebsd.org> From: Antoine Brodin Date: Mon, 4 Nov 2013 20:12:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r332772 - in head/security: . pecl-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.14 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: Mon, 04 Nov 2013 20:12:05 -0000 Author: antoine Date: Mon Nov 4 20:12:04 2013 New Revision: 332772 URL: http://svnweb.freebsd.org/changeset/ports/332772 Log: New port: security/pecl-scrypt This is a PHP library providing a wrapper to Colin Percival's scrypt implementation. Scrypt is a key derivation function designed to be far more secure against hardware brute-force attacks than alternative functions such as PBKDF2 or bcrypt. WWW: http://pecl.php.net/package/scrypt PR: ports/180904 Submitted by: Horia Racoviceanu Added: head/security/pecl-scrypt/ head/security/pecl-scrypt/Makefile (contents, props changed) head/security/pecl-scrypt/distinfo (contents, props changed) head/security/pecl-scrypt/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Nov 4 20:11:01 2013 (r332771) +++ head/security/Makefile Mon Nov 4 20:12:04 2013 (r332772) @@ -669,6 +669,7 @@ SUBDIR += pecl-crack SUBDIR += pecl-gnupg SUBDIR += pecl-pam + SUBDIR += pecl-scrypt SUBDIR += pecl-ssh2 SUBDIR += pecl-taint SUBDIR += pecl-tcpwrap Added: head/security/pecl-scrypt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pecl-scrypt/Makefile Mon Nov 4 20:12:04 2013 (r332772) @@ -0,0 +1,27 @@ +# Created by: Horia Racoviceanu +# $FreeBSD$ + +PORTNAME= scrypt +PORTVERSION= 1.2 +CATEGORIES= security pear +MASTER_SITES= http://pecl.php.net/get/ +PKGNAMEPREFIX= pecl- +EXTRACT_SUFX= .tgz + +MAINTAINER= horia@racoviceanu.com +COMMENT= PHP wrapper to Colin Percival's scrypt implementation + +LICENSE= BSD + +USE_PHP= hash +USE_PHPEXT= yes +USE_PHP_BUILD= yes + +.include + +.if ${ARCH} != amd64 +post-patch: + ${REINPLACE_CMD} '/emmintrin.h/d' ${WRKSRC}/config.m4 +.endif + +.include Added: head/security/pecl-scrypt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pecl-scrypt/distinfo Mon Nov 4 20:12:04 2013 (r332772) @@ -0,0 +1,2 @@ +SHA256 (scrypt-1.2.tgz) = b5089b32bdf5d4e1406081c29a7f72447ec801ef863cb7aefed22e82941f56f9 +SIZE (scrypt-1.2.tgz) = 20361 Added: head/security/pecl-scrypt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/pecl-scrypt/pkg-descr Mon Nov 4 20:12:04 2013 (r332772) @@ -0,0 +1,6 @@ +This is a PHP library providing a wrapper to Colin Percival's scrypt +implementation. Scrypt is a key derivation function designed to be +far more secure against hardware brute-force attacks than alternative +functions such as PBKDF2 or bcrypt. + +WWW: http://pecl.php.net/package/scrypt