In order to unlock some users, here is a patch.
2013/11/6 Guilhem Bonnefille <guilhem.bonnefi...@gmail.com>
>
>
>
> 2013/11/5 Robert Norris <rw_nor...@hotmail.com>
>
>> Yes I was incorrectly reading the SHA for the commits in the output from
>> gitg (since it shows parent SHA too)
>>
>> So gnome-autogen.sh was doing something useful after all, copying or
>> linking:
>> gnome-doc-utils.make
>> gtk-doc.make
>> omf.make
>> xmldocs.make
>>
>> It seems the latest gnome-common (3.10) in Debian has fixed the previous
>> dodgy automake version checking.
>>
>> I suggest reverting back to the old autogen.sh script which uses
>> gnome-autogen.sh script.
>>
>
> It could be a solution.
>
> As other solution, I propose:
> - use autoreconf (directly related to other autotools)
> - directly call gtkdocize from our autogen.sh (single line)
> - concert help from DocBook to Mallard: Mallard is simple and non-linear,
> modern approach to user documentation.
> I'm thinking about the last item of my list since long time now. This can
> be the good occasion. The most notable lost of feature is that I do not
> know how to generate a single PDF from a collection of mallard files.
>
> http://projectmallard.org/
>
> Furthermore, I feel that gnome-autogen.sh is going to be deprecated, like
> DocBook is.
> https://wiki.gnome.org/GnomeDocUtilsMigrationHowTo
> https://wiki.gnome.org/GnomeGoals/NewDocumentationInfrastructure
>
> What should we do?
> --
> Guilhem BONNEFILLE
> -=- JID: gu...@im.apinc.org MSN: guilhem_bonnefi...@hotmail.com
> -=- mailto:guilhem.bonnefi...@gmail.com
> -=- http://nathguil.free.fr/
>
--
Guilhem BONNEFILLE
-=- JID: gu...@im.apinc.org MSN: guilhem_bonnefi...@hotmail.com
-=- mailto:guilhem.bonnefi...@gmail.com
-=- http://nathguil.free.fr/
commit 3879238727483edf22dde4b5a2fe44bd91f1a8e1
Author: Guilhem Bonnefille <guilhem.bonnefi...@gmail.com>
Date: Wed Nov 6 23:15:52 2013 +0100
Fix autogen.sh in order to install needed files
diff --git a/autogen.sh b/autogen.sh
index 0ef7c28..46f4a3d 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -13,6 +13,18 @@ if test -z $INTLTOOLIZE; then
exit 1
fi
+GTK_DOC=`which gtkdocize`
+if test -z $GTK_DOC; then
+ echo "*** No gtkdocize found, please install the gtk-doc-tools package ***"
+ exit 1
+fi
+
+GNOME_DOC=`which gnome-doc-prepare`
+if test -z $GNOME_DOC; then
+ echo "*** No gnome-doc-prepare found, please install the gnome-doc-utils package ***"
+ exit 1
+fi
+
AUTORECONF=`which autoreconf`
if test -z $AUTORECONF; then
echo "*** No autoreconf found, please install it ***"
@@ -24,7 +36,9 @@ if test -z `which autopoint`; then
exit 1
fi
-autopoint --force
+gnome-doc-prepare --automake --copy --force || exit $?
+gtkdocize --copy || exit $?
+autopoint --force || exit $?
AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose || exit $?
cd "$olddir"
------------------------------------------------------------------------------
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
_______________________________________________
Viking-devel mailing list
Viking-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/viking-devel
Viking home page: http://viking.sf.net/