4102420f02
* 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.
38 lines
1.4 KiB
Makefile
38 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.22 2009/10/28 09:30:22 adam Exp $
|
|
|
|
DISTNAME= bacula-docs-3.0.3
|
|
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}
|
|
INSTALLATION_DIRS+= ${DOCDIR}/catalog
|
|
INSTALLATION_DIRS+= ${DOCDIR}/concepts
|
|
INSTALLATION_DIRS+= ${DOCDIR}/console
|
|
INSTALLATION_DIRS+= ${DOCDIR}/developers
|
|
INSTALLATION_DIRS+= ${DOCDIR}/install
|
|
INSTALLATION_DIRS+= ${DOCDIR}/problems
|
|
INSTALLATION_DIRS+= ${DOCDIR}/utility
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/manuals/en/catalog/catalog/* ${DESTDIR}${PREFIX}/${DOCDIR}/catalog/
|
|
${INSTALL_DATA} ${WRKSRC}/manuals/en/concepts/concepts/* ${DESTDIR}${PREFIX}/${DOCDIR}/concepts/
|
|
${INSTALL_DATA} ${WRKSRC}/manuals/en/console/console/* ${DESTDIR}${PREFIX}/${DOCDIR}/console/
|
|
${INSTALL_DATA} ${WRKSRC}/manuals/en/developers/developers/* ${DESTDIR}${PREFIX}/${DOCDIR}/developers/
|
|
${INSTALL_DATA} ${WRKSRC}/manuals/en/install/install/* ${DESTDIR}${PREFIX}/${DOCDIR}/install/
|
|
${INSTALL_DATA} ${WRKSRC}/manuals/en/problems/problems/* ${DESTDIR}${PREFIX}/${DOCDIR}/problems/
|
|
${INSTALL_DATA} ${WRKSRC}/manuals/en/utility/utility/* ${DESTDIR}${PREFIX}/${DOCDIR}/utility/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|