mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
ae34d3042d
images in docbook documents.
33 lines
900 B
Makefile
33 lines
900 B
Makefile
# New ports collection makefile for: sgmlformat
|
|
# Version required: 1.6
|
|
# Date created: July 16, 1997
|
|
# Whom: jfieber
|
|
#
|
|
# $Id: Makefile,v 1.8 1998/01/17 17:28:44 jfieber Exp $
|
|
#
|
|
|
|
DISTNAME= sgmlformat-1.6
|
|
CATEGORIES= textproc print
|
|
MASTER_SITES= ftp://fallout.campusview.indiana.edu/pub/sgml/
|
|
|
|
MAINTAINER= jfieber@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.
|
|
OSVERSION!= sysctl -n kern.osreldate
|
|
.if ${OSVERSION} < 220000
|
|
RUN_DEPENDS= nsgmls:${PORTSDIR}/textproc/sp
|
|
.else
|
|
RUN_DEPENDS= nsgmls:${PORTSDIR}/textproc/jade
|
|
.endif
|
|
|
|
RUN_DEPENDS+= ${PREFIX}/share/sgml/linuxdoc:${PORTSDIR}/textproc/linuxdoc \
|
|
${PREFIX}/share/sgml/docbook:${PORTSDIR}/textproc/docbook \
|
|
${PREFIX}/bin/perl:${PORTSDIR}/lang/perl5
|
|
|
|
post-install:
|
|
@${CAT} ${PKGDIR}/MESSAGE
|
|
|
|
.include <bsd.port.mk>
|