~ubuntu-branches/ubuntu/edgy/gstreamer0.10-ffmpeg/edgy

« back to all changes in this revision

Viewing changes to common/upload-doc.mak

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-04-01 16:13:43 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20060401161343-n621cgjlujio0otg
Tags: upstream-0.10.1
Import upstream version 0.10.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# this snippet is to be included by both our docbook manuals
 
2
# and gtk-doc API references
 
3
 
 
4
# it adds an upload target to each of these dir's Makefiles
 
5
 
 
6
# each Makefile.am should define the following variables:
 
7
# - DOC: the base name of the documentation
 
8
#        (faq, manual, pwg, gstreamer, gstreamer-libs)
 
9
# - FORMATS: the formats in which DOC is output
 
10
#            (html ps pdf)
 
11
 
 
12
# if you want to use it, make sure your ..sh/config file contains the
 
13
# correct User entry for the Host entry for the DOC_SERVER
 
14
 
 
15
# these variables define the location of the online docs
 
16
DOC_SERVER=gstreamer.freedesktop.org
 
17
DOC_BASE=/srv/gstreamer.freedesktop.org/www/data/doc
 
18
DOC_URL=$(DOC_SERVER):$(DOC_BASE)
 
19
 
 
20
 
 
21
upload: $(FORMATS)
 
22
        @if test "x$(GST_VERSION_NANO)" = x0; then \
 
23
            export DOCVERSION=$(VERSION); \
 
24
        else export DOCVERSION=head; \
 
25
        fi; \
 
26
        export DIR=$(DOC_BASE)/gstreamer/$$DOCVERSION/$(DOC); \
 
27
        ssh $(DOC_SERVER) mkdir -p $$DIR; \
 
28
        if echo $(FORMATS) | grep html > /dev/null; then export SRC="$$SRC html"; fi; \
 
29
        if echo $(FORMATS) | grep ps > /dev/null; then export SRC="$$SRC $(DOC).ps"; fi; \
 
30
        if echo $(FORMATS) | grep pdf > /dev/null; then export SRC="$$SRC $(DOC).pdf"; fi; \
 
31
        echo Uploading $$SRC to $(DOC_SERVER):$$DIR; \
 
32
        rsync -rv -e ssh --delete $$SRC $(DOC_SERVER):$$DIR; \
 
33
        ssh $(DOC_SERVER) chmod -R g+w $$DIR; \
 
34
        echo Done