diff options
author | jlaffaye <jlaffaye@FreeBSD.org> | 2012-05-15 06:07:50 +0800 |
---|---|---|
committer | jlaffaye <jlaffaye@FreeBSD.org> | 2012-05-15 06:07:50 +0800 |
commit | 18df032ec7fdd6535f342ba23c9cdfcbfbc2997e (patch) | |
tree | 0ae02a36c809a5e55b1d32740a2ffc8e4ece5675 /security/go.crypto | |
parent | c72e101585f3815426f379ea7ceaa4b23001f8fe (diff) | |
download | freebsd-ports-gnome-18df032ec7fdd6535f342ba23c9cdfcbfbc2997e.tar.gz freebsd-ports-gnome-18df032ec7fdd6535f342ba23c9cdfcbfbc2997e.tar.zst freebsd-ports-gnome-18df032ec7fdd6535f342ba23c9cdfcbfbc2997e.zip |
- Add go.crypto, a collection of Go packages related to cyptography.
Diffstat (limited to 'security/go.crypto')
-rw-r--r-- | security/go.crypto/Makefile | 42 | ||||
-rw-r--r-- | security/go.crypto/distinfo | 2 | ||||
-rw-r--r-- | security/go.crypto/pkg-descr | 4 | ||||
-rw-r--r-- | security/go.crypto/pkg-plist | 142 |
4 files changed, 190 insertions, 0 deletions
diff --git a/security/go.crypto/Makefile b/security/go.crypto/Makefile new file mode 100644 index 000000000000..d3fcedf9b8e7 --- /dev/null +++ b/security/go.crypto/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: go.crypto +# Date created: 2012-05-03 +# Whom: Julien Laffaye <jlaffaye@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= go.crypto +PORTVERSION= 20120503 +CATEGORIES= security devel +MASTER_SITES= http://jlaffaye.net/ LOCAL/jlaffaye + +MAINTAINER= jlaffaye@FreeBSD.org +COMMENT= Additional cryptography packages for Go + +GO_PKGNAME= code.google.com/p/go.crypto +GO_TARGET= ${GO_PKGNAME}/bcrypt \ + ${GO_PKGNAME}/blowfish \ + ${GO_PKGNAME}/cast5 \ + ${GO_PKGNAME}/curve25519 \ + ${GO_PKGNAME}/md4 \ + ${GO_PKGNAME}/ocsp \ + ${GO_PKGNAME}/openpgp \ + ${GO_PKGNAME}/pbkdf2 \ + ${GO_PKGNAME}/ripemd160 \ + ${GO_PKGNAME}/ssh \ + ${GO_PKGNAME}/twofish \ + ${GO_PKGNAME}/xtea + +do-install: + ${MKDIR} ${GO_LOCAL_LIBDIR}/${GO_PKGNAME} +.for t in ${GO_TARGET} + ${INSTALL_DATA} ${GO_WRKDIR_PKG}/${t}.a \ + ${GO_LOCAL_LIBDIR}/${GO_PKGNAME} + ${MKDIR} ${GO_LOCAL_SRCDIR}/${t} + (cd ${GO_WRKDIR_SRC}/${t}/ && ${COPYTREE_SHARE} \* \ + ${GO_LOCAL_SRCDIR}/${t}) +.endfor + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/lang/go/files/bsd.go.mk" +.include <bsd.port.post.mk> diff --git a/security/go.crypto/distinfo b/security/go.crypto/distinfo new file mode 100644 index 000000000000..e810994a6223 --- /dev/null +++ b/security/go.crypto/distinfo @@ -0,0 +1,2 @@ +SHA256 (go.crypto-20120503.tar.gz) = e24c918468b772f14f5f5acea5fc22530960681deefcbee8df6a3efc40933635 +SIZE (go.crypto-20120503.tar.gz) = 174988 diff --git a/security/go.crypto/pkg-descr b/security/go.crypto/pkg-descr new file mode 100644 index 000000000000..2cec738149d3 --- /dev/null +++ b/security/go.crypto/pkg-descr @@ -0,0 +1,4 @@ +go.crypto contains additional packages dealing with cryptography for Go, such +as bcrypt, blowfish, openpgp and ssh. + +WWW: http://code.google.com/p/go/source/browse?repo=crypto diff --git a/security/go.crypto/pkg-plist b/security/go.crypto/pkg-plist new file mode 100644 index 000000000000..aee99989f322 --- /dev/null +++ b/security/go.crypto/pkg-plist @@ -0,0 +1,142 @@ +@comment $FreeBSD$ +%%GO_LIBDIR%%/%%GO_PKGNAME%%/bcrypt.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/blowfish.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/cast5.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/curve25519.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/md4.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/ocsp.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/openpgp.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/pbkdf2.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/ripemd160.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/ssh.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/twofish.a +%%GO_LIBDIR%%/%%GO_PKGNAME%%/xtea.a +%%GO_SRCDIR%%/%%GO_PKGNAME%%/bcrypt/base64.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/bcrypt/bcrypt.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/bcrypt/bcrypt_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/blowfish/block.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/blowfish/blowfish_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/blowfish/cipher.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/blowfish/const.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/cast5/cast5.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/cast5/cast5_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/const_amd64.s +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/cswap_amd64.s +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/curve25519.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/curve25519_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/doc.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/freeze_amd64.s +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/ladderstep_amd64.s +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/mont25519_amd64.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/mul_amd64.s +%%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519/square_amd64.s +%%GO_SRCDIR%%/%%GO_PKGNAME%%/md4/md4.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/md4/md4_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/md4/md4block.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ocsp/ocsp.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ocsp/ocsp_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/armor/armor.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/armor/armor_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/armor/encode.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/canonical_text.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/canonical_text_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/clearsign/clearsign.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/clearsign/clearsign_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/elgamal/elgamal.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/elgamal/elgamal_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/errors/errors.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/keys.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/compressed.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/compressed_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/config.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/encrypted_key.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/encrypted_key_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/literal.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/ocfb.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/ocfb_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/one_pass_signature.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/packet.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/packet_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/private_key.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/private_key_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/public_key.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/public_key_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/reader.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/signature.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/signature_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/symmetric_key_encrypted.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/symmetric_key_encrypted_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/symmetrically_encrypted.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/symmetrically_encrypted_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/userid.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet/userid_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/read.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/read_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/s2k/s2k.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/s2k/s2k_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/write.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/write_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/pbkdf2/pbkdf2.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/pbkdf2/pbkdf2_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ripemd160/ripemd160.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ripemd160/ripemd160_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ripemd160/ripemd160block.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/agent.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/certs.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/channel.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/cipher.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/cipher_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/client.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/client_auth.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/client_auth_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/client_func_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/common.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/common_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/doc.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/example_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/keys.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/mac.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/messages.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/messages_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/server.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/server_terminal.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/server_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/session.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/session_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/tcpip.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/tcpip_func_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/terminal/terminal.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/terminal/terminal_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/terminal/util.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/transport.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/transport_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/twofish/twofish.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/twofish/twofish_test.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/xtea/block.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/xtea/cipher.go +%%GO_SRCDIR%%/%%GO_PKGNAME%%/xtea/xtea_test.go +@dirrm %%GO_LIBDIR%%/%%GO_PKGNAME%% +@dirrmtry %%GO_LIBDIR%%/code.google.com/p +@dirrmtry %%GO_LIBDIR%%/code.google.com +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/xtea +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/twofish +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh/terminal +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/ssh +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/ripemd160 +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/pbkdf2 +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/s2k +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/packet +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/errors +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/elgamal +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/clearsign +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp/armor +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/openpgp +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/ocsp +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/md4 +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/curve25519 +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/cast5 +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/blowfish +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%%/bcrypt +@dirrm %%GO_SRCDIR%%/%%GO_PKGNAME%% +@dirrmtry %%GO_SRCDIR%%/code.google.com/p +@dirrmtry %%GO_SRCDIR%%/code.google.com |