diff options
author | miwi <miwi@FreeBSD.org> | 2009-12-25 18:17:11 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-12-25 18:17:11 +0800 |
commit | 5161cfa649f357176f6f78a3b60186bca86d9c61 (patch) | |
tree | acdcd63b6d382b44e63427c92669e3d35d8fb9da | |
parent | 1efae565a39393ccac78b092252060784e5aca98 (diff) | |
download | freebsd-ports-gnome-5161cfa649f357176f6f78a3b60186bca86d9c61.tar.gz freebsd-ports-gnome-5161cfa649f357176f6f78a3b60186bca86d9c61.tar.zst freebsd-ports-gnome-5161cfa649f357176f6f78a3b60186bca86d9c61.zip |
This is a port of bontmia, which is a tool to make incremental backups
over network using rsync and ssh. It supports storing of a given number
of archives in wich files that has not been changed since last backup
will be hard linked to previous archive to save space and bandwidth.
Bontmia is an acromyn of Backup Over Network To Multiple Incremental
Archives wich pretty good sums up its intended use.
WWW: http://kosmos.ttyv0.se/projects/show/bontmia
PR: ports/141772
Submitted by: Henrik Andersen
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/bontmia/Makefile | 27 | ||||
-rw-r--r-- | sysutils/bontmia/distinfo | 3 | ||||
-rw-r--r-- | sysutils/bontmia/pkg-descr | 9 |
4 files changed, 40 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 216fb6e106e3..fa0a110fd6af 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -67,6 +67,7 @@ SUBDIR += bkpupsd SUBDIR += bksh SUBDIR += blimitd + SUBDIR += bontmia SUBDIR += boxbackup SUBDIR += brasero SUBDIR += bsd-splash-changer diff --git a/sysutils/bontmia/Makefile b/sysutils/bontmia/Makefile new file mode 100644 index 000000000000..b0d8a8aa0a5b --- /dev/null +++ b/sysutils/bontmia/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: bontmia +# Date created: 11 december 2009 +# Whom: Henrik Andersen +# +# $FreeBSD$ +# + +PORTNAME= bontmia +PORTVERSION= 0.14 +CATEGORIES= sysutils +MASTER_SITES= http://kosmos.ttyv0.se/attachments/download/31/ + +MAINTAINER= ports@henrikandersen.se +COMMENT= A small tool for incremental backups over network + +RUN_DEPENDS= rsync:${PORTSDIR}/net/rsync + +USE_PERL5_RUN= yes + +NO_BUILD= yes + +PLIST_FILES= bin/bontmia + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/bontmia ${PREFIX}/bin + +.include <bsd.port.mk> diff --git a/sysutils/bontmia/distinfo b/sysutils/bontmia/distinfo new file mode 100644 index 000000000000..85cfa183b3e6 --- /dev/null +++ b/sysutils/bontmia/distinfo @@ -0,0 +1,3 @@ +MD5 (bontmia-0.14.tar.gz) = 15608ead98d81edf4ea2ebfe78af7545 +SHA256 (bontmia-0.14.tar.gz) = ac01cbf7fed8e13df9b713062f5178ec3fcf15f18cdb9e59e8504b568223398d +SIZE (bontmia-0.14.tar.gz) = 13925 diff --git a/sysutils/bontmia/pkg-descr b/sysutils/bontmia/pkg-descr new file mode 100644 index 000000000000..45782032acba --- /dev/null +++ b/sysutils/bontmia/pkg-descr @@ -0,0 +1,9 @@ +This is a port of bontmia, which is a tool to make incremental backups +over network using rsync and ssh. It supports storing of a given number +of archives in wich files that has not been changed since last backup +will be hard linked to previous archive to save space and bandwidth. + +Bontmia is an acromyn of Backup Over Network To Multiple Incremental +Archives wich pretty good sums up its intended use. + +WWW: http://kosmos.ttyv0.se/projects/show/bontmia |