mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 12:15:19 +00:00
fix upload target
Original commit message from CVS: fix upload target
This commit is contained in:
parent
671d5229b9
commit
f2582fb3a2
2 changed files with 16 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* docs/manuals.mak:
|
||||||
|
Fix upload target to work with freedesktop
|
||||||
|
|
||||||
2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
|
||||||
|
|
||||||
* docs/pwg/advanced_types.xml:
|
* docs/pwg/advanced_types.xml:
|
||||||
|
|
|
@ -170,14 +170,18 @@ check-local: $(BUILDDIR)/$(MAIN)
|
||||||
cd $(BUILDDIR) && xmllint -noout -valid $(MAIN)
|
cd $(BUILDDIR) && xmllint -noout -valid $(MAIN)
|
||||||
|
|
||||||
### this is a website upload target
|
### this is a website upload target
|
||||||
|
### if you want to use it, make sure your ..sh/config file contains the
|
||||||
|
### correct User entry for the Host entry for the DOC_SERVER
|
||||||
|
DOC_SERVER=freedesktop.org
|
||||||
|
DOC_BASE=/home/projects/gstreamer/www/data/doc
|
||||||
|
DOC_URL=$(DOC_SERVER):$(DOC_BASE)
|
||||||
|
|
||||||
upload: html ps pdf
|
upload: html ps pdf
|
||||||
@export RSYNC_RSH=ssh; \
|
@if test "x$$GST_PLUGINS_VERSION_NANO" = x0; then \
|
||||||
if test "x$$GST_PLUGINS_VERSION_NANO" = x0; then \
|
|
||||||
export DOCVERSION=$(VERSION); \
|
export DOCVERSION=$(VERSION); \
|
||||||
else export DOCVERSION=cvs; \
|
else export DOCVERSION=head; \
|
||||||
fi; \
|
fi; \
|
||||||
echo Uploading docs to shell.sf.net/home/groups/g/gs/gstreamer/htdocs/docs/$$DOCVERSION; \
|
export DIR=$(DOC_BASE)/gstreamer/$$DOCVERSION/$(DOC); \
|
||||||
ssh $(USERNAME)@shell.sf.net mkdir -p /home/groups/g/gs/gstreamer/htdocs/docs/$$DOCVERSION/$(DOC); \
|
echo Uploading docs to $(DOC_SERVER):$$DIR; \
|
||||||
rsync -arv $(DOC).ps $(DOC).pdf html $(USERNAME)@shell.sf.net:/home/groups/g/gs/gstreamer/htdocs/docs/$$DOCVERSION/$(DOC)
|
ssh $(DOC_SERVER) mkdir -p $$DIR; \
|
||||||
|
rsync -arv -e ssh $(DOC).ps $(DOC).pdf html $(DOC_SERVER):$$DIR
|
||||||
|
|
Loading…
Reference in a new issue