ports/56610: [MAINTAINER] devel/buildtool-doc: update to 0.14
Sergei Kolobov
sergei at kolobov.com
Wed Sep 10 10:50:17 UTC 2003
The following reply was made to PR ports/56610; it has been noted by GNATS.
From: Sergei Kolobov <sergei at kolobov.com>
To: Erwin Lansing <erwin at FreeBSD.org>
Cc: freebsd-gnats-submit at FreeBSD.org
Subject: Re: ports/56610: [MAINTAINER] devel/buildtool-doc: update to 0.14
Date: Wed, 10 Sep 2003 13:43:15 +0400
On 2003-09-09 at 02:50 -0700, Erwin Lansing wrote:
> bt_config: starting configuration for buildtool-doc-0.14
> checking for program xsltproc... /usr/local/bin/xsltproc
> checking for program xmlcatalog... /usr/local/bin/xmlcatalog
> checking for XML catalog... /usr/local/share/xml/catalog
> checking for Docbook/XML 4.2... /usr/local/share/xml/docbook/4.2/docbookx.dtd
> checking for Docbook/XSL... not found
> bt_config: *** STOP ***
> Docbook/XSL was not found. Please install the package that you can
> fetch from http://www.docbook.org/ or set the DOCBOOK_XSL variable
> pointing to where its directory is located.
> *** Error code 1
Strange. Try the patch below.
> Also MASTER_SITE_SUBDIR should be buildtool, not buildtool-doc
Thanks for catching this.
--- Makefile.orig Wed Sep 10 13:37:23 2003
+++ Makefile Wed Sep 10 13:39:54 2003
@@ -9,7 +9,7 @@
PORTVERSION= 0.14
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= ${PORTNAME}
+MASTER_SITE_SUBDIR= buildtool
MAINTAINER= sergei at kolobov.com
COMMENT= Buildtool User's and Developer's manuals
@@ -25,6 +25,7 @@
.endif
BUILDTOOL= ${LOCALBASE}/bin/buildtool
+CONFIGURE_ENV= DOCBOOK_XML=${DOCBOOK_XML} DOCBOOK_XSL=${DOCBOOK_XSL}
CONFIGURE_ARGS= --prefix=${PREFIX} --dir-doc=${DOCSDIR} \
--dir-html=${DOCSDIR}
@@ -34,7 +35,9 @@
DOCS= CHANGES COPYING PEOPLE README README.bt
do-configure:
- cd ${WRKSRC} && ${BUILDTOOL} config ${CONFIGURE_ARGS}
+ cd ${WRKSRC} && \
+ env ${CONFIGURE_ENV} \
+ ${BUILDTOOL} config ${CONFIGURE_ARGS}
do-build:
cd ${WRKSRC} && ${BUILDTOOL} build
More information about the freebsd-ports-bugs
mailing list