From owner-svn-ports-all@FreeBSD.ORG Sun Jun 22 10:49:17 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4E8FB82; Sun, 22 Jun 2014 10:49:17 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A14732A64; Sun, 22 Jun 2014 10:49:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5MAnHUP075064; Sun, 22 Jun 2014 10:49:17 GMT (envelope-from robak@svn.freebsd.org) Received: (from robak@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5MAnG6F075059; Sun, 22 Jun 2014 10:49:16 GMT (envelope-from robak@svn.freebsd.org) Message-Id: <201406221049.s5MAnG6F075059@svn.freebsd.org> From: Bartek Rutkowski Date: Sun, 22 Jun 2014 10:49:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358785 - in head/sysutils: . tartarus 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.18 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: Sun, 22 Jun 2014 10:49:17 -0000 Author: robak Date: Sun Jun 22 10:49:16 2014 New Revision: 358785 URL: http://svnweb.freebsd.org/changeset/ports/358785 QAT: https://qat.redports.org/buildarchive/r358785/ Log: sysutils/tartarus: new port Tartarus is a new port of wrappers around common unix tools for simplified backup utility, as submitted in PR 191077 with my fixes and testing. PR: 191077 Submitted by: Juraj Lutter Reviewed by: marino (mentor), mat Approved by: marino (mentor) Added: head/sysutils/tartarus/ head/sysutils/tartarus/Makefile (contents, props changed) head/sysutils/tartarus/distinfo (contents, props changed) head/sysutils/tartarus/pkg-descr (contents, props changed) head/sysutils/tartarus/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Sun Jun 22 10:44:29 2014 (r358784) +++ head/sysutils/Makefile Sun Jun 22 10:49:16 2014 (r358785) @@ -910,6 +910,7 @@ SUBDIR += sysvbanner SUBDIR += tai64nfrac SUBDIR += tarsnap + SUBDIR += tartarus SUBDIR += tbku SUBDIR += tclsyslog SUBDIR += tcplist Added: head/sysutils/tartarus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/tartarus/Makefile Sun Jun 22 10:49:16 2014 (r358785) @@ -0,0 +1,28 @@ +# Created by: Juraj Lutter +# $FreeBSD$ + +PORTNAME= tartarus +PORTVERSION= 0.9.8 +CATEGORIES= sysutils +MASTER_SITES= http://wertarbyte.de/tartarus/ \ + http://ftp.wilbury.sk/pub/FreeBSD/local/distfiles/ + +MAINTAINER= otis@sk.FreeBSD.org +COMMENT= Wrappers around common unix tools for simplified backup solution + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash + +USES= gmake perl5 shebangfix tar:bzip2 +SHEBANG_FILES= ${WRKSRC}/bin/* + +do-install: + cd ${WRKSRC}/bin; ${INSTALL_SCRIPT} charon charon.ftp charon.local \ + charon.pipe orpheus tartarus ${STAGEDIR}${PREFIX}/bin + cd ${WRKSRC}/lib; ${COPYTREE_SHARE} Tartarus ${STAGEDIR}${SITE_PERL} + cd ${WRKSRC}/man; ${INSTALL_MAN} charon.1 charon.ftp.1 charon.local.1 \ + charon.pipe.1 tartarus.1 ${STAGEDIR}${MANPREFIX}/man/man1 + +.include Added: head/sysutils/tartarus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/tartarus/distinfo Sun Jun 22 10:49:16 2014 (r358785) @@ -0,0 +1,2 @@ +SHA256 (tartarus-0.9.8.tar.bz2) = cfd3158974e4c331bebf5b9fbf51eb3f884a71d60eaf2c82e8856a150691bcef +SIZE (tartarus-0.9.8.tar.bz2) = 28474 Added: head/sysutils/tartarus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/tartarus/pkg-descr Sun Jun 22 10:49:16 2014 (r358785) @@ -0,0 +1,14 @@ +Tartarus provides a nice wrapper around basic Unix tools such as tar, find and +curl (well, that's not that basic) to provide a seamless backup solution, +aimed at automatic gathering and backup. + +It has the ability to do full as well as incremental backups and is published +by Stefan Tomanek under the rules of the GPL. + +Instead of relying on single usage backup scripts or complicated command lines, +tartarus reads its configuration from easily managable configuration files. +It can store gathered data in regular files, or upload the backup directly (on +the fly) to an FTP server. For more specific usage scenarios, custom methods +can also be defined within the config file. + +WWW: http://wertarbyte.de/tartarus.shtml Added: head/sysutils/tartarus/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/tartarus/pkg-plist Sun Jun 22 10:49:16 2014 (r358785) @@ -0,0 +1,14 @@ +bin/charon +bin/charon.ftp +bin/charon.local +bin/charon.pipe +bin/orpheus +bin/tartarus +man/man1/charon.1.gz +man/man1/charon.ftp.1.gz +man/man1/charon.local.1.gz +man/man1/charon.pipe.1.gz +man/man1/tartarus.1.gz +%%SITE_PERL%%/Tartarus/Charon/Filter.pm +@dirrmtry %%SITE_PERL%%/Tartarus/Charon +@dirrmtry %%SITE_PERL%%/Tartarus