svn commit: r311976 - in head/sysutils: . zogftw
Martin Wilke
miwi at FreeBSD.org
Sat Feb 9 14:00:32 UTC 2013
Author: miwi
Date: Sat Feb 9 14:00:30 2013
New Revision: 311976
URL: http://svnweb.freebsd.org/changeset/ports/311976
Log:
zogftw makes using multiple geli-encrypted single-vdev ZFS pools
for backups more convenient, mainly by automating creation, import
and export of such pools and by synchronizing datasets without the
user having to manually specify the names of the snapshots that
should be sent.
geli passphrases can be stored gpg-encrypted which allows importing
several pools in a row without having to specify each passphrase
manually.
zogftw is extendable in shell. It can be sourced from other shell
scripts or interactive shells.
WWW: http://www.fabiankeil.de/gehacktes/zogftw/
PR: ports/175127
Submitted by: Fabian Keil <fk at fabiankeil.de>
Added:
head/sysutils/zogftw/
head/sysutils/zogftw/Makefile (contents, props changed)
head/sysutils/zogftw/distinfo (contents, props changed)
head/sysutils/zogftw/pkg-descr (contents, props changed)
Modified:
head/sysutils/Makefile
Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile Sat Feb 9 13:55:10 2013 (r311975)
+++ head/sysutils/Makefile Sat Feb 9 14:00:30 2013 (r311976)
@@ -1073,6 +1073,7 @@
SUBDIR += zfstools
SUBDIR += zidrav
SUBDIR += zisofs-tools
+ SUBDIR += zogftw
SUBDIR += zxfer
.include <bsd.port.subdir.mk>
Added: head/sysutils/zogftw/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/zogftw/Makefile Sat Feb 9 14:00:30 2013 (r311976)
@@ -0,0 +1,35 @@
+# Created by: Fabian Keil <fk at fabiankeil.de>
+# $FreeBSD$
+
+PORTNAME= zogftw
+PORTVERSION= 0.0.2013.01.08
+CATEGORIES= sysutils
+MASTER_SITES= http://www.fabiankeil.de/sourcecode/zogftw/
+DISTNAME= ${PORTNAME}-2013-01-08-ebee83e
+
+MAINTAINER= fk at fabiankeil.de
+COMMENT= Creates redundant backups on encrypted ZFS pools
+
+RUN_DEPENDS= mbuffer:${PORTSDIR}/misc/mbuffer \
+ sudo:${PORTSDIR}/security/sudo
+
+OPTIONS_DEFINE= GNUPG
+OPTIONS_DEFAULT= GNUPG
+
+PLIST_FILES= sbin/zogftw
+
+MAN8= zogftw.8
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MGNUPG}
+RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg1 \
+ gpg-agent:${PORTSDIR}/security/gnupg
+.endif
+
+do-build:
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/zogftw ${PREFIX}/sbin/zogftw
+ ${INSTALL_MAN} ${WRKSRC}/zogftw.8 ${MAN8PREFIX}/man/man8
+
+.include <bsd.port.mk>
Added: head/sysutils/zogftw/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/zogftw/distinfo Sat Feb 9 14:00:30 2013 (r311976)
@@ -0,0 +1,2 @@
+SHA256 (zogftw-2013-01-08-ebee83e.tar.gz) = 892bfbda2c193c25cb27b6f7941ebf2581ba6f7174a804ce6f2e3a8f778c4aad
+SIZE (zogftw-2013-01-08-ebee83e.tar.gz) = 15292
Added: head/sysutils/zogftw/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sysutils/zogftw/pkg-descr Sat Feb 9 14:00:30 2013 (r311976)
@@ -0,0 +1,14 @@
+zogftw makes using multiple geli-encrypted single-vdev ZFS pools
+for backups more convenient, mainly by automating creation, import
+and export of such pools and by synchronizing datasets without the
+user having to manually specify the names of the snapshots that
+should be sent.
+
+geli passphrases can be stored gpg-encrypted which allows importing
+several pools in a row without having to specify each passphrase
+manually.
+
+zogftw is extendable in shell. It can be sourced from other shell
+scripts or interactive shells.
+
+WWW: http://www.fabiankeil.de/gehacktes/zogftw/
More information about the svn-ports-head
mailing list