[Cs-dev] problems building manual
Date | 2009-09-20 10:36 |
From | Victor Lazzarini |
Subject | [Cs-dev] problems building manual |
Hi everyone, I am preparing my OSX 10.5 system to build the release and I have got a problem building the manual. I get this error from make: coltrane:manual victor$ make [ -d "" ] || ( \ echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets installation directory" ; \ false ) The XSL_BASE_PATH variable must be set to the XSL stylesheets installation directory make: *** [xsl/customXHTMLchunk.xsl] Error 1 There is no /usr/share/docbook in my disk. REgards Victor ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2009-09-20 11:00 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] problems building manual |
One step ahead. I downloaded docbook-xsl (1.75), but now I get this coltrane:manual victor$ make [ -d "/Users/victor/src/docbook" ] || ( \ echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets installation directory" ; \ false ) sed -e 's|@xsl_base_path@|/Users/victor/src/docbook|' xsl/ customXHTMLchunk.xsl.in > xsl/customXHTMLchunk.xsl echo "Remember to use the html-dist target for distribution!" Remember to use the html-dist target for distribution! mkdir -p html xsltproc --nonet --xinclude -o html/ xsl/customXHTMLchunk.xsl manual.xml I/O error : Attempt to load network entity http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd manual.xml:1495: warning: failed to load external entity "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd " ]> ^ and a bunch of 'not defined' errors. This used to be much simpler. Victor On 20 Sep 2009, at 10:36, Victor Lazzarini wrote: > Hi everyone, > > I am preparing my OSX 10.5 system to build the release and I have > got a > problem building the manual. I get this error from make: > > coltrane:manual victor$ make > [ -d "" ] || ( \ > echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets > installation directory" ; \ > false ) > The XSL_BASE_PATH variable must be set to the XSL stylesheets > installation directory > make: *** [xsl/customXHTMLchunk.xsl] Error 1 > > There is no /usr/share/docbook in my disk. > > REgards > > Victor > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9-12, 2009. Register > now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Csound-devel mailing list > Csound-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-devel ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2009-09-20 11:04 |
From | jpff@cs.bath.ac.uk |
Subject | Re: [Cs-dev] problems building manual |
I have /usr/share/xml/docbook/stylesheet/nwalsh/1.74.0/xhtml/chunk.xsl try a search for chunk.xsl Is this Snow Leopard? > Hi everyone, > > I am preparing my OSX 10.5 system to build the release and I have got a > problem building the manual. I get this error from make: > > coltrane:manual victor$ make > [ -d "" ] || ( \ > echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets > installation directory" ; \ > false ) > The XSL_BASE_PATH variable must be set to the XSL stylesheets > installation directory > make: *** [xsl/customXHTMLchunk.xsl] Error 1 > > There is no /usr/share/docbook in my disk. > > REgards > > Victor > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register > now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Csound-devel mailing list > Csound-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-devel > > > ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2009-09-20 11:05 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] problems building manual |
Ok, I guessed the option --nonet was causing the trouble and removed it. It is building now, I hope it works. Perhaps someone can explain how this Makefile should work, because it doesn't here on OSX (as it used to). Victor On 20 Sep 2009, at 11:00, Victor Lazzarini wrote: > One step ahead. I downloaded docbook-xsl (1.75), but now I get this > > coltrane:manual victor$ make > [ -d "/Users/victor/src/docbook" ] || ( \ > echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets > installation directory" ; \ > false ) > sed -e 's|@xsl_base_path@|/Users/victor/src/docbook|' xsl/ > customXHTMLchunk.xsl.in > xsl/customXHTMLchunk.xsl > echo "Remember to use the html-dist target for distribution!" > Remember to use the html-dist target for distribution! > mkdir -p html > xsltproc --nonet --xinclude -o html/ xsl/customXHTMLchunk.xsl > manual.xml > I/O error : Attempt to load network entity http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd > manual.xml:1495: warning: failed to load external entity "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd > " > ]> > ^ > > and a bunch of 'not defined' errors. This used to be much simpler. > > Victor > > On 20 Sep 2009, at 10:36, Victor Lazzarini wrote: > >> Hi everyone, >> >> I am preparing my OSX 10.5 system to build the release and I have >> got a >> problem building the manual. I get this error from make: >> >> coltrane:manual victor$ make >> [ -d "" ] || ( \ >> echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets >> installation directory" ; \ >> false ) >> The XSL_BASE_PATH variable must be set to the XSL stylesheets >> installation directory >> make: *** [xsl/customXHTMLchunk.xsl] Error 1 >> >> There is no /usr/share/docbook in my disk. >> >> REgards >> >> Victor >> >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry® Developer Conference in SF, >> CA >> is the only developer event you need to attend this year. Jumpstart >> your >> developing skills, take BlackBerry mobile applications to market and >> stay >> ahead of the curve. Join us from November 9-12, 2009. Register >> now! >> http://p.sf.net/sfu/devconf >> _______________________________________________ >> Csound-devel mailing list >> Csound-devel@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/csound-devel > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9-12, 2009. Register > now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Csound-devel mailing list > Csound-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-devel ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2009-09-20 11:05 |
From | jpff@cs.bath.ac.uk |
Subject | Re: [Cs-dev] problems building manual |
Is the machine net connected? That file is certainly there Firewall? > One step ahead. I downloaded docbook-xsl (1.75), but now I get this > > coltrane:manual victor$ make > [ -d "/Users/victor/src/docbook" ] || ( \ > echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets > installation directory" ; \ > false ) > sed -e 's|@xsl_base_path@|/Users/victor/src/docbook|' xsl/ > customXHTMLchunk.xsl.in > xsl/customXHTMLchunk.xsl > echo "Remember to use the html-dist target for distribution!" > Remember to use the html-dist target for distribution! > mkdir -p html > xsltproc --nonet --xinclude -o html/ xsl/customXHTMLchunk.xsl manual.xml > I/O error : Attempt to load network entity > http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd > manual.xml:1495: warning: failed to load external entity > "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd > " > ]> > ^ > > and a bunch of 'not defined' errors. This used to be much simpler. > > Victor > > On 20 Sep 2009, at 10:36, Victor Lazzarini wrote: > >> Hi everyone, >> >> I am preparing my OSX 10.5 system to build the release and I have >> got a >> problem building the manual. I get this error from make: >> >> coltrane:manual victor$ make >> [ -d "" ] || ( \ >> echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets >> installation directory" ; \ >> false ) >> The XSL_BASE_PATH variable must be set to the XSL stylesheets >> installation directory >> make: *** [xsl/customXHTMLchunk.xsl] Error 1 >> >> There is no /usr/share/docbook in my disk. >> >> REgards >> >> Victor >> >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry® Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart >> your >> developing skills, take BlackBerry mobile applications to market and >> stay >> ahead of the curve. Join us from November 9-12, 2009. Register >> now! >> http://p.sf.net/sfu/devconf >> _______________________________________________ >> Csound-devel mailing list >> Csound-devel@lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/csound-devel > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register > now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Csound-devel mailing list > Csound-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-devel > > > ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2009-09-21 01:42 |
From | Felipe Sateler |
Subject | Re: [Cs-dev] problems building manual |
Attachments | None None |
You need to have both docbook-xsl and the docbook dtd's. The --nonet option forces to not use internet to get missing files, but you didn't have the DTD's installed, so xsltproc errored out. On Sun, 2009-09-20 at 11:05 +0100, Victor Lazzarini wrote: > Ok, I guessed the option --nonet was causing the trouble and removed > it. It is building > now, I hope it works. > > Perhaps someone can explain how this Makefile should work, because it > doesn't here > on OSX (as it used to). > > Victor > > On 20 Sep 2009, at 11:00, Victor Lazzarini wrote: > > > One step ahead. I downloaded docbook-xsl (1.75), but now I get this > > > > coltrane:manual victor$ make > > [ -d "/Users/victor/src/docbook" ] || ( \ > > echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets > > installation directory" ; \ > > false ) > > sed -e 's|@xsl_base_path@|/Users/victor/src/docbook|' xsl/ > > customXHTMLchunk.xsl.in > xsl/customXHTMLchunk.xsl > > echo "Remember to use the html-dist target for distribution!" > > Remember to use the html-dist target for distribution! > > mkdir -p html > > xsltproc --nonet --xinclude -o html/ xsl/customXHTMLchunk.xsl > > manual.xml > > I/O error : Attempt to load network entity http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd > > manual.xml:1495: warning: failed to load external entity "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd > > " > > ]> > > ^ > > > > and a bunch of 'not defined' errors. This used to be much simpler. > > > > Victor > > > > On 20 Sep 2009, at 10:36, Victor Lazzarini wrote: > > > >> Hi everyone, > >> > >> I am preparing my OSX 10.5 system to build the release and I have > >> got a > >> problem building the manual. I get this error from make: > >> > >> coltrane:manual victor$ make > >> [ -d "" ] || ( \ > >> echo "The XSL_BASE_PATH variable must be set to the XSL stylesheets > >> installation directory" ; \ > >> false ) > >> The XSL_BASE_PATH variable must be set to the XSL stylesheets > >> installation directory > >> make: *** [xsl/customXHTMLchunk.xsl] Error 1 > >> > >> There is no /usr/share/docbook in my disk. > >> > >> REgards > >> > >> Victor > >> > >> ------------------------------------------------------------------------------ > >> Come build with us! The BlackBerry® Developer Conference in SF, > >> CA > >> is the only developer event you need to attend this year. Jumpstart > >> your > >> developing skills, take BlackBerry mobile applications to market and > >> stay > >> ahead of the curve. Join us from November 9-12, 2009. Register > >> now! > >> http://p.sf.net/sfu/devconf > >> _______________________________________________ > >> Csound-devel mailing list > >> Csound-devel@lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/csound-devel > > > > > > ------------------------------------------------------------------------------ > > Come build with us! The BlackBerry® Developer Conference in SF, CA > > is the only developer event you need to attend this year. Jumpstart > > your > > developing skills, take BlackBerry mobile applications to market and > > stay > > ahead of the curve. Join us from November 9-12, 2009. Register > > now! > > http://p.sf.net/sfu/devconf > > _______________________________________________ > > Csound-devel mailing list > > Csound-devel@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/csound-devel > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register now! > http://p.sf.net/sfu/devconf > _______________________________________________ > Csound-devel mailing list > Csound-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-devel -- Saludos, Felipe Sateler |