1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/textproc/sgmlformat/Makefile
David E. O'Brien 7078fc3cb4 Correct logic who's result was OpenJade not being used to satisfy the
dependency on the Alpha platform.
2001-03-22 22:50:22 +00:00

45 lines
1019 B
Makefile

# New ports collection makefile for: sgmlformat
# Date created: July 16, 1997
# Whom: jfieber
#
# $FreeBSD$
#
PORTNAME= sgmlformat
PORTVERSION= 1.7
CATEGORIES= textproc print
MASTER_SITES= http://fallout.campusview.indiana.edu/ports/distfiles/
MAINTAINER= kuriyama@FreeBSD.org
# There are two ports that satisfy the nsgmls requirement.
# Jade is preferred, but it currently doesn't compile on 2.1.x
# system, so use sp in that case.
.include <bsd.port.pre.mk>
.if ${MACHINE_ARCH} == "alpha"
WITH_OPENJADE= yes
.endif
.if ${OSVERSION} < 220000
RUN_DEPENDS= nsgmls:${PORTSDIR}/textproc/sp
.elif defined(WITH_OPENJADE)
RUN_DEPENDS= onsgmls:${PORTSDIR}/textproc/openjade
.else
RUN_DEPENDS= nsgmls:${PORTSDIR}/textproc/jade
.endif
RUN_DEPENDS+= ${PREFIX}/share/sgml/linuxdoc:${PORTSDIR}/textproc/linuxdoc \
${PREFIX}/share/sgml/docbook:${PORTSDIR}/textproc/docbook
USE_PERL5= yes
MAN1= instant.1 sgmlfmt.1
MAN5= transpec.5
MANCOMPRESSED= yes
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>