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

version 1.6, 2003/08/24 22:58:54 version 1.14, 2006/04/22 12:21:36
Line 1 Line 1
 #!/bin/bash  #!/bin/bash
   
 #Copyright (C) 2000,2003 Free Software Foundation, Inc.  #Copyright (C) 2000,2003,2006 Free Software Foundation, Inc.
   
 #This file is part of Gforth.  #This file is part of Gforth.
   
Line 22 Line 22
 # 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 >gforth.iss
 # copy the resulting iss.txt 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.
   
 cat <<EOT  cat <<EOT
Line 31  cat <<EOT Line 31  cat <<EOT
 ; Setup program is Inno Setup  ; Setup program is Inno Setup
   
 [Setup]  [Setup]
 Bits=32  
 AppName=Gforth  AppName=Gforth
 AppVerName=$(./gforth -v 2>&1)  AppVerName=Gforth $(cat version)
 AppCopyright=Copyright © 1995,1996,1997,1998,2000,2003 Free Software Foundation  AppCopyright=Copyright © 1995,1996,1997,1998,2000,2003,2006 Free Software Foundation
 DefaultDirName=gforth  DefaultDirName={pf}\gforth
 DefaultGroupName=Gforth  DefaultGroupName=Gforth
 AllowNoIcons=1  AllowNoIcons=1
 LicenseFile=COPYING  InfoBeforeFile=COPYING
   Compression=bzip
   DisableStartupPrompt=yes
   
   [Messages]
   WizardInfoBefore=License Agreement
   InfoBeforeLabel=Gforth is free software.
   InfoBeforeClickLabel=You don't have to accept the GPL to run the program. You only have to accept this license if you want to modify, copy, or distribute this program.
   
   [Components]
   Name: "help"; Description: "HTML Documentation"; Types: full
   Name: "info"; Description: "GNU info Documentation"; Types: full
   Name: "print"; Description: "Postscript Documentation for printout"; Types: full
   Name: "objects"; Description: "Compiler generated intermediate stuff"; Types: full
   
 [Dirs]  [Dirs]
 $(make distfiles -f Makedist | tr ' ' '\n' | (while read i; do  $(make distfiles -f Makedist | tr ' ' '\n' | grep -v CVS | (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
Line 49  $(make distfiles -f Makedist | tr ' ' '\ Line 61  $(make distfiles -f Makedist | tr ' ' '\
   done    done
 done) | sort -u | sed \  done) | sort -u | sed \
   -e 's:/:\\:g' \    -e 's:/:\\:g' \
   -e 's:^\(..*\)$:{app}\\\1:g')    -e 's,^\(..*\)$,Name: "{app}\\\1",g')
   Name: "{app}\doc\gforth"
   Name: "{app}\doc\vmgen"
   
 [Files]  [Files]
 ; Parameter quick reference:  ; Parameter quick reference:
 ;   "Source filename", "Dest. filename", Copy mode, Flags  ;   "Source filename", "Dest. filename", Copy mode, Flags
 "README.txt", "{app}\README.txt", copy_normal, flag_isreadme  Source: "README.txt"; DestDir: "{app}"; Flags: isreadme
 "cygwin1.dll", "{app}\cygwin1.dll", copy_normal,  Source: "cygwin1.dll"; DestDir: "{app}"
 "sh.exe", "{app}\sh.exe", copy_normal,  Source: "sh.exe"; DestDir: "{app}"
 "gforth.fi", "{app}\gforth.fi", copy_normal,  Source: "cygintl-3.dll"; DestDir: "{app}"
 $(make distfiles -f Makedist EXE=.exe | tr ' ' '\n' | (while read i; do  Source: "cygiconv-2.dll"; DestDir: "{app}"
   Source: "cygreadline6.dll"; DestDir: "{app}"
   Source: "cygncurses-8.dll"; DestDir: "{app}"
   Source: "cygffi-2-00-beta.dll"; DestDir: "{app}"
   Source: "gforth.fi"; DestDir: "{app}"
   $(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')
   $(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 \
   -e 's:/:\\:g' \    -e 's:/:\\:g' \
   -e 's:^\(..*\)$:"\1", "{app}\\\1", copy_normal,:g')    -e 's,^\(..*\)\\\([^\\]*\)$,Source: "\1\\\2"; DestDir: "{app}\\\1",g' \
     -e 's,^\([^\\]*\)$,Source: "\1"; DestDir: "{app}",g' \
     -e 's,^\(.*\.[oib]".*\),\1; Components: objects,g' \
     -e 's,^\(.*\.p\)s\(".*\),\1df\2; Components: print,g' \
     -e 's,^\(.*\.info.*".*\),\1; Components: info,g')
   
 [Icons]  [Icons]
 ; Parameter quick reference:  ; Parameter quick reference:
 ;   "Icon title", "File name", "Parameters", "Working dir (can leave blank)",  ;   "Icon title", "File name", "Parameters", "Working dir (can leave blank)",
 ;   "Custom icon filename (leave blank to use the default icon)", Icon index  ;   "Custom icon filename (leave blank to use the default icon)", Icon index
 "Gforth", "{app}\gforth.exe", "", "{app}", , 0  Name: "{group}\Gforth"; Filename: "{app}\gforth.exe"; WorkingDir: "{app}"
 "Gforth-fast", "{app}\gforth-fast.exe", "", "{app}", , 0  Name: "{group}\Gforth-fast"; Filename: "{app}\gforth-fast.exe"; WorkingDir: "{app}"
 "Gforth-dict", "{app}\gforth-dict.exe", "", "{app}", , 0  Name: "{group}\Gforth-dict"; Filename: "{app}\gforth-dict.exe"; WorkingDir: "{app}"
 "Gforth-itc", "{app}\gforth-itc.exe", "", "{app}", , 0  Name: "{group}\Gforth-itc"; Filename: "{app}\gforth-itc.exe"; WorkingDir: "{app}"
 "Gforth-prof", "{app}\gforth-prof.exe", "", "{app}", , 0  Name: "{group}\Gforth-prof"; Filename: "{app}\gforth-prof.exe"; WorkingDir: "{app}"
   Name: "{group}\Gforth Manual"; Filename: "{app}\doc\gforth\index.html"; WorkingDir: "{app}"; Components: help
   Name: "{group}\Gforth Manual (PDF)"; Filename: "{app}\doc\gforth.pdf"; WorkingDir: "{app}"; Components: help
   Name: "{group}\VMgen Manual"; Filename: "{app}\doc\vmgen\index.html"; WorkingDir: "{app}"; Components: help
   Name: "{group}\Bash"; Filename: "{app}\sh.exe"; WorkingDir: "{app}"
   Name: "{group}\Uninstall Gforth"; Filename: "{uninstallexe}"
   
 [Run]  [Run]
 "{app}\gforth.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth-fast.exe",  Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth-fast.exe"
 "{app}\gforth.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth-ditc.exe",  Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth-ditc.exe"
 "{app}\gforth.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth-itc.exe",  Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth-itc.exe"
 "{app}\gforth.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth-prof.exe",  Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth-prof.exe"
 "{app}\gforth-fast.exe", "-i {app}\gforth.fi {app}\fixpath.fs {app} gforth.exe",  Filename: "{app}\gforth-fast.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs {app} gforth.exe"
   
 ;[Registry]  ;[Registry]
 ;registry commented out  ;registry commented out
 ; Parameter quick reference:  ; WorkingDir: "{app}"; Parameter quick reference:
 ;   "Root key", "Subkey", "Value name", Data type, "Data", Flags  ;   "Root key", "Subkey", "Value name", Data type, "Data", Flags
 ;HKCR, ".fs", "", STRING, "forthstream",  ;HKCR, ".fs"; STRING, "forthstream",
 ;HKCR, ".fs", "Content Type", STRING, "application/forth",  ;HKCR, ".fs", "Content Type", STRING, "application/forth",
 ;HKCR, ".fb", "", STRING, "forthblock",  ;HKCR, ".fb"; STRING, "forthblock",
 ;HKCR, ".fb", "Content Type", STRING, "application/forth-block",  ;HKCR, ".fb", "Content Type", STRING, "application/forth-block",
 ;HKCR, "forthstream", "", STRING, "Forth Source",  ;HKCR, "forthstream"; STRING, "Forth Source",
 ;HKCR, "forthstream", "EditFlags", DWORD, "00000000",  ;HKCR, "forthstream", "EditFlags", DWORD, "00000000",
 ;HKCR, "forthstream\DefaultIcon", "", STRING, "{sys}\System32\shell32.dll,61"  ;HKCR, "forthstream\DefaultIcon"; STRING, "{sys}\System32\shell32.dll,61"
 ;HKCR, "forthstream\Shell", "", STRING, ""  ;HKCR, "forthstream\Shell"; STRING, ""
 ;HKCR, "forthstream\Shell\Open\command", "", STRING, "{app}\gforth.exe %1"  ;HKCR, "forthstream\Shell\Open\command"; STRING, "{app}\gforth.exe %1"
 ;HKCR, "forthblock", "", STRING, "Forth Block",  ;HKCR, "forthblock"; STRING, "Forth Block",
 ;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

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


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