mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
e73b692405
Fix building bat on 10 and head Allow packaging as a user
25 lines
509 B
Makefile
25 lines
509 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bacula
|
|
PKGNAMESUFFIX= -client-static
|
|
|
|
COMMENT= Network backup solution (static client)
|
|
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
MASTERDIR= ${.CURDIR}/../../sysutils/bacula-server
|
|
|
|
PLIST_FILES= sbin/bacula-fd-static \
|
|
sbin/bconsole-static
|
|
|
|
OPTIONS_DEFINE= NLS OPENSSL
|
|
OPTIONS_DEFAULT=NLS OPENSSL
|
|
|
|
CONFIGURE_ARGS+= --enable-client-only \
|
|
--enable-static-fd \
|
|
--enable-static-cons \
|
|
--disable-libtool \
|
|
--disable-build-dird \
|
|
--disable-build-stored
|
|
|
|
.include "${MASTERDIR}/Makefile"
|