Use yelp instead of gnome-doc-utils Replace all DOC_* macros and variables by YELP/HELP. Add the images to HELP_MEDIA or they go missing. Rename the start files to index.docbook. Adjust the path to look for the help files in the library.
for f in `grep -R "ghelp:" -l`;do sed -i 's/ghelp:/help:/g' ${f}; done sed -i -e '/gnome-doc-utils/d' \ -e '/^dist-hook/c\@YELP_HELP_RULES@' \ -e 's/DOC_MODULE/HELP_ID/g' \ -e 's/DOC_ENTITIES =/HELP_FILES = index.docbook/g' \ -e 's/DOC_LINGUAS/HELP_LINGUAS/g' \ -e '/^HELP_FILES/a HELP_MEDIA = \\' \ -e '/DOC_AM_CPPFLAGS/d' \ docs/help/*/Makefile.am for i in docs/help/*/*/*0.14.xml; do git mv $i `dirname $i`/index.docbook; done