mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
d5667e93bf
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
41 lines
986 B
Makefile
41 lines
986 B
Makefile
# 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>
|