diff options
author | tobez <tobez@FreeBSD.org> | 2001-10-02 16:29:20 +0000 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2001-10-02 16:29:20 +0000 |
commit | a2a1d6370b00d79ae3ab8c7b666d71dd3a17a8fd (patch) | |
tree | 835c0c402394c7ea970d0028bedd25f5096283b1 /misc | |
parent | e8beafb40c46d98046632a1238a502c366e75b32 (diff) | |
download | FreeBSD-ports-a2a1d6370b00d79ae3ab8c7b666d71dd3a17a8fd.zip FreeBSD-ports-a2a1d6370b00d79ae3ab8c7b666d71dd3a17a8fd.tar.gz |
Add afbackup-client, a client portion of AF's backup system.
Submitted by: Vadim Belman <voland@catpipe.net>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/afbackup-client/Makefile | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index e3619b6..f464c80 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -10,6 +10,7 @@ SUBDIR += aclgen SUBDIR += acron SUBDIR += afbackup + SUBDIR += afbackup-client SUBDIR += alevt SUBDIR += amanda SUBDIR += amanda24-client diff --git a/misc/afbackup-client/Makefile b/misc/afbackup-client/Makefile new file mode 100644 index 0000000..079a34d --- /dev/null +++ b/misc/afbackup-client/Makefile @@ -0,0 +1,15 @@ +# ports collection makefile for: afbackup-client +# Date created: 21 Sep 2001 +# Whom: Vadim Belman <voland@catpipe.net> +# +# $FreeBSD$ +# + +PKGNAMESUFFIX= -client + +WITHOUT_SERVER= yes + +MASTERDIR= ${.CURDIR}/../afbackup + +.include "${MASTERDIR}/Makefile" + |