svn commit: r358785 - in head/sysutils: . tartarus

Bartek Rutkowski robak at FreeBSD.org
Sun Jun 22 10:49:17 UTC 2014


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 <otis at sk.FreeBSD.org>
+# $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 at 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 <bsd.port.mk>

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
+ at dirrmtry %%SITE_PERL%%/Tartarus/Charon
+ at dirrmtry %%SITE_PERL%%/Tartarus


More information about the svn-ports-head mailing list