29 lines
595 B
Makefile
29 lines
595 B
Makefile
# Created by: Anders Troback
|
|
|
|
PORTNAME= bacula
|
|
CATEGORIES= net-mgmt
|
|
PKGNAMEPREFIX= nagios-check_
|
|
PKGNAMESUFFIX= 11
|
|
|
|
MAINTAINER= dvl@FreeBSD.org
|
|
COMMENT= Nagios plugin for Bacula
|
|
|
|
LIB_DEPENDS+= libbac.so:sysutils/bacula11-client
|
|
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
PLIST_FILES= libexec/nagios/check_bacula
|
|
WITH_NAGIOS_CHECK_ONLY= yes
|
|
MASTERDIR= ${.CURDIR}/../../sysutils/bacula11-server
|
|
|
|
CONFIGURE_ARGS= --enable-client-only \
|
|
--disable-build-dird \
|
|
--disable-build-stored \
|
|
--disable-nls \
|
|
--disable-xatt
|
|
|
|
OPTIONS_DEFINE= #
|
|
OPTIONS_DEFAULT=#
|
|
|
|
NO_CCACHE= yes
|
|
|
|
.include "${MASTERDIR}/Makefile"
|