docs: further reduce delta to upstream makefiles
[platform/upstream/gst-common.git] / upload-doc.mak
index 60731e5..3bf9496 100644 (file)
@@ -18,16 +18,49 @@ DOC_BASE = /srv/gstreamer.freedesktop.org/www/data/doc
 DOC_URL = $(DOC_SERVER):$(DOC_BASE)
 
 upload: $(FORMATS)
-       @if test "x$(PACKAGE_VERSION_NANO)" = x0; then \
-            export DOCVERSION=$(VERSION); \
-        else export DOCVERSION=head; \
-        fi; \
-        export DIR=$(DOC_BASE)/gstreamer/$$DOCVERSION/$(DOC); \
-       ssh $(DOC_SERVER) mkdir -p $$DIR; \
-       if echo $(FORMATS) | grep html > /dev/null; then export SRC="$$SRC html"; fi; \
+       @if echo $(FORMATS) | grep html > /dev/null; then \
+         echo "Preparing docs for upload (rebasing cross-references) ..." ; \
+         if test x$(builddir) != x$(srcdir); then \
+           echo "make upload can only be used if srcdir == builddir"; \
+           exit 1; \
+         fi; \
+         # gtkdoc-rebase sometimes gets confused, so reset everything to \
+         # local links before rebasing to online links                   \
+         gtkdoc-rebase --html-dir=$(builddir)/html 2>/dev/null 2>/dev/null ; \
+         rebase=`gtkdoc-rebase --verbose --online --html-dir=$(builddir)/html` ; \
+         echo "$$rebase" | grep -e "On-*line"; \
+         for req in glib gobject gstreamer gstreamer-libs gst-plugins-base-libs; do \
+           if ! ( echo "$$rebase" | grep -i -e "On-*line.*/$$req/" ); then \
+             echo "===============================================================================" ; \
+             echo " Could not determine online location for $$req docs. Cross-referencing will be " ; \
+             echo " broken, so not uploading. Make sure the library's gtk-doc documentation is    " ; \
+             echo " installed somewhere in /usr/share/gtk-doc.                                    " ; \
+             echo "===============================================================================" ; \
+             exit 1; \
+           fi; \
+         done; \
+         export SRC="$$SRC html"; \
+       fi; \
        if echo $(FORMATS) | grep ps > /dev/null; then export SRC="$$SRC $(DOC).ps"; fi; \
        if echo $(FORMATS) | grep pdf > /dev/null; then export SRC="$$SRC $(DOC).pdf"; fi; \
+       \
+       # upload releases to both 0.10.X/ and head/ subdirectories \
+       if test "x$(PACKAGE_VERSION_NANO)" = x0; then \
+         export DIR=$(DOC_BASE)/gstreamer/$(VERSION)/$(DOC); \
+         echo Uploading $$SRC to $(DOC_SERVER):$$DIR; \
+         ssh $(DOC_SERVER) mkdir -p $$DIR; \
+         rsync -rv -e ssh --delete $$SRC $(DOC_SERVER):$$DIR; \
+         ssh $(DOC_SERVER) chmod -R g+w $$DIR; \
+       fi; \
+       \
+       export DIR=$(DOC_BASE)/gstreamer/head/$(DOC); \
        echo Uploading $$SRC to $(DOC_SERVER):$$DIR; \
+       ssh $(DOC_SERVER) mkdir -p $$DIR; \
        rsync -rv -e ssh --delete $$SRC $(DOC_SERVER):$$DIR; \
        ssh $(DOC_SERVER) chmod -R g+w $$DIR; \
+       \
+       if echo $(FORMATS) | grep html > /dev/null; then \
+         echo "Un-preparing docs for upload (rebasing cross-references) ..." ; \
+         gtkdoc-rebase --html-dir=$(builddir)/html ; \
+       fi; \
        echo Done