* Fix 1352 about double free with regexp and big filenames on windows * Apply Graham's idea for recovering from disk full by recursing when doing fixup_write_error ... * Make fix for VirtualFull changing device * Fix concurrent Job recycle bug 1288 * Backport part of one possible fix from bug 1346 * Fix bug 1382 newly created disk volumes -> file not found warning * Fix Alpha ifdefing -- should fix bug 1359 * Use old code for selecting file during restore. * tweak space on projects file * Fix seg fault in ignoredir code * Apply Frank's slash patch * Add more info when SD-connection refused * Fixes bug 1371 about segfault in SD * Fixes bug 1355 Director crashes with double free in Accurate SQL query * Fixes bug 1365 and 1366 about MacOSX resource forks. * Fixes bug 1369 about "Exclude Dir Containing" fileset option * Fixes bug 1368 ASSERT Failure on MacOS. * Fixes bug 1364 and 1363 about compression buffer error.
28 lines
858 B
Makefile
28 lines
858 B
Makefile
# $NetBSD: Makefile,v 1.9 2009/10/28 09:30:22 adam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-qt-console-/}
|
|
COMMENT= Qt-based console for Bacula - The Network Backup Solution
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../sysutils/bacula/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../sysutils/bacula/patches
|
|
|
|
USE_TOOLS+= gmake pkg-config
|
|
CONFIGURE_ARGS+= --enable-client-only
|
|
CONFIGURE_ARGS+= --enable-bat
|
|
|
|
BUILD_DIRS= src/qt-console
|
|
|
|
INSTALLATION_DIRS= bin share/examples/bacula
|
|
|
|
CONF_FILES+= ${EXAMPLESDIR}/bat.conf ${PKG_SYSCONFDIR}/bat.conf
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/src/qt-console/bat.conf ${DESTDIR}${EXAMPLESDIR}
|
|
|
|
.include "../../sysutils/bacula/Makefile.common"
|
|
.include "../../sysutils/bacula/buildlink3.mk"
|
|
.include "../../x11/qt4-libs/buildlink3.mk"
|
|
.include "../../x11/qt4-tools/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|