mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
a51d7e4ad7
port, and not just the directory. This should *really* fix the bug I thought I'd fixed in 1.18.
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/catalog:${PORTSDIR}/textproc/docbook \
|
|
${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>
|