1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-24 21:01:20 +00:00
freebsd-ports/textproc/docbook-xsl/Makefile
Nik Clayton 6a830756c9 Update to 1.51.1. The install process has also been changed, so that
now all the stylesheets (including the ones for JavaDoc and HTMLHelp) are
installed.

Approved by:	des (maintainer)
2002-06-30 13:48:17 +00:00

41 lines
962 B
Makefile

# New ports collection makefile for: docbook-xml
# Date created: 17 January 2002
# Whom: des
#
# $FreeBSD$
#
PORTNAME= docbook-xsl
PORTVERSION= 1.51.1
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>