mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 12:56:28 -04:00
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)
26 lines
468 B
Makefile
26 lines
468 B
Makefile
PORTNAME= bacula
|
|
PORTVERSION= 11.0.5
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF
|
|
PKGNAMESUFFIX= 11-docs
|
|
DISTNAME= ${PORTNAME}-docs-${PORTVERSION}
|
|
|
|
CONFLICTS= bacula9
|
|
|
|
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>
|