Diff for /gforth/iss.sh between versions 1.3 and 1.7

version 1.3, 2003/03/09 15:16:50 version 1.7, 2003/08/30 19:55:13
Line 1 Line 1
 #!/bin/bash  #!/bin/bash
   
 #Copyright (C) 2000,2003 Free Software Foundation, Inc.  #Copyright (C) 2000,2003 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 2
 #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,
 #but WITHOUT ANY WARRANTY; without even the implied warranty of  #but WITHOUT ANY WARRANTY; without even the implied warranty of
 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the  #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the
 #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, write to the Free Software
 #Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.  #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.
 # Note that I use sed to create a setup file  # Note that I use sed to create a setup file
   
 # use iss.sh >iss.txt  # use iss.sh >iss.txt
 # copy the resulting iss.txt to the location of your Windows installation  # copy the resulting iss.txt to the location of your Windows installation
 # of Gforth, and start the setup compiler there.  # of Gforth, and start the setup compiler there.
   
 cat <<EOT  cat <<EOT
 ; This is the setup script for 4stack on Windows  ; This is the setup script for 4stack on Windows
 ; Setup program is Inno Setup  ; Setup program is Inno Setup
   
 [Setup]  [Setup]
 Bits=32  Bits=32
 AppName=Gforth  AppName=Gforth
 AppVerName=gforth 0.5.0  AppVerName=$(./gforth -v 2>&1)
 AppCopyright=Copyright © 1995,1996,1997,1998,2000,2003 Free Software Foundation  AppCopyright=Copyright © 1995,1996,1997,1998,2000,2003 Free Software Foundation
 DefaultDirName=gforth  DefaultDirName=gforth
 DefaultGroupName=Gforth  DefaultGroupName=Gforth
 AllowNoIcons=1  AllowNoIcons=1
 LicenseFile=COPYING  LicenseFile=COPYING
   
 [Dirs]  [Dirs]
 $(make distfiles -f Makedist | tr ' ' '\n' | (while read i; do  $(make distfiles -f Makedist | tr ' ' '\n' | (while read i; do
   while [ ! -z "$i" ]    while [ ! -z "$i" ]
   do    do
     if [ -d $i ]; then echo $i; fi      if [ -d $i ]; then echo $i; fi
     if [ "${i%/*}" != "$i" ]; then i="${i%/*}"; else i=""; fi      if [ "${i%/*}" != "$i" ]; then i="${i%/*}"; else i=""; fi
   done    done
 done) | sort -u | sed \  done) | sort -u | sed \
   -e 's:/:\\:g' \    -e 's:/:\\:g' \
   -e 's:^\(..*\)$:{app}\\\1:g')    -e 's:^\(..*\)$:{app}\\\1:g')
   {app}\doc\gforth
 [Files]  {app}\doc\vmgen
 ; Parameter quick reference:  
 ;   "Source filename", "Dest. filename", Copy mode, Flags  [Files]
 "README.txt", "{app}\README.txt", copy_normal, flag_isreadme  ; Parameter quick reference:
 "cygwin1.dll", "{app}\cygwin1.dll", copy_normal,  ;   "Source filename", "Dest. filename", Copy mode, Flags
 "gforth.fi", "{app}\gforth.fi", copy_normal,  "README.txt", "{app}\README.txt", copy_normal, flag_isreadme
 $(make distfiles -f Makedist | tr ' ' '\n' | (while read i; do  "cygwin1.dll", "{app}\cygwin1.dll", copy_normal,
   if [ ! -d $i ]; then echo $i; fi  "sh.exe", "{app}\sh.exe", copy_normal,
 done) | sed \  "gforth.fi", "{app}\gforth.fi", copy_normal,
   -e 's:/:\\:g' \  $(make html >/dev/null; ls doc/gforth | sed -e 's:/:\\:g' -e 's:^\(..*\)$:"doc\\gforth\\\1", "{app}\\doc\\gforth\\\1", copy_normal,:g')
   -e 's:^\(..*\)$:"\1", "{app}\\\1", copy_normal,:g')  $(ls doc/vmgen | sed -e 's:/:\\:g' -e 's:^\(..*\)$:"doc\\vmgen\\\1", "{app}\\doc\\vmgen\\\1", copy_normal,:g')
   $(make distfiles -f Makedist EXE=.exe | tr ' ' '\n' | (while read i; do
 [Icons]    if [ ! -d $i ]; then echo $i; fi
 ; Parameter quick reference:  done) | sed \
 ;   "Icon title", "File name", "Parameters", "Working dir (can leave blank)",    -e 's:/:\\:g' \
 ;   "Custom icon filename (leave blank to use the default icon)", Icon index    -e 's:^\(..*\)$:"\1", "{app}\\\1", copy_normal,:g')
 "Gforth", "{app}\gforth.exe", "", "{app}", , 0  
 "Gforth-fast", "{app}\gforth-fast.exe", "", "{app}", , 0  [Icons]
   ; Parameter quick reference:
 [Run]  ;   "Icon title", "File name", "Parameters", "Working dir (can leave blank)",
 "{app}\gforth.exe", "{app}\fixpath.fs {app} gforth-fast.exe",  ;   "Custom icon filename (leave blank to use the default icon)", Icon index
 "{app}\gforth.exe", "{app}\fixpath.fs {app} gforth-ditc.exe",  "Gforth", "{app}\gforth.exe", "", "{app}", , 0
 "{app}\gforth-fast.exe", "{app}\fixpath.fs {app} gforth.exe",  "Gforth-fast", "{app}\gforth-fast.exe", "", "{app}", , 0
   "Gforth-dict", "{app}\gforth-dict.exe", "", "{app}", , 0
 [Registry]  "Gforth-itc", "{app}\gforth-itc.exe", "", "{app}", , 0
 ; Parameter quick reference:  "Gforth-prof", "{app}\gforth-prof.exe", "", "{app}", , 0
 ;   "Root key", "Subkey", "Value name", Data type, "Data", Flags  "Gforth Manual", "{app}\doc\gforth\index.html", "", "{app}", , 0
 HKCR, ".fs", "", STRING, "forthstream",  "VMgen Manual", "{app}\doc\vmgen\index.html", "", "{app}", , 0
 HKCR, ".fs", "Content Type", STRING, "application/forth",  
 HKCR, ".fb", "", STRING, "forthblock",  [Run]
 HKCR, ".fb", "Content Type", STRING, "application/forth-block",  "{app}\gforth.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth-fast.exe",
 HKCR, "forthstream", "", STRING, "Forth Source",  "{app}\gforth.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth-ditc.exe",
 HKCR, "forthstream", "EditFlags", DWORD, "00000000",  "{app}\gforth.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth-itc.exe",
 HKCR, "forthstream\DefaultIcon", "", STRING, "{sys}\System32\shell32.dll,61"  "{app}\gforth.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth-prof.exe",
 HKCR, "forthstream\Shell", "", STRING, ""  "{app}\gforth-fast.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth.exe",
 HKCR, "forthstream\Shell\Open\command", "", STRING, "{app}\gforth.exe %1"  
 HKCR, "forthblock", "", STRING, "Forth Block",  ;[Registry]
 HKCR, "forthblock", "EditFlags", DWORD, "00000000",  ;registry commented out
 HKCR, "forthblock\DefaultIcon", "", STRING, "{sys}\System32\shell32.dll,61"  ; Parameter quick reference:
 EOT  ;   "Root key", "Subkey", "Value name", Data type, "Data", Flags
   ;HKCR, ".fs", "", STRING, "forthstream",
   ;HKCR, ".fs", "Content Type", STRING, "application/forth",
   ;HKCR, ".fb", "", STRING, "forthblock",
   ;HKCR, ".fb", "Content Type", STRING, "application/forth-block",
   ;HKCR, "forthstream", "", STRING, "Forth Source",
   ;HKCR, "forthstream", "EditFlags", DWORD, "00000000",
   ;HKCR, "forthstream\DefaultIcon", "", STRING, "{sys}\System32\shell32.dll,61"
   ;HKCR, "forthstream\Shell", "", STRING, ""
   ;HKCR, "forthstream\Shell\Open\command", "", STRING, "{app}\gforth.exe %1"
   ;HKCR, "forthblock", "", STRING, "Forth Block",
   ;HKCR, "forthblock", "EditFlags", DWORD, "00000000",
   ;HKCR, "forthblock\DefaultIcon", "", STRING, "{sys}\System32\shell32.dll,61"
   EOT

Removed from v.1.3  
changed lines
  Added in v.1.7


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