Diff for /gforth/iss.sh between versions 1.14 and 1.22

version 1.14, 2006/04/22 12:21:36 version 1.22, 2008/12/26 17:29:52
Line 1 Line 1
 #!/bin/bash  #!/bin/bash
   
 #Copyright (C) 2000,2003,2006 Free Software Foundation, Inc.  #Copyright (C) 2000,2003,2006,2007 Free Software Foundation, Inc.
   
 #This file is part of Gforth.  #This file is part of Gforth.
   
 #Gforth is free software; you can redistribute it and/or  #Gforth is free software; you can redistribute it and/or
 #modify it under the terms of the GNU General Public License  #modify it under the terms of the GNU General Public License
 #as published by the Free Software Foundation; either version 2  #as published by the Free Software Foundation, either version 3
 #of the License, or (at your option) any later version.  #of the License, or (at your option) any later version.
   
 #This program is distributed in the hope that it will be useful,  #This program is distributed in the hope that it will be useful,
Line 15 Line 15
 #GNU General Public License for more details.  #GNU General Public License for more details.
   
 #You should have received a copy of the GNU General Public License  #You should have received a copy of the GNU General Public License
 #along with this program; if not, write to the Free Software  #along with this program; if not, see http://www.gnu.org/licenses/.
 #Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.  
   
 # This is the horror shell script to create an automatic install for  # This is the horror shell script to create an automatic install for
 # Windoze.  # Windoze.
Line 26 Line 25
 # copy the resulting *.iss to the location of your Windows installation  # copy the resulting *.iss to the location of your Windows installation
 # of Gforth, and start the setup compiler there.  # of Gforth, and start the setup compiler there.
   
   VERSION=$(cat version)
   
 cat <<EOT  cat <<EOT
 ; This is the setup script for 4stack on Windows  ; This is the setup script for Gforth on Windows
 ; Setup program is Inno Setup  ; Setup program is Inno Setup
   
 [Setup]  [Setup]
 AppName=Gforth  AppName=Gforth
 AppVerName=Gforth $(cat version)  AppVerName=Gforth $VERSION
 AppCopyright=Copyright © 1995,1996,1997,1998,2000,2003,2006 Free Software Foundation  AppCopyright=Copyright © 1995,1996,1997,1998,2000,2003,2006,2007,2008 Free Software Foundation
 DefaultDirName={pf}\gforth  DefaultDirName={pf}\gforth
 DefaultGroupName=Gforth  DefaultGroupName=Gforth
 AllowNoIcons=1  AllowNoIcons=1
 InfoBeforeFile=COPYING  InfoBeforeFile=COPYING
 Compression=bzip  Compression=lzma
 DisableStartupPrompt=yes  DisableStartupPrompt=yes
   OutputBaseFilename=gforth-$VERSION
   
 [Messages]  [Messages]
 WizardInfoBefore=License Agreement  WizardInfoBefore=License Agreement
Line 64  done) | sort -u | sed \ Line 66  done) | sort -u | sed \
   -e 's,^\(..*\)$,Name: "{app}\\\1",g')    -e 's,^\(..*\)$,Name: "{app}\\\1",g')
 Name: "{app}\doc\gforth"  Name: "{app}\doc\gforth"
 Name: "{app}\doc\vmgen"  Name: "{app}\doc\vmgen"
   Name: "{app}\lib\gforth\\$VERSION\libcc-named"
   Name: "{app}\include\gforth\\$VERSION"
   
 [Files]  [Files]
 ; Parameter quick reference:  ; Parameter quick reference:
