1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-14 23:46:10 +00:00
freebsd-ports/textproc/docproj/Makefile
Nik Clayton 99273c9038 Port now requires the JADETEX variable to be either "yes" or "no". If
"yes" then a dependency on print/jadetex is included (which in turn pulls
in all 30MB of TeTeX). If no then it is ignored. There is no default.

If ${JADETEX} is unset then pkg/JADETEX is shown to the user.

Set IS_INTERACTIVE to indicate this in the Makefile.
1999-01-20 22:19:42 +00:00

42 lines
938 B
Makefile

# New ports collection makefile for: docproj
# Version required: around June 1998
# Date created: 27 June 1998
# Whom: Nik Clayton <nik@freebsd.org>
#
# $Id: Makefile,v 1.6 1998/12/20 20:49:13 nik Exp $
#
DISTNAME= docproj
PKGNAME= docproj-1.0
CATEGORIES= textproc
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= nik@freebsd.org
RUN_DEPENDS= instant:${PORTSDIR}/textproc/sgmlformat \
${PREFIX}/share/sgml/docbook/dsssl/modular:${PORTSDIR}/textproc/dsssl-docbook-modular \
tidy:${PORTSDIR}/www/tidy \
${PREFIX}/share/sgml/html/catalog:${PORTSDIR}/textproc/html
IS_INTERACTIVE= "user must set JADETEX variable to 'yes' or 'no'"
JADETEX?=
.if empty(JADETEX)
.BEGIN:
@${CAT} pkg/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>