svn commit: r332772 - in head/security: . pecl-scrypt

Antoine Brodin antoine at FreeBSD.org
Mon Nov 4 20:12:05 UTC 2013


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 <horia at racoviceanu.com>
+# $FreeBSD$
+
+PORTNAME=	scrypt
+PORTVERSION=	1.2
+CATEGORIES=	security pear
+MASTER_SITES=	http://pecl.php.net/get/
+PKGNAMEPREFIX=	pecl-
+EXTRACT_SUFX=	.tgz
+
+MAINTAINER=	horia at racoviceanu.com
+COMMENT=	PHP wrapper to Colin Percival's scrypt implementation
+
+LICENSE=	BSD
+
+USE_PHP=	hash
+USE_PHPEXT=	yes
+USE_PHP_BUILD=	yes
+
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} != amd64
+post-patch:
+	${REINPLACE_CMD} '/emmintrin.h/d' ${WRKSRC}/config.m4
+.endif
+
+.include <bsd.port.post.mk>

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


More information about the svn-ports-all mailing list