From owner-svn-ports-all@FreeBSD.ORG Sat Feb 9 14:00:32 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 17A756BF; Sat, 9 Feb 2013 14:00:32 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0A5E6B4B; Sat, 9 Feb 2013 14:00:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r19E0Vtc046984; Sat, 9 Feb 2013 14:00:31 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r19E0VUo046980; Sat, 9 Feb 2013 14:00:31 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201302091400.r19E0VUo046980@svn.freebsd.org> From: Martin Wilke Date: Sat, 9 Feb 2013 14:00:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r311976 - in head/sysutils: . zogftw X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Feb 2013 14:00:32 -0000 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 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 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 +# $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@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 + +.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 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/