From mario.goulart at gmail.com Fri Nov 20 00:23:07 2009 From: mario.goulart at gmail.com (Mario Domenech Goulart) Date: Thu, 19 Nov 2009 18:23:07 -0500 Subject: [Svnwiki] Missing files Message-ID: <85einu85gk.fsf@cl-t066-141cl.privatedns.com> Hi, I'm trying to build svnwiki from svn but it seems that some files are missing. $ ./configure --prefix=/usr/local/svnwiki checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for chicken-config... no checking for csc... YES checking for estconfig... YES checking whether NLS is requested... yes checking for msgfmt... /usr/bin/msgfmt checking for gmsgfmt... /usr/bin/msgfmt checking for xgettext... /usr/bin/xgettext checking for msgmerge... /usr/bin/msgmerge checking for chicken... YES configure: creating ./config.status config.status: creating Makefile config.status: creating po/Makefile.in config.status: creating src/Makefile config.status: executing po-directories commands config.status: creating po/POTFILES config.status: creating po/Makefile $ make Making all in po make[1]: Entering directory `/root/src/svnwiki/po' make svnwiki.pot-update make[2]: Entering directory `/root/src/svnwiki/po' make[2]: *** No rule to make target `../src/atom.scm', needed by `svnwiki.pot-update'. Stop. make[2]: Leaving directory `/root/src/svnwiki/po' make[1]: *** [svnwiki.pot] Error 2 make[1]: Leaving directory `/root/src/svnwiki/po' make: *** [all-recursive] Error 1 I've tried to remove the line which references atom.scm, but then the build stops when tries to find handler.scm. I suppose some files are missing. I'm trying to build svnwiki on a Debian 5.0.3 system. BTW: the package `gettext' is required for building on Debian, otherwise aclocal will complain about a missing AM_PO_SUBDIRS macro. The package `automake1.9' is required too (http://wiki.freaks-unidos.net/svnwiki/install warns that "you will need a relatively recent version of both Autoconf and Automake", so here's the package name. :-)) Best wishes. Mario From azul at freaks-unidos.net Fri Nov 20 00:56:58 2009 From: azul at freaks-unidos.net (Alejandro Forero Cuervo) Date: Fri, 20 Nov 2009 00:56:58 +0100 Subject: [Svnwiki] Missing files In-Reply-To: <85einu85gk.fsf@cl-t066-141cl.privatedns.com> References: <85einu85gk.fsf@cl-t066-141cl.privatedns.com> Message-ID: <20091119235658.GX31044@freaks-unidos.net> > Hi, > > I'm trying to build svnwiki from svn but it seems that some files are > missing. > > $ ./configure --prefix=/usr/local/svnwiki > checking for a BSD-compatible install... /usr/bin/install -c > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... /bin/mkdir -p > checking for gawk... no > checking for mawk... mawk > checking whether make sets $(MAKE)... yes > checking for a BSD-compatible install... /usr/bin/install -c > checking whether ln -s works... yes > checking whether make sets $(MAKE)... (cached) yes > checking for chicken-config... no > checking for csc... YES > checking for estconfig... YES > checking whether NLS is requested... yes > checking for msgfmt... /usr/bin/msgfmt > checking for gmsgfmt... /usr/bin/msgfmt > checking for xgettext... /usr/bin/xgettext > checking for msgmerge... /usr/bin/msgmerge > checking for chicken... YES > configure: creating ./config.status > config.status: creating Makefile > config.status: creating po/Makefile.in > config.status: creating src/Makefile > config.status: executing po-directories commands > config.status: creating po/POTFILES > config.status: creating po/Makefile > > $ make > Making all in po > make[1]: Entering directory `/root/src/svnwiki/po' > make svnwiki.pot-update > make[2]: Entering directory `/root/src/svnwiki/po' > make[2]: *** No rule to make target `../src/atom.scm', needed by > `svnwiki.pot-update'. Stop. > make[2]: Leaving directory `/root/src/svnwiki/po' > make[1]: *** [svnwiki.pot] Error 2 > make[1]: Leaving directory `/root/src/svnwiki/po' > make: *** [all-recursive] Error 1 > > I've tried to remove the line which references atom.scm, but then the > build stops when tries to find handler.scm. I suppose some files are > missing. > > I'm trying to build svnwiki on a Debian 5.0.3 system. > > BTW: the package `gettext' is required for building on Debian, otherwise > aclocal will complain about a missing AM_PO_SUBDIRS macro. The package > `automake1.9' is required too > (http://wiki.freaks-unidos.net/svnwiki/install warns that "you will need > a relatively recent version of both Autoconf and Automake", so here's > the package name. :-)) It's interesting that these failures are for the po directory, for the translations. Does issuing the make command inside the src directory succeed? I just found a reference to these two files, which were erased some time ago (their functionality moved to eggs) in po/POTFILES.in. Try doing an update and lets see if that works. I should probably make releases of most of the eggs. The current releases for many of these eggs are relatively outdated. :-( I'll ping this thread once I've found some time to make sure all the code is released. Alejo. http://azul.freaks-unidos.net/ From mario.goulart at gmail.com Fri Nov 20 01:14:28 2009 From: mario.goulart at gmail.com (Mario Domenech Goulart) Date: Thu, 19 Nov 2009 19:14:28 -0500 Subject: [Svnwiki] Missing files In-Reply-To: <20091119235658.GX31044@freaks-unidos.net> (Alejandro Forero Cuervo's message of "Fri, 20 Nov 2009 00:56:58 +0100") References: <85einu85gk.fsf@cl-t066-141cl.privatedns.com> <20091119235658.GX31044@freaks-unidos.net> Message-ID: <857htm832z.fsf@cl-t066-141cl.privatedns.com> Hi Alejo! On Fri, 20 Nov 2009 00:56:58 +0100 Alejandro Forero Cuervo wrote: > It's interesting that these failures are for the po directory, for the > translations. Does issuing the make command inside the src directory > succeed? Hmmm. I've moved too fast. I've updated my local copy before trying this and the problem went away. I've tried to revert to revision 16170 and `make distclean', but couldn't reproduce the problem... > I just found a reference to these two files, which were erased some > time ago (their functionality moved to eggs) in po/POTFILES.in. Try > doing an update and lets see if that works. Yes, it does! Thanks. > I should probably make releases of most of the eggs. The current > releases for many of these eggs are relatively outdated. :-( I'll > ping this thread once I've found some time to make sure all the code > is released. Right. Thanks for the quick reply. Best wishes. Mario