diff options
author | tobez <tobez@FreeBSD.org> | 2001-10-02 16:34:11 +0000 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2001-10-02 16:34:11 +0000 |
commit | 214523c908c525d76b216c00453379d36808fe82 (patch) | |
tree | 631db2a5abd9d88d48ca1b2820aebdd5c1384570 /misc | |
parent | a2a1d6370b00d79ae3ab8c7b666d71dd3a17a8fd (diff) | |
download | FreeBSD-ports-214523c908c525d76b216c00453379d36808fe82.zip FreeBSD-ports-214523c908c525d76b216c00453379d36808fe82.tar.gz |
Add afbackup-server, a server portion of the 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-server/Makefile | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index f464c80..d36ef504 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 0000000..59d703a --- /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" + |