https://blog.bacula.org/bacula-release-9-2-2/ Note: if you are running MySQL and have not recently executed src/cats/update_bacula_tables, please do so. It will not change your database version but it will fix some potential MySQL problems (for more detals see the release notes for version 9.2.1).
28 lines
523 B
Makefile
28 lines
523 B
Makefile
# Created by: Dan Langille <dan@langille.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bacula
|
|
PORTVERSION= 9.2.2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF
|
|
PKGNAMESUFFIX= 9-docs
|
|
DISTNAME= ${PORTNAME}-docs-${PORTVERSION}
|
|
|
|
CONFLICTS= bacula-* bacula5-*
|
|
|
|
MAINTAINER= dvl@FreeBSD.org
|
|
COMMENT= Bacula document set
|
|
|
|
USES= tar:bz2
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= *.pdf
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${FIND} ${WRKSRC}/manuals/en \
|
|
-name "*.pdf" -exec ${INSTALL_DATA} {} ${STAGEDIR}${DOCSDIR}/ \;
|
|
|
|
.include <bsd.port.mk>
|