diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-09-10 02:19:50 +0800 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-09-10 02:19:50 +0800 |
commit | aa925496461e8fe3d90a0e937521f4eca44ca29d (patch) | |
tree | 5bc2723c5e8b66d0d814f14f43bbcc9d23844dbb /security/gpgdir | |
parent | 73d68e732cab3ed92713f90fb357889353b90509 (diff) | |
download | freebsd-ports-gnome-aa925496461e8fe3d90a0e937521f4eca44ca29d.tar.gz freebsd-ports-gnome-aa925496461e8fe3d90a0e937521f4eca44ca29d.tar.zst freebsd-ports-gnome-aa925496461e8fe3d90a0e937521f4eca44ca29d.zip |
- Add gpgdir 1.9.5
gpgdir is a perl script that uses the CPAN GnuPG::Interface module
to encrypt and decrypt directories using a gpg key specified in ~/.gpgdirrc.
WWW: http://www.cipherdyne.org/gpgdir/
PR: ports/179187
Submitted by: Hakisho Nukama <nukama@gmail.com>
Diffstat (limited to 'security/gpgdir')
-rw-r--r-- | security/gpgdir/Makefile | 30 | ||||
-rw-r--r-- | security/gpgdir/distinfo | 2 | ||||
-rw-r--r-- | security/gpgdir/pkg-descr | 4 |
3 files changed, 36 insertions, 0 deletions
diff --git a/security/gpgdir/Makefile b/security/gpgdir/Makefile new file mode 100644 index 000000000000..c97f460bf660 --- /dev/null +++ b/security/gpgdir/Makefile @@ -0,0 +1,30 @@ +# Created by: Hakisho Nukama <nukama@gmail.com> +# $FreeBSD$ + +PORTNAME= gpgdir +PORTVERSION= 1.9.5 +CATEGORIES= security perl5 +MASTER_SITES= https://www.cipherdyne.org/~cipherdy/gpgdir/download/ \ + http://www.cipherdyne.org/gpgdir/download/ + +MAINTAINER= nukama+maintainer@gmail.com +COMMENT= Recursive directory encryption with GnuPG + +LICENSE= GPLv2 + +RUN_DEPENDS= p5-Class-MethodMaker>=0:${PORTSDIR}/devel/p5-Class-MethodMaker \ + p5-GnuPG-Interface>=0:${PORTSDIR}/security/p5-GnuPG-Interface \ + p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey + +NO_BUILD= yes +USE_PERL5= run +USES= perl5 + +MAN1= gpgdir.1 +PLIST_FILES= bin/gpgdir + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/gpgdir ${PREFIX}/bin/ + ${INSTALL_MAN} ${WRKSRC}/gpgdir.1 ${MANPREFIX}/man/man1/ + +.include <bsd.port.mk> diff --git a/security/gpgdir/distinfo b/security/gpgdir/distinfo new file mode 100644 index 000000000000..438ae0f47fe3 --- /dev/null +++ b/security/gpgdir/distinfo @@ -0,0 +1,2 @@ +SHA256 (gpgdir-1.9.5.tar.gz) = dd2a55f50ce78c446df9358f5f6c031996c3cf4ef07593da25708a1eb19fc859 +SIZE (gpgdir-1.9.5.tar.gz) = 233202 diff --git a/security/gpgdir/pkg-descr b/security/gpgdir/pkg-descr new file mode 100644 index 000000000000..18649da709c0 --- /dev/null +++ b/security/gpgdir/pkg-descr @@ -0,0 +1,4 @@ +gpgdir is a perl script that uses the CPAN GnuPG::Interface module +to encrypt and decrypt directories using a gpg key specified in ~/.gpgdirrc. + +WWW: http://www.cipherdyne.org/gpgdir/ |