Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Mar 2001 22:09:55 -0800
From:      Dima Dorfman <dima@unixfreak.org>
To:        obrien@freebsd.org
Cc:        doc@freebsd.org
Subject:   Re: OpenJade support isn't complete 
Message-ID:  <20010320060955.78DEC3E09@bazooka.unixfreak.org>
In-Reply-To: <20010319210147.A74643@dragon.nuxi.com>; from obrien@freebsd.org on "Mon, 19 Mar 2001 21:01:47 -0800"

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

"David O'Brien" <obrien@freebsd.org> writes:
>     ===>  Extracting for sgmlformat-1.7
>     >> Checksum OK for sgmlformat-1.7.tar.gz.
>     ..snip..
>     ===>  Installing for sgmlformat-1.7
>     ===>   sgmlformat-1.7 depends on executable: nsgmls - not found
>     ===>    Verifying install for nsgmls in /usr/ports/textproc/jade

This is a ports bug; a pasto, I think.  With the patch below, I was
able to remove /usr/ports/textproc/jade, install the docproj port, and
build docs with -DOPENJADE on an i386 on a machine that's never built
the docs before.  That said, I don't know much about ports or the doc
build, so it's possible jade somehow got installed somewhere, but if
it did I can't find it.  Also, make sure you have rev. 1.29 of
doc/share/mk/doc.docbook.mk; 1.28 is broken.

					Dima Dorfman
					dima@unixfreak.org


Index: Makefile
===================================================================
RCS file: /st/src/FreeBSD/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 05:19:48
@@ -24,12 +24,12 @@
 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
+
+.if defined(WITH_OPENJADE)
+RUN_DEPENDS=	onsgmls:${PORTSDIR}/textproc/openjade
 .endif
 
 RUN_DEPENDS+=	${PREFIX}/share/sgml/linuxdoc:${PORTSDIR}/textproc/linuxdoc \


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?20010320060955.78DEC3E09>