Line 71  Name: "{app}\doc\vmgen" Line 75  Name: "{app}\doc\vmgen"
 Source: "README.txt"; DestDir: "{app}"; Flags: isreadme  Source: "README.txt"; DestDir: "{app}"; Flags: isreadme
 Source: "cygwin1.dll"; DestDir: "{app}"  Source: "cygwin1.dll"; DestDir: "{app}"
 Source: "sh.exe"; DestDir: "{app}"  Source: "sh.exe"; DestDir: "{app}"
 Source: "cygintl-3.dll"; DestDir: "{app}"  Source: "cygintl-8.dll"; DestDir: "{app}"
 Source: "cygiconv-2.dll"; DestDir: "{app}"  Source: "cygiconv-2.dll"; DestDir: "{app}"
   Source: "cygltdl-3.dll"; DestDir: "{app}"
 Source: "cygreadline6.dll"; DestDir: "{app}"  Source: "cygreadline6.dll"; DestDir: "{app}"
 Source: "cygncurses-8.dll"; DestDir: "{app}"  Source: "cygncurses-8.dll"; DestDir: "{app}"
 Source: "cygffi-2-00-beta.dll"; DestDir: "{app}"  Source: "cygffi-2-00-beta.dll"; DestDir: "{app}"
 Source: "gforth.fi"; DestDir: "{app}"  Source: "gforthmi.sh"; DestDir: "{app}"
 $(ls doc/gforth | sed -e 's:/:\\:g' -e 's,^\(..*\)$,Source: "doc\\gforth\\\1"; DestDir: "{app}\\doc\\gforth"; Components: help,g')  $(ls doc/gforth | sed -e 's:/:\\:g' -e 's,^\(..*\)$,Source: "doc\\gforth\\\1"; DestDir: "{app}\\doc\\gforth"; Components: help,g')
 $(ls doc/vmgen | sed -e 's:/:\\:g' -e 's,^\(..*\)$,Source: "doc\\vmgen\\\1"; DestDir: "{app}\\doc\\vmgen"; Components: help,g')  $(ls doc/vmgen | sed -e 's:/:\\:g' -e 's,^\(..*\)$,Source: "doc\\vmgen\\\1"; DestDir: "{app}\\doc\\vmgen"; Components: help,g')
   $(ls lib/gforth/$VERSION/libcc-named | sed -e 's:/:\\:g' -e 's,^\(..*\)$,Source: "lib\\gforth\\'$VERSION'\\libcc-named\\\1"; DestDir: "{app}\\lib\\gforth\\'$VERSION'\\libcc-named",g')
   $(ls include/gforth/$VERSION | sed -e 's:/:\\:g' -e 's,^\(..*\)$,Source: "engine\\\1"; DestDir: "{app}\\include\\gforth\\'$VERSION'",g')
 $(make distfiles -f Makedist EXE=.exe | tr ' ' '\n' | grep -v engine.*exe | (while read i; do  $(make distfiles -f Makedist EXE=.exe | tr ' ' '\n' | grep -v engine.*exe | (while read i; do
   if [ ! -d $i ]; then echo $i; fi    if [ ! -d $i ]; then echo $i; fi
 done) | sed \  done) | sed \
Line 105  Name: "{group}\Bash"; Filename: "{app}\s Line 112  Name: "{group}\Bash"; Filename: "{app}\s
 Name: "{group}\Uninstall Gforth"; Filename: "{uninstallexe}"  Name: "{group}\Uninstall Gforth"; Filename: "{uninstallexe}"
   
 [Run]  [Run]
 Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth-fast.exe"  Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs gforth-fast.exe"
 Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth-ditc.exe"  Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs gforth-ditc.exe"
 Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth-itc.exe"  Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs gforth-itc.exe"
 Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth-prof.exe"  Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs gforth-prof.exe"
 Filename: "{app}\gforth-fast.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth.exe"  Filename: "{app}\gforth-fast.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs gforth.exe"
   Filename: "{app}\sh.exe"; WorkingDir: "{app}"; Parameters: "./gforthmi.sh"
   
 ;[Registry]  ;[Registry]
 ;registry commented out  ;registry commented out
Line 128  Filename: "{app}\gforth-fast.exe"; Worki Line 136  Filename: "{app}\gforth-fast.exe"; Worki
 ;HKCR, "forthblock", "EditFlags", DWORD, "00000000",  ;HKCR, "forthblock", "EditFlags", DWORD, "00000000",
 ;HKCR, "forthblock\DefaultIcon"; STRING, "{sys}\System32\shell32.dll,61"  ;HKCR, "forthblock\DefaultIcon"; STRING, "{sys}\System32\shell32.dll,61"
 EOT  EOT
   
   sed -e 's/$/\r/' <README >README.txt

Removed from v.1.14  
changed lines
  Added in v.1.22


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>