diff options
author | jmmv <jmmv> | 2002-12-18 17:45:28 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2002-12-18 17:45:28 +0000 |
commit | 5a6b7452ff2f87861f3a583587578a7b2fb5290c (patch) | |
tree | 1a0e6c90ba3778804c12ba056c2f91244827613d /textproc/docbook-xsl/Makefile | |
parent | b4c0667c11c734c25e07883fa1d0f4ff48634465 (diff) | |
download | pkgsrc-5a6b7452ff2f87861f3a583587578a7b2fb5290c.tar.gz |
Initial import of docbook-xsl-1.58.1.
The DocBook XSL stylesheets provide a serie of ready-to-use templates to
process documents based on the DocBook XML DTD. They can generate different
types of output files, like XHTML, slides, manpages, JavaDoc...
They are written in a modular fashion. Each of the HTML and FO stylesheets
starts with a driver file that assembles a collection of component files
into a complete stylesheet. This modular design puts similar things together
into smaller files that are easier to write and maintain than one big
stylesheet.
Approved by wiz.
Diffstat (limited to 'textproc/docbook-xsl/Makefile')
-rw-r--r-- | textproc/docbook-xsl/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/textproc/docbook-xsl/Makefile b/textproc/docbook-xsl/Makefile new file mode 100644 index 00000000000..7aa897f8a7d --- /dev/null +++ b/textproc/docbook-xsl/Makefile @@ -0,0 +1,35 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/12/18 17:45:28 jmmv Exp $ +# + +DISTNAME= docbook-xsl-1.58.1 +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=docbook/} + +MAINTAINER= jmmv@netbsd.org +HOMEPAGE= http://docbook.sourceforge.net/ +COMMENT= Docbook XSL modular stylesheet + +DEPENDS= docbook-xml>=4.2:../../textproc/docbook-xml + +NO_BUILD= YES +NO_CONFIGURE= YES +NO_PATCH= YES + +DOCDIR= ${PREFIX}/share/doc/docbook-xsl +EGDIR= ${PREFIX}/share/examples/docbook-xsl +XSLDIR= ${PREFIX}/share/xsl/docbook +XSLMODS= common extensions fo html htmlhelp images javahelp \ + manpages params profiling tools xhtml + +do-install: + ${INSTALL_DATA_DIR} ${DOCDIR} + cd ${WRKSRC}/doc && ${PAX} -rwpppm . ${DOCDIR} + ${INSTALL_DATA_DIR} ${EGDIR} + cd ${WRKSRC}/template && ${PAX} -rwpppm . ${EGDIR} + ${INSTALL_DATA_DIR} ${XSLDIR} + @for d in ${XSLMODS}; do \ + ${ECHO} "cd ${WRKSRC} && ${PAX} -rwpppm $$d ${XSLDIR}/$$d"; \ + cd ${WRKSRC} && ${PAX} -rwpppm $$d ${XSLDIR}/$$d; \ + done + +.include "../../mk/bsd.pkg.mk" |