1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Preparing 2.0.4

This commit is contained in:
Werner Koch 2007-05-09 11:01:33 +00:00
parent 8bf339ab59
commit edb3dc99e9
44 changed files with 2519 additions and 1922 deletions

View file

@ -1,3 +1,7 @@
2007-05-09 Werner Koch <wk@g10code.com>
* Makefile.am (online): Distinguish between released and svn manuals.
2007-05-08 Werner Koch <wk@g10code.com>
* howtos.texi: New.

View file

@ -142,8 +142,13 @@ online: gnupg.html gnupg.pdf
set -e; \
echo "Uploading current manuals to www.gnupg.org ..."; \
cp gnupg-logo.png gnupg.html/; \
user=werner ; \
(cd gnupg.html && rsync -vr --exclude='.svn' . \
$${user}@cvs.gnupg.org:webspace/manuals/gnupg/ ); \
rsync -v gnupg.pdf $${user}@cvs.gnupg.org:webspace/manuals/
user=werner ; dashdevel="" ; \
if echo "@PACKAGE_VERSION@" | grep -- "-svn" >/dev/null; then \
dashdevel="-devel" ; \
else \
rsync -v gnupg.pdf $${user}@cvs.gnupg.org:webspace/manuals/ ; \
fi ; \
cd gnupg.html ; \
rsync -vr --exclude='.svn' . \
$${user}@cvs.gnupg.org:webspace/manuals/gnupg$${dashdevel}/