summaryrefslogtreecommitdiff
path: root/textproc/dsssl-docbook-modular/Makefile
diff options
context:
space:
mode:
authorNik Clayton <nik@FreeBSD.org>1998-03-25 14:10:28 +0000
committerNik Clayton <nik@FreeBSD.org>1998-03-25 14:10:28 +0000
commitd5667e93bf91f85fc83a3e4f64aced13a9cf2346 (patch)
tree38ad645feddda8160d0d2c60a18b6331133efb89 /textproc/dsssl-docbook-modular/Makefile
parentMove headers into a subdirectory (${PREFIX}/include/www) (diff)
This is v1.07 of Norm Walsh's modular DocBook stylesheets, used (in
conjunction with Jade, and the DocBook DTD) to convert DocBook documents to HTML, RTF and TeX (in conjunction with jadetex macros, which I have yet to submit/commit). The name is a bit long but is, I think, relatively future proof. DSSSL is not the only mechanism that can be used to format SGML, DocBook is not the only DTD with a DSSSL stylesheet, and the modular stylesheets are not the only stylesheets available for DocBook. . . This is my first port commit, I hope I haven't screwed anything up too much. . . PR: 6043 Submitted by: Jun Kuriyama, kuriyama@opt.phys.waseda.ac.jp
Notes
Notes: svn path=/head/; revision=10312
Diffstat (limited to 'textproc/dsssl-docbook-modular/Makefile')
-rw-r--r--textproc/dsssl-docbook-modular/Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/textproc/dsssl-docbook-modular/Makefile b/textproc/dsssl-docbook-modular/Makefile
new file mode 100644
index 000000000000..ac7f2db6589a
--- /dev/null
+++ b/textproc/dsssl-docbook-modular/Makefile
@@ -0,0 +1,40 @@
+# New ports collection makefile for: DSSSL stylesheets for DocBook
+# Version required: 1.07
+# Date created: 16 March 1998
+# Whom: Jun Kuriyama <kuriyama@opt.phys.waseda.ac.jp>
+#
+# $Id$
+#
+
+DISTNAME= db107
+PKGNAME= dsssl-docbook-modular-1.07
+CATEGORIES= textproc
+MASTER_SITES= http://nwalsh.com/docbook/dsssl/
+EXTRACT_SUFX= .zip
+
+MAINTAINER= kuriyama@opt.phys.waseda.ac.jp
+
+BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip \
+ ${PREFIX}/share/sgml/docbook/3.0/catalog:${PORTSDIR}/textproc/docbook
+RUN_DEPENDS= ${PREFIX}/share/sgml/docbook/3.0/catalog:${PORTSDIR}/textproc/docbook
+
+EXTRACT_CMD= unzip
+EXTRACT_BEFORE_ARGS= -a -q -L
+NO_MTREE= yes
+NO_BUILD= yes
+NO_PATCH= yes
+NO_CONFIGURE= yes
+
+INSTDIR= ${PREFIX}/share/sgml/docbook/dsssl/modular
+
+pre-install:
+ @[ -d ${INSTDIR} ] || ${MKDIR} ${INSTDIR}
+
+do-install:
+ @${CP} -Rp ${WRKDIR}/docbook/* ${INSTDIR}
+ @/usr/sbin/chown -R ${SHAREOWN}.${SHAREGRP} ${INSTDIR}
+
+post-install:
+ @${CAT} ${FILESDIR}/install-note
+
+.include <bsd.port.mk>