blob: 853f52efd6643b601bc0cb4505841444083473d6 (
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
32
33
34
35
36
37
38
39
40
|
# New ports collection makefile for: docbook-xml
# Date created: 17 January 2002
# Whom: des
#
# $FreeBSD$
#
PORTNAME= docbook-xsl
PORTVERSION= 1.50.0
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= docbook
MAINTAINER= des@freebsd.org
RUN_DEPENDS= ${XMLDIR}/docbook/catalog:${PORTSDIR}/textproc/docbook-xml \
${XMLDIR}/sdocbook/catalog:${PORTSDIR}/textproc/sdocbook-xml
XMLDIR= ${LOCALBASE}/share/xml
INSTDIR= ${PREFIX}/share/xsl/docbook
NO_BUILD= yes
post-extract:
${FIND} ${WRKSRC} -name '.#*' -delete
do-install:
.ifndef NOPORTDOCS
${MKDIR} ${DOCSDIR}
(cd ${WRKSRC}/doc && ${TAR} -cf - . |\
${TAR} -xf - -C${DOCSDIR})
${MKDIR} ${DOCSDIR}/htmlhelp
(cd ${WRKSRC}/htmlhelp && ${TAR} -cf - . |\
${TAR} -xf - -C${DOCSDIR}/htmlhelp)
.endif
${MKDIR} ${INSTDIR}
(cd ${WRKSRC} && ${TAR} -cf - VERSION common fo html lib params xhtml |\
${TAR} -xf - -C${INSTDIR})
.include <bsd.port.mk>
|