head	1.1;
access;
symbols
	V1-0-4:1.1.2.5
	V1-0-3:1.1.2.4
	V1-0-2:1.1.2.4
	ePit-1-0:1.1.2.3.0.2
	V1-0-1-ePit-1:1.1.2.3
	STABLE-BRANCH-1-0:1.1.0.2;
locks; strict;
comment	@# @;


1.1
date	2000.03.28.12.39.30;	author wkoch;	state dead;
branches
	1.1.2.1;
next	;

1.1.2.1
date	2000.03.28.12.39.30;	author wkoch;	state Exp;
branches;
next	1.1.2.2;

1.1.2.2
date	2000.04.10.11.32.38;	author wkoch;	state Exp;
branches;
next	1.1.2.3;

1.1.2.3
date	2000.05.30.14.27.51;	author wkoch;	state Exp;
branches;
next	1.1.2.4;

1.1.2.4
date	2000.06.05.10.27.46;	author wkoch;	state Exp;
branches;
next	1.1.2.5;

1.1.2.5
date	2000.10.04.13.51.26;	author wkoch;	state Exp;
branches;
next	1.1.2.6;

1.1.2.6
date	2000.10.23.16.38.26;	author wkoch;	state Exp;
branches;
next	1.1.2.7;

1.1.2.7
date	2000.11.24.13.44.56;	author wkoch;	state Exp;
branches;
next	;


desc
@@


1.1
log
@file mk-w32-dist was initially added on branch STABLE-BRANCH-1-0.
@
text
@@


1.1.2.1
log
@Script to create a W32 package
@
text
@a0 27
#!/bin/sh
# Hmm, we need the not real free zip utility - this should be
# avoided.  The easiest way will be to use an installer program.

set -e

cd dist-w32

if [ -f ../README ]; then
    srcdir=..
elif [ -f ../../gnupg-stable/README ]; then
    srcdir=../../gnupg-stable
else
    echo "cannot figure out the source dir" >&2
    exit 1
fi

rm * || true
ln ../g10/gpg gpg.exe
i386--mingw32-strip gpg.exe
ln ../../winseed/bin/entropy.dll entropy.dll
man -T latin1 -l ../doc/gpg.1 >gpg.man
todos gpg.man
ln ${srcdir}/README .
ln ${srcdir}/doc/README.W32 .
for i in ${srcdir}/po/*.gmo; do ln $i "$(basename $i .gmo).mo" ; done
zip "gnupg-w32-$(cat ${srcdir}/VERSION).zip" *
@


1.1.2.2
log
@See ChangeLog: Mon Apr 10 13:34:19 CEST 2000  Werner Koch
@
text
@a12 2
elif [ -f ../../../gnupg-stable/README ]; then
    srcdir=../../../gnupg-stable
@


1.1.2.3
log
@See ChangeLog: Tue May 30 16:37:55 CEST 2000  Werner Koch
@
text
@d23 1
@


1.1.2.4
log
@See ChangeLog: Mon Jun  5 12:37:43 CEST 2000  Werner Koch
@
text
@d25 1
a25 2
cp ${srcdir}/README .
todos README
a26 1
todos README.W32
@


1.1.2.5
log
@See ChangeLog: Wed Oct  4 15:50:18 CEST 2000  Werner Koch
@
text
@d23 1
a23 5
if [ -t ../doc/gpg.man ] ; then
  cat ../doc/gpg.man >gpg.man
else
  man -T latin1 -l ../doc/gpg.1 >gpg.man
fi
@


1.1.2.6
log
@Minor changes done for the Windows binary
@
text
@d24 1
a24 1
  sed `printf "s/\b.//g"` ../doc/gpg.man >gpg.man
d26 1
a26 1
  man -T latin1 -l ../doc/gpg.1 | sed `printf "s/\b.//g"`  >gpg.man
a34 2


@


1.1.2.7
log
@prepared a w32 test version
@
text
@d23 1
a23 1
if [ -f ../doc/gpg.man ] ; then
d26 1
a26 1
  man -Tlatin1 -l ../doc/gpg.1 | sed `printf "s/\b.//g"`  >gpg.man
@


