forked from Lainports/freebsd-ports
Bareos (BackupArchivingRecoveryOpenSourced) is a reliable network open source software to backup, archive and restore files from all major operating systems. The fork was founded 2010 out of the bacula.org project. The fork has been actively developed and many new features have been added. WWW: http://www.bareos.org/
26 lines
570 B
Makefile
26 lines
570 B
Makefile
# Created by: Alonso Cardenas <acm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bareos
|
|
PORTREVISION= 0
|
|
PKGNAMESUFFIX= -client-static
|
|
|
|
COMMENT= Backup archiving recovery open sourced (static client)
|
|
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
MASTERDIR= ${.CURDIR}/../../sysutils/bareos-server
|
|
|
|
PLIST_FILES= sbin/bareos-fd-static \
|
|
sbin/bconsole-static
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_DEFAULT=#
|
|
|
|
CONFIGURE_ARGS+= --enable-client-only \
|
|
--enable-static-fd \
|
|
--enable-static-cons \
|
|
--disable-libtool \
|
|
--disable-build-dird \
|
|
--disable-build-stored
|
|
|
|
.include "${MASTERDIR}/Makefile"
|