# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
name bacula
version 9.4.4
revision 0
categories sysutils
platforms darwin
license {AGPL-3 OpenSSLException}
maintainers nomaintainer
description network based backup program
long_description Bacula is a set of computer programs that permit you to \
manage backup, recovery, and verification of computer data across \
a network of computers of different kinds.
homepage http://www.bacula.org/
master_sites sourceforge
checksums rmd160 775b0da2ae838ed34b4f515c53883551569a85f3 \
sha256 0fe37a02ca768a720099d0d03509c364aff2390c05544d663f4819f8e7fc20be \
size 4159759
depends_build port:pkgconfig
depends_lib port:gawk \
port:gettext \
port:libiconv \
port:ncurses \
path:lib/libssl.dylib:openssl \
port:tcp_wrappers \
port:zlib \
port:lzo2
configure.ccache no
configure.args --mandir=${prefix}/share/man \
--docdir=${prefix}/share/doc/bacula \
--datarootdir=${prefix}/share \
--with-pid-dir=${prefix}/var/run \
--with-subsys-dir=${prefix}/var/run/subsys \
--sysconfdir=${prefix}/etc/${name} \
--with-libintl-prefix=${prefix} \
--with-openssl=${prefix} \
--with-libiconv-prefix=${prefix} \
--with-archivedir=/var/tmp \
--with-working-dir=${prefix}/var/bacula/working \
--with-included-gettext=${prefix} \
--enable-smartalloc \
--enable-largefile \
--enable-conio \
--without-sqlite3 \
--without-postgresql \
--without-mysql \
--with-tcp-wrappers
configure.cppflags-append -I${prefix}/ncurses
configure.ldflags ""
destroot.keepdirs ${destroot}${prefix}/var/run/subsys \
${destroot}${prefix}/var/bacula/working
# Don't overwrite preference files
post-destroot {
file rename ${destroot}${prefix}/etc/bacula/bacula-fd.conf ${destroot}${prefix}/etc/bacula/bacula-fd.conf.example
file rename ${destroot}${prefix}/etc/bacula/bconsole.conf ${destroot}${prefix}/etc/bacula/bconsole.conf.example
file rename ${destroot}${prefix}/etc/bacula/mtx-changer.conf ${destroot}${prefix}/etc/bacula/mtx-changer.conf.example
}
startupitem.create yes
startupitem.init "BIN=${prefix}/sbin/bacula-fd\nPID=${prefix}/var/run/bacula-fd.*.pid"
startupitem.start "\[ -x \${BIN} \] && \${BIN} -c ${prefix}/etc/bacula/bacula-fd.conf"
startupitem.stop "\[ -r \${PID} \] && /bin/kill \$(cat \${PID})"
notes "To use the Bacula FD client, you'll need to configure \"${prefix}/etc/bacula/bacula-fd.conf\"."
notes-append "To use bconsole, you'll need to configure \"${prefix}/etc/bacula/bconsole.conf\"."
variant client_only conflicts mysql51 mysql55 postgresql83 postgresql84 sqlite3 description "Install bacula client (bacula-fd) only" {
configure.args-append --enable-client-only
}
variant console_bat description "Install BAT console GUI application" {
depends_build-append port:tcp_wrappers \
port:makeicns
depends_lib-append port:qt4-mac \
port:qwt52
configure.args-append --enable-bat
patchfiles-append patch-configure-qt4.diff
post-patch {
system "makeicns -in ${worksrcpath}/src/qt-console/images/bat_icon.png -out ${worksrcpath}/src/qt-console/images/bat_icon.icns"