blob: 9c1e3ada3cb0c0bb155ef1456a3b1af386b9863c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Created by: Dan Langille <dan@langille.org>
# $FreeBSD$
PORTNAME= bacula
PORTVERSION= 5.2.12
CATEGORIES= sysutils
MASTER_SITES= SF
PKGNAMESUFFIX= -docs
DISTFILES= ${PORTNAME}-docs-${PORTVERSION}.tar.bz2
MAINTAINER= dan@langille.org
COMMENT= Bacula document set
NO_BUILD= yes
UNIQUENAME= ${PORTNAME}${PKGNAMESUFFIX}
PORTDOCS= *.pdf
.ifdef NOPORTDOCS
IGNORE= consists of only documentation, please undef NOPORTDOCS and try again
.endif
NO_STAGE= yes
do-install:
${MKDIR} ${DOCSDIR}
${FIND} ${WRKDIR}/${PORTNAME}-docs-${PORTVERSION}/manuals/en \
-name "*.pdf" -exec ${INSTALL_DATA} {} ${DOCSDIR}/ \;
.include <bsd.port.mk>
|