diff options
author | Carlo Strub <cs@FreeBSD.org> | 2014-01-19 21:36:04 +0000 |
---|---|---|
committer | Carlo Strub <cs@FreeBSD.org> | 2014-01-19 21:36:04 +0000 |
commit | 5eff8227239e05552b89ac9edef5bec745073581 (patch) | |
tree | 24704dc473107947ce93a2544be847e089837c52 /security/pond | |
parent | af403d556a02615fbec40f54f2350439baffd4f0 (diff) | |
download | ports-5eff8227239e05552b89ac9edef5bec745073581.tar.gz ports-5eff8227239e05552b89ac9edef5bec745073581.zip |
Pond is not email. Pond is forward secure, asynchronous messaging for the
discerning. Pond messages are asynchronous, but are not a record; they expire
automatically a week after they are received. Pond seeks to prevent leaking
traffic information against everyone except a global passive attacker.
Pond is experimental software! DO NOT USE IT FOR ANYTHING REAL!!!
Use security/gnupg instead.
!!! THIS INSTALLS THE POND SERVER ONLY, NOT THE CLIENT !!!
WWW: https://github.com/agl/pond/
Notes
Notes:
svn path=/head/; revision=340352
Diffstat (limited to 'security/pond')
-rw-r--r-- | security/pond/Makefile | 35 | ||||
-rw-r--r-- | security/pond/distinfo | 6 | ||||
-rw-r--r-- | security/pond/pkg-descr | 11 |
3 files changed, 52 insertions, 0 deletions
diff --git a/security/pond/Makefile b/security/pond/Makefile new file mode 100644 index 000000000000..32869489b09c --- /dev/null +++ b/security/pond/Makefile @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= pond +PORTVERSION= 20140118 +CATEGORIES= security +MASTER_SITES= http://c-s.li/ports/ +DISTFILES= pond-20140118.tar.gz \ + go-gtk-20131128.tar.gz \ + ed25519-20131225.tar.gz + +MAINTAINER= cs@FreeBSD.org +COMMENT= Forward secure, asynchronous messenger -- Server Only + +LICENSE= BSD3CLAUSE + +BUILD_DEPENDS= ${LOCALBASE}/${GO_LIBDIR}/code.google.com/p/go.crypto/bcrypt.a:${PORTSDIR}/security/go.crypto \ + ${LOCALBASE}/${GO_LIBDIR}/code.google.com/p/goprotobuf/proto.a:${PORTSDIR}/devel/goprotobuf \ + ${LOCALBASE}/${GO_LIBDIR}/code.google.com/p/go.net/dict.a:${PORTSDIR}/net/go.net + +BROKEN= Experimental. Know what you do! +PLIST_FILES= bin/server +# USE_GNOME= gtk30 +GO_PKGNAME= github.com/agl/pond +GO_TARGET= ${GO_PKGNAME}/server +# ${GO_PKGNAME}/client + +post-extract: + @${MKDIR} ${GO_WRKSRC:H} + @${LN} -sf ${WRKSRC} ${GO_WRKSRC} + @${LN} -sf ${WRKDIR}/go-gtk-20131128 ${GO_WRKDIR_SRC}/github.com/agl/go-gtk + @${LN} -sf ${WRKDIR}/ed25519-20131225 ${GO_WRKDIR_SRC}/github.com/agl/ed25519 + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/lang/go/files/bsd.go.mk" +.include <bsd.port.post.mk> diff --git a/security/pond/distinfo b/security/pond/distinfo new file mode 100644 index 000000000000..c2650fc7f5a4 --- /dev/null +++ b/security/pond/distinfo @@ -0,0 +1,6 @@ +SHA256 (pond-20140118.tar.gz) = fab50333d564e8b286aa62daac55ad0b6f0391731478a5490cbccd5bd1a74cc2 +SIZE (pond-20140118.tar.gz) = 1049288 +SHA256 (ed25519-20131225.tar.gz) = 6cd982fc6d93fd47b650e8922ab66fa64f40d395ddb5879497dbd8aa0c3c8c6d +SIZE (ed25519-20131225.tar.gz) = 105671 +SHA256 (go-gtk-20131128.tar.gz) = 505452cfb7972a49e6960ad26a48c743d02598113b44e1fe0d5b9ee2a20719a4 +SIZE (go-gtk-20131128.tar.gz) = 206393 diff --git a/security/pond/pkg-descr b/security/pond/pkg-descr new file mode 100644 index 000000000000..e0e9b677c96f --- /dev/null +++ b/security/pond/pkg-descr @@ -0,0 +1,11 @@ +Pond is not email. Pond is forward secure, asynchronous messaging for the +discerning. Pond messages are asynchronous, but are not a record; they expire +automatically a week after they are received. Pond seeks to prevent leaking +traffic information against everyone except a global passive attacker. + +Pond is experimental software! DO NOT USE IT FOR ANYTHING REAL!!! +Use security/gnupg instead. + +!!! THIS INSTALLS THE POND SERVER ONLY, NOT THE CLIENT !!! + +WWW: https://github.com/agl/pond/ |