Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Mar 2001 22:06:16 -0800
From:      "David O'Brien" <obrien@freebsd.org>
To:        doc@freebsd.org
Subject:   Re: OpenJade support isn't complete
Message-ID:  <20010319220616.A75159@dragon.nuxi.com>
In-Reply-To: <20010319210147.A74643@dragon.nuxi.com>; from obrien@FreeBSD.org on Mon, Mar 19, 2001 at 09:01:47PM -0800
References:  <20010319204933.A74557@dragon.nuxi.com> <20010319210147.A74643@dragon.nuxi.com>

index | next in thread | previous in thread | raw e-mail

On Mon, Mar 19, 2001 at 09:01:47PM -0800, David O'Brien wrote:
>     Making docs...
>     ===>  Installing for sgmlformat-1.7
>     ===>   sgmlformat-1.7 depends on executable: nsgmls - not found
>     ===>    Verifying install for nsgmls in /usr/ports/textproc/jade
>     ===>  Extracting for jade-1.2.1

This patch should fix the logic in sgmlformat.
The existing problem is the addition of checking for WITH_OPENJADE
(triggered in this case by MACHINE_ARCH being "alpha") didn't remove the
dependancy on Jade or `sp'.


Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/textproc/sgmlformat/Makefile,v
retrieving revision 1.21
diff -u -r1.21 Makefile
--- Makefile	2001/02/05 16:35:13	1.21
+++ Makefile	2001/03/20 06:00:15
@@ -18,20 +18,17 @@
 
 .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
-
-.if defined(WITH_OPENJADE)
-RUN_DEPENDS=	onsgmls:${PORTSDIR}/textproc/openjade
-.endif
-
-.if ${MACHINE_ARCH} == "alpha"
-WITH_OPENJADE=	yes
-.endif
-
 RUN_DEPENDS+=	${PREFIX}/share/sgml/linuxdoc:${PORTSDIR}/textproc/linuxdoc \
 		${PREFIX}/share/sgml/docbook:${PORTSDIR}/textproc/docbook
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-doc" in the body of the message



help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010319220616.A75159>