diff options
author | Anton Berezin <tobez@FreeBSD.org> | 2001-10-02 16:34:11 +0000 |
---|---|---|
committer | Anton Berezin <tobez@FreeBSD.org> | 2001-10-02 16:34:11 +0000 |
commit | 7e20756bb8bd6370274ec12ef01038aafb33b390 (patch) | |
tree | 3fdf1162d24998d4bf7bfef184769ff02f0dd2e4 /misc | |
parent | 03484165b6e557c67e325ad6ef0889b89da1815c (diff) |
Add afbackup-server, a server portion of the AF's backup system.
Submitted by: Vadim Belman <voland@catpipe.net>
Notes
Notes:
svn path=/head/; revision=48349
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/afbackup-server/Makefile | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index f464c8089bc3..d36ef5047b96 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -11,6 +11,7 @@ SUBDIR += acron SUBDIR += afbackup SUBDIR += afbackup-client + SUBDIR += afbackup-server SUBDIR += alevt SUBDIR += amanda SUBDIR += amanda24-client diff --git a/misc/afbackup-server/Makefile b/misc/afbackup-server/Makefile new file mode 100644 index 000000000000..59d703a484ba --- /dev/null +++ b/misc/afbackup-server/Makefile @@ -0,0 +1,15 @@ +# ports collection makefile for: afbackup-client +# Date created: 21 Sep 2001 +# Whom: Vadim Belman <voland@catpipe.net> +# +# $FreeBSD$ +# + +PKGNAMESUFFIX= -server + +WITHOUT_CLIENT= yes + +MASTERDIR= ${.CURDIR}/../afbackup + +.include "${MASTERDIR}/Makefile" + |