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/
33 lines
732 B
Makefile
33 lines
732 B
Makefile
# Created by: Alonso Cardenas Marquez <acm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bareos
|
|
PKGNAMESUFFIX= -bat
|
|
PORTREVISION= 0
|
|
|
|
COMMENT= Backup archiving recovery open sourced (GUI)
|
|
|
|
LIB_DEPENDS+= libqwt.so:${PORTSDIR}/x11-toolkits/qwt5 \
|
|
libbareos.so:${PORTSDIR}/sysutils/bareos-client
|
|
|
|
CONFLICTS= bacula*-bat-*
|
|
|
|
USES= pkgconfig
|
|
USE_QT4= qmake_build uic_build moc_build rcc_build
|
|
WITH_BAT= yes
|
|
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
MAKE_ENV+= MAKEOBJDIRPREFIX=/
|
|
|
|
MASTERDIR= ${.CURDIR}/../../sysutils/bareos-server
|
|
|
|
CONFIGURE_ARGS+= --enable-bat \
|
|
--with-qwt=${LOCALBASE}/lib \
|
|
--disable-build-dird \
|
|
--disable-build-stored \
|
|
--enable-client-only
|
|
|
|
OPTIONS_DEFINE= OPENSSL
|
|
OPTIONS_DEFAULT=OPENSSL
|
|
|
|
.include "${MASTERDIR}/Makefile"
|