mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
5a5b910249
port. I've done a complete doc build and all's well. This has the added benefit that we can now resume building -current snapshots of FreeBSD/Alpha with full docs, because the sp port is broken badly on the Alpha. PR: 12674 Submitted by: JOhn Baldwin <jobaldwi@vt.edu>
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: docproj
|
|
# Version required: around June 1998
|
|
# Date created: 27 June 1998
|
|
# Whom: Nik Clayton <nik@freebsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= docproj
|
|
PKGNAME= docproj-1.1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= nik@freebsd.org
|
|
|
|
RUN_DEPENDS= instant:${PORTSDIR}/textproc/sgmlformat \
|
|
jade:${PORTSDIR}/textproc/jade \
|
|
tidy:${PORTSDIR}/www/tidy \
|
|
w3m:${PORTSDIR}/www/w3m \
|
|
${PREFIX}/share/sgml/docbook/dsssl/modular:${PORTSDIR}/textproc/dsssl-docbook-modular \
|
|
${PREFIX}/share/sgml/html/catalog:${PORTSDIR}/textproc/html \
|
|
${PREFIX}/share/sgml/linuxdoc:${PORTSDIR}/textproc/linuxdoc \
|
|
${PREFIX}/share/sgml/docbook/3.1:${PORTSDIR}/textproc/docbook-310 \
|
|
${PREFIX}/share/sgml/iso8879:${PORTSDIR}/textproc/iso8879
|
|
|
|
IS_INTERACTIVE= "user must set JADETEX variable to 'yes' or 'no'"
|
|
|
|
JADETEX?=
|
|
|
|
.if empty(JADETEX) && (make(build) || make(install))
|
|
.BEGIN:
|
|
@${CAT} files/JADETEX
|
|
@${FALSE}
|
|
.endif
|
|
|
|
.if ${JADETEX} == yes
|
|
RUN_DEPENDS+= ${PREFIX}/share/texmf/web2c/jadetex.fmt:${PORTSDIR}/print/jadetex
|
|
.endif
|
|
|
|
EXTRACT_ONLY= # empty
|
|
NO_BUILD= yes
|
|
|
|
do-install: # empty
|
|
|
|
.include <bsd.port.mk>
|