summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1999-02-13 12:19:14 +0100
committerWerner Koch <wk@gnupg.org>1999-02-13 12:19:14 +0100
commit54629f721b429256c3586ecfdbf3b5b97963fe35 (patch)
tree8728f0d7f5c9aed997a1c1ab279f39993e197db4 /scripts
parentremoved gettext (diff)
downloadgnupg2-54629f721b429256c3586ecfdbf3b5b97963fe35.tar.xz
gnupg2-54629f721b429256c3586ecfdbf3b5b97963fe35.zip
See ChangeLog: Sat Feb 13 12:14:42 CET 1999 Werner Koch
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ChangeLog4
-rwxr-xr-xscripts/autogen.sh11
-rwxr-xr-xscripts/mkwebpage9
3 files changed, 20 insertions, 4 deletions
diff --git a/scripts/ChangeLog b/scripts/ChangeLog
index a2b6e9019..c14ea7298 100644
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,7 @@
+Sat Feb 13 12:04:43 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
+
+ * autogen.sh: Now uses gettextize
+
Wed Feb 10 17:15:39 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
* config.sub, config.guess: Support i386-emx-os2
diff --git a/scripts/autogen.sh b/scripts/autogen.sh
index 813786c7f..c49e81371 100755
--- a/scripts/autogen.sh
+++ b/scripts/autogen.sh
@@ -46,17 +46,22 @@ if (gettext --version </dev/null 2>/dev/null | awk 'NR==1 { split($4,A,"\."); \
fi
-
if test "$DIE" = "yes"; then
exit 1
fi
+echo "Running gettextize... Ignore non-fatal messages."
+echo "no" | gettextize --force
+
+echo "Running aclocal..."
aclocal
+echo "Running autoheader..."
autoheader
+echo "Running automake --gnu ..."
automake --gnu;
-autoheader
+echo "Running autoconf..."
autoconf
-echo "Ready to run ./configure"
+echo "You can now run \"./configure\" and then \"make\"."
diff --git a/scripts/mkwebpage b/scripts/mkwebpage
index f6b9dbd2b..769b15623 100755
--- a/scripts/mkwebpage
+++ b/scripts/mkwebpage
@@ -1,5 +1,8 @@
#!/bin/sh
# Make a snapshot of the CVS head revision for the gnupg webpages
+# and put them into the FTP directory (so that the mirrors w/o rsync
+# can access them
+
set -e
@@ -13,7 +16,7 @@ fix_it () {
[ This is a snapshot of the NEWS file from the CVS head revision.
You will find the NEWS for the latest revision below the line
"Noteworthy changes in version 0.x.y".
- (wk $(date +%Y-%m-%d)) ]
+ (wk $(date +%Y-%m-%d)) ]
EOF
@@ -46,6 +49,10 @@ do_export () {
do_export gnupg-www gnupg-www
+cd gnupg-www
+tar czf /home/ftp/pub/gcrypt/old/webpages.tmp *
+mv /home/ftp/pub/gcrypt/old/webpages.tmp /home/ftp/pub/gcrypt/old/webpages.tar.gz
+
exit 0