svn commit: r378876 - in head/security: . reop
Kubilay Kocak
koobs at FreeBSD.org
Thu Feb 12 14:29:00 UTC 2015
Author: koobs
Date: Thu Feb 12 14:28:58 2015
New Revision: 378876
URL: https://svnweb.freebsd.org/changeset/ports/378876
QAT: https://qat.redports.org/buildarchive/r378876/
Log:
[NEW] security/reop: Reasonable Expectation Of Privacy
reop is a simple, semi-modern wannabe PGP clone.
Supported operations include signing -S and verifying -V messages, plus
a variety of options for encrypting messages (-D -E). It does everything
you'd expect a PGP program to do. More accurately, it does everything I
expect you to expect a PGP program to do.
WWW: https://github.com/tedu/reop
Added:
head/security/reop/
head/security/reop/Makefile (contents, props changed)
head/security/reop/distinfo (contents, props changed)
head/security/reop/pkg-descr (contents, props changed)
Modified:
head/security/Makefile
Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile Thu Feb 12 14:18:02 2015 (r378875)
+++ head/security/Makefile Thu Feb 12 14:28:58 2015 (r378876)
@@ -877,6 +877,7 @@
SUBDIR += rdigest
SUBDIR += regripper
SUBDIR += regripperplugins
+ SUBDIR += reop
SUBDIR += retranslator
SUBDIR += revealrk
SUBDIR += revelation
Added: head/security/reop/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/reop/Makefile Thu Feb 12 14:28:58 2015 (r378876)
@@ -0,0 +1,35 @@
+# Created by: Kubilay Kocak <koobs at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= reop
+PORTVERSION= 2.1.0
+CATEGORIES= security
+
+MAINTAINER= koobs at FreeBSD.org
+COMMENT= Reasonable Expectation Of Privacy
+
+LIB_DEPENDS= libsodium.so:${PORTSDIR}/security/libsodium
+
+USES= gmake
+USE_GITHUB= yes
+GH_ACCOUNT= tedu
+GH_COMMIT= f2948f6
+
+MAKEFILE= GNUmakefile
+MAKE_ARGS+= CPPFLAGS="-D_NSIG=NSIG" \
+ CFLAGS+="-I${LOCALBASE}/include -Iother -Wno-pointer-sign" \
+ PREFIX="${STAGEDIR}${PREFIX}"
+
+#CFLAGS+= -I${LOCALBASE}/include -Iother
+#LDFLAGS+= -L${LOCALBASE}/lib -lsodium
+
+PLIST_FILES= bin/reop \
+ man/man1/reop.1.gz
+
+do-install:
+ ${MKDIR} ${STAGEDIR}${PREFIX}/bin
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+ ${MKDIR} ${STAGEDIR}${MAN1PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
+
+.include <bsd.port.mk>
Added: head/security/reop/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/reop/distinfo Thu Feb 12 14:28:58 2015 (r378876)
@@ -0,0 +1,2 @@
+SHA256 (reop-2.1.0.tar.gz) = c9d6feac2676ee3da2166333031962ebbc529a0ecbfd949b312139d7466cb060
+SIZE (reop-2.1.0.tar.gz) = 32462
Added: head/security/reop/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/security/reop/pkg-descr Thu Feb 12 14:28:58 2015 (r378876)
@@ -0,0 +1,8 @@
+reop is a simple, semi-modern wannabe PGP clone.
+
+Supported operations include signing -S and verifying -V messages, plus a
+variety of options for encrypting messages (-D -E). It does everything you'd
+expect a PGP program to do. More accurately, it does everything I expect you
+to expect a PGP program to do.
+
+WWW: https://github.com/tedu/reop
More information about the svn-ports-head
mailing list