b441adb6fd
* Fix bug: inappropriate Volume purging. * Modify sql_update.c to edit zeros rather than NULL in unset fields. * Backport most recent changes to compat.h and compat.cpp attempt to fix restore problem with accents in path. This works in version 2.5.x but is not tested in 2.4.4. * Create and apply 2.4.3-migrate2.patch, which fixes two bugs - sql error when there are no files to migrate. - Job catalog log is not migrated during migration. * Remove extra db_lock() in get_prune_list_for_volume() * Apply 2.4.3-prune-deadlock.patch that fixes a problem when using Catalog as message backend. * Apply 2.4.3-win32-runscript-unicode-path.patch for a problem when executing a program with Unicode path. * Apply 2.4.3-unique-inchanger.patch fix bad slot number if the volume is not in autochanger. * Fix for bug where Volume is purged while writing on it. * Get message enhancement to avoid job name lookup. * Fix bug with job name duplication if more than 60 jobs created during a minute. * Correct some bugs of cleanup in SD if the FD connection fails. * Fix orphaned jobs (possible deadlock) while pruning. * Backport of the btraceback script that keeps trace file on working dir * Migrate DB Log records too. * Modify SQL so that jobs that failed will not be migrated. * Correct bug where long retention periods caused immediate pruning.
28 lines
896 B
Makefile
28 lines
896 B
Makefile
# $NetBSD: Makefile,v 1.18 2009/01/06 11:29:26 adam Exp $
|
|
|
|
DISTNAME= bacula-docs-2.4.4
|
|
PKGNAME= ${DISTNAME:S/docs/doc/}
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bacula/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.bacula.org/
|
|
COMMENT= Documentation for Bacula - The Network Backup Solution
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
DOCDIR= share/doc/bacula
|
|
|
|
INSTALLATION_DIRS= ${DOCDIR} ${DOCDIR}/manual
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/manual/bacula/*.html ${DESTDIR}${PREFIX}/${DOCDIR}/manual/
|
|
${INSTALL_DATA} ${WRKSRC}/manual/bacula/bacula.css ${DESTDIR}${PREFIX}/${DOCDIR}/manual/
|
|
${INSTALL_DATA} ${WRKSRC}/manual/bacula/*.png ${DESTDIR}${PREFIX}/${DOCDIR}/manual/
|
|
${INSTALL_DATA} ${WRKSRC}/manual/bacula.pdf ${DESTDIR}${PREFIX}/${DOCDIR}/manual.pdf
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|