svn commit: r313112 - in head/security: . libsodium
Martin Wilke
miwi at FreeBSD.org
Thu Feb 28 16:45:33 UTC 2013
Author: miwi
Date: Thu Feb 28 16:45:32 2013
New Revision: 313112
URL: http://svnweb.freebsd.org/changeset/ports/313112
Log:
libsodium is a library for network communication, encryption,
decryption, signatures, etc.
libsodium is a portable, cross-compilable, installable,
packageable, API-compatible version of NaCl(security/nacl).
NaCl's goal is to provide all of the core operations needed
to build higher-level cryptographic tools.
WWW: https://github.com/jedisct1/libsodium
Submitted by: "csosstudy E." <csosstudy at gmail.com>
PR: ports/176493
Added:
head/security/libsodium/
head/security/libsodium/Makefile (contents, props changed)
head/security/libsodium/distinfo (contents, props changed)
head/security/libsodium/pkg-descr (contents, props changed)
head/security/libsodium/pkg-plist (contents, props changed)
Modified:
head/security/Makefile
Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile Thu Feb 28 16:41:43 2013 (r313111)
+++ head/security/Makefile Thu Feb 28 16:45:32 2013 (r313112)
@@ -279,6 +279,7 @@
SUBDIR += libpreludedb
SUBDIR += libpwstor
SUBDIR += libsectok
+ SUBDIR += libsodium
SUBDIR += libssh
SUBDIR += libssh2
SUBDIR += libtasn1
Added: head/security/libsodium/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/libsodium/Makefile Thu Feb 28 16:45:32 2013 (r313112)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME= libsodium
+PORTVERSION= 0.3
+CATEGORIES= security
+MASTER_SITES= http://download.dnscrypt.org/libsodium/releases/
+
+MAINTAINER= csosstudy at gmail.com
+COMMENT= Library for build higher-level cryptographic tools
+
+LICENSE= ISCL
+
+GNU_CONFIGURE= yes
+USE_LDCONFIG= yes
+
+post-build:
+ cd ${WRKSRC} && ${MAKE} check
+
+.include <bsd.port.mk>
Added: head/security/libsodium/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/libsodium/distinfo Thu Feb 28 16:45:32 2013 (r313112)
@@ -0,0 +1,2 @@
+SHA256 (libsodium-0.3.tar.gz) = 908a26f84bedb432305c81ec6773aa95b8e724ba2ece6234840685a74e033750
+SIZE (libsodium-0.3.tar.gz) = 727213
Added: head/security/libsodium/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/libsodium/pkg-descr Thu Feb 28 16:45:32 2013 (r313112)
@@ -0,0 +1,9 @@
+libsodium is a library for network communication, encryption,
+decryption, signatures, etc.
+
+libsodium is a portable, cross-compilable, installable,
+packageable, API-compatible version of NaCl(security/nacl).
+NaCl's goal is to provide all of the core operations needed
+to build higher-level cryptographic tools.
+
+WWW: https://github.com/jedisct1/libsodium
Added: head/security/libsodium/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/libsodium/pkg-plist Thu Feb 28 16:45:32 2013 (r313112)
@@ -0,0 +1,46 @@
+lib/libsodium.so.2
+lib/libsodium.so
+lib/libsodium.la
+lib/libsodium.a
+include/sodium/crypto_auth.h
+include/sodium/crypto_auth_hmacsha256.h
+include/sodium/crypto_auth_hmacsha512256.h
+include/sodium/crypto_box.h
+include/sodium/crypto_box_curve25519xsalsa20poly1305.h
+include/sodium/crypto_core_hsalsa20.h
+include/sodium/crypto_core_salsa20.h
+include/sodium/crypto_core_salsa2012.h
+include/sodium/crypto_core_salsa208.h
+include/sodium/crypto_hash.h
+include/sodium/crypto_hash_sha256.h
+include/sodium/crypto_hash_sha512.h
+include/sodium/crypto_hashblocks_sha256.h
+include/sodium/crypto_hashblocks_sha512.h
+include/sodium/crypto_onetimeauth.h
+include/sodium/crypto_onetimeauth_poly1305.h
+include/sodium/crypto_scalarmult_curve25519.h
+include/sodium/crypto_secretbox.h
+include/sodium/crypto_secretbox_xsalsa20poly1305.h
+include/sodium/crypto_shorthash.h
+include/sodium/crypto_shorthash_siphash24.h
+include/sodium/crypto_sign.h
+include/sodium/crypto_sign_ed25519.h
+include/sodium/crypto_sign_edwards25519sha512batch.h
+include/sodium/crypto_stream.h
+include/sodium/crypto_stream_aes128ctr.h
+include/sodium/crypto_stream_salsa20.h
+include/sodium/crypto_stream_salsa2012.h
+include/sodium/crypto_stream_salsa208.h
+include/sodium/crypto_stream_xsalsa20.h
+include/sodium/crypto_uint16.h
+include/sodium/crypto_uint32.h
+include/sodium/crypto_uint64.h
+include/sodium/crypto_uint8.h
+include/sodium/crypto_verify_16.h
+include/sodium/crypto_verify_32.h
+include/sodium/randombytes.h
+include/sodium/randombytes_salsa20_random.h
+include/sodium/randombytes_sysrandom.h
+include/sodium/version.h
+include/sodium.h
+ at dirrm include/sodium
More information about the svn-ports-head
mailing list