- Add support for RADOS and GFAPI (plugins and storage) [1] - Bareos ports are compiled with fastlz (compress file with LZ4/LZ4HC/FastLZ) by default - Add python3 support [1] https://docs.bareos.org/TasksAndConcepts/Plugins.html [1] https://docs.bareos.org/TasksAndConcepts/StorageBackends.html ChangeLog at: https://docs.bareos.org/Appendix/ReleaseNotes.html
28 lines
675 B
Makefile
28 lines
675 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bareos
|
|
PKGNAMESUFFIX= -traymonitor
|
|
|
|
COMMENT= Backup archiving recovery open sourced (traymonitor)
|
|
|
|
LIB_DEPENDS+= libqwt5-qt5.so:x11-toolkits/qwt5-qt5 \
|
|
libbareos.so:sysutils/bareos-client
|
|
|
|
CONFLICTS= bacula*-bat-* bareos16-traymonitor-*
|
|
|
|
USES= desktop-file-utils gettext-runtime pkgconfig qt:5
|
|
USE_QT= buildtools_build qmake_build uitools_build gui core
|
|
WITH_BAT= yes
|
|
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
CFLAGS+= -DMDB_DSYNC=O_SYNC -DMDB_USE_POSIX_SEM=1
|
|
|
|
MASTERDIR= ${.CURDIR}/../../sysutils/bareos-server
|
|
|
|
CMAKE_ARGS+= -Dtraymonitor=yes \
|
|
-Dbuild-dird=no \
|
|
-Dbuild-stored=no \
|
|
-Dclient-only=yes \
|
|
-Dnls=ON
|
|
|
|
.include "${MASTERDIR}/Makefile"
|