forked from Lainports/freebsd-ports
The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Approved by: portmgr (blanket)
29 lines
537 B
Makefile
29 lines
537 B
Makefile
# Created by: Dan Langille <dan@langille.org>
|
|
|
|
PORTNAME= bacula
|
|
PORTVERSION= 9.6.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF
|
|
PKGNAMESUFFIX= 9-docs
|
|
DISTNAME= ${PORTNAME}-docs-${PORTVERSION}
|
|
|
|
CONFLICTS= bacula bacula11
|
|
|
|
MAINTAINER= dvl@FreeBSD.org
|
|
COMMENT= Bacula document set
|
|
|
|
USES= tar:bz2
|
|
NO_BUILD= yes
|
|
NO_ARCH= 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>
|