diff options
author | Lars Koeller <lkoeller@FreeBSD.org> | 2004-11-29 20:37:10 +0000 |
---|---|---|
committer | Lars Koeller <lkoeller@FreeBSD.org> | 2004-11-29 20:37:10 +0000 |
commit | 829e724a7a57053644917ca26412a14e97b0b10b (patch) | |
tree | e1351a3c910101f1f937ef9571a214d787855021 | |
parent | I misread a configure variable. Correct the path to the XML catalog. (diff) |
o) Client part after split of bacula port into a -server and -client
part.
Submitted by: Andy Wettstein <ajw@physics.umn.edu>
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/bacula-client/Makefile | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 519c26350c4d..07250e229dbc 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -29,6 +29,7 @@ SUBDIR += ataidle SUBDIR += autopsy SUBDIR += bacula + SUBDIR += bacula-client SUBDIR += barry SUBDIR += battfink SUBDIR += bbapm diff --git a/sysutils/bacula-client/Makefile b/sysutils/bacula-client/Makefile new file mode 100644 index 000000000000..ebf4957fc554 --- /dev/null +++ b/sysutils/bacula-client/Makefile @@ -0,0 +1,13 @@ + +# $FreeBSD$ + +PORTNAME= bacula +PKGNAMESUFFIX= -client + +MASTERDIR= ${.CURDIR}/../bacula-server +COMMENT= The network backup solution (client) +PLIST= ${PKGDIR}/pkg-plist.client + +WITH_CLIENT_ONLY= yes + +.include "${MASTERDIR}/Makefile" |