Diff for /gforth/iss.sh between versions 1.24 and 1.31

version 1.24, 2009/12/31 15:32:35 version 1.31, 2012/12/31 15:25:18
Line 1 Line 1
 #!/bin/bash  #!/bin/bash
   
 #Copyright (C) 2000,2003,2006,2007,2009 Free Software Foundation, Inc.  #Copyright (C) 2000,2003,2006,2007,2009,2011,2012 Free Software Foundation, Inc.
   
 #This file is part of Gforth.  #This file is part of Gforth.
   
Line 27 Line 27
   
 VERSION=$(cat version)  VERSION=$(cat version)
   
 sed "s/@PACKAGE_VERSION@/$VERSION/g" <gforthmi.sh.in >gforthmi.sh  
   
 for i in lib/gforth/$VERSION/libcc-named/*.la  for i in lib/gforth/$VERSION/libcc-named/*.la
 do  do
     sed "s/dependency_libs='.*'/dependency_libs=''/g" <$i >$i+      sed "s/dependency_libs='.*'/dependency_libs=''/g" <$i >$i+
Line 42  cat <<EOT Line 40  cat <<EOT
 [Setup]  [Setup]
 AppName=Gforth  AppName=Gforth
 AppVerName=Gforth $VERSION  AppVerName=Gforth $VERSION
 AppCopyright=Copyright © 1995,1996,1997,1998,2000,2003,2006,2007,2008,2009 Free Software Foundation  AppCopyright=Copyright © 1995,1996,1997,1998,2000,2003,2006,2007,2008,2009,2010,2011,2012 Free Software Foundation
 DefaultDirName={pf}\gforth  DefaultDirName={pf}\gforth
 DefaultGroupName=Gforth  DefaultGroupName=Gforth
 AllowNoIcons=1  AllowNoIcons=1
 InfoBeforeFile=COPYING  InfoBeforeFile=COPYING
 Compression=lzma  Compression=lzma
 DisableStartupPrompt=yes  DisableStartupPrompt=yes
   ChangesEnvironment=yes
 OutputBaseFilename=gforth-$VERSION  OutputBaseFilename=gforth-$VERSION
   
 [Messages]  [Messages]
Line 81  Name: "{app}\include\gforth\\$VERSION" Line 80  Name: "{app}\include\gforth\\$VERSION"
 ; Parameter quick reference:  ; Parameter quick reference:
 ;   "Source filename", "Dest. filename", Copy mode, Flags  ;   "Source filename", "Dest. filename", Copy mode, Flags
 Source: "README.txt"; DestDir: "{app}"; Flags: isreadme  Source: "README.txt"; DestDir: "{app}"; Flags: isreadme
 Source: "c:\cygwin\bin\cygwin1.dll"; DestDir: "{app}"  
 Source: "c:\cygwin\bin\sh.exe"; DestDir: "{app}"  Source: "c:\cygwin\bin\sh.exe"; DestDir: "{app}"
   Source: "c:\cygwin\bin\cygwin1.dll"; DestDir: "{app}"
   Source: "c:\cygwin\bin\cyggcc_s-1.dll"; DestDir: "{app}"
 Source: "c:\cygwin\bin\cygintl-8.dll"; DestDir: "{app}"  Source: "c:\cygwin\bin\cygintl-8.dll"; DestDir: "{app}"
 Source: "c:\cygwin\bin\cygiconv-2.dll"; DestDir: "{app}"  Source: "c:\cygwin\bin\cygiconv-2.dll"; DestDir: "{app}"
 Source: "c:\cygwin\bin\cygltdl-3.dll"; DestDir: "{app}"  Source: "c:\cygwin\bin\cygltdl-7.dll"; DestDir: "{app}"
 Source: "c:\cygwin\bin\cygreadline6.dll"; DestDir: "{app}"  Source: "c:\cygwin\bin\cygreadline7.dll"; DestDir: "{app}"
 Source: "c:\cygwin\bin\cygncurses-8.dll"; DestDir: "{app}"  Source: "c:\cygwin\bin\cygncursesw-10.dll"; DestDir: "{app}"
 Source: "c:\cygwin\bin\cygffi-2-00-beta.dll"; DestDir: "{app}"  Source: "c:\cygwin\bin\cygffi-4.dll"; DestDir: "{app}"
 Source: "gforthmi.sh"; 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 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 lib/gforth/$VERSION/libcc-named/.libs | sed -e 's:/:\\:g' -e 's,^\(..*\)$,Source: "lib\\gforth\\'$VERSION'\\libcc-named\\.libs\\\1"; DestDir: "{app}\\lib\\gforth\\'$VERSION'\\libcc-named\\.libs",g')
 $(ls include/gforth/$VERSION | sed -e 's:/:\\:g' -e 's,^\(..*\)$,Source: "engine\\\1"; DestDir: "{app}\\include\\gforth\\'$VERSION'",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
Line 112  Name: "{group}\Gforth"; Filename: "{app} Line 113  Name: "{group}\Gforth"; Filename: "{app}
 Name: "{group}\Gforth-fast"; Filename: "{app}\gforth-fast.exe"; WorkingDir: "{app}"  Name: "{group}\Gforth-fast"; Filename: "{app}\gforth-fast.exe"; WorkingDir: "{app}"
 Name: "{group}\Gforth-dict"; Filename: "{app}\gforth-dict.exe"; WorkingDir: "{app}"  Name: "{group}\Gforth-dict"; Filename: "{app}\gforth-dict.exe"; WorkingDir: "{app}"
 Name: "{group}\Gforth-itc"; Filename: "{app}\gforth-itc.exe"; WorkingDir: "{app}"  Name: "{group}\Gforth-itc"; Filename: "{app}\gforth-itc.exe"; WorkingDir: "{app}"
 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"; 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}\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}\VMgen Manual"; Filename: "{app}\doc\vmgen\index.html"; WorkingDir: "{app}"; Components: help
Line 120  Name: "{group}\Bash"; Filename: "{app}\s Line 120  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 gforth-fast.exe"  Filename: "{app}\sh.exe"; WorkingDir: "{app}"; Parameters: "-c ""./gforthmi.sh || read"""
 Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs gforth-ditc.exe"  Filename: "{app}\sh.exe"; WorkingDir: "{app}"; Parameters: "-c ""./gforth fixpath.fs gforth-fast.exe || read"""
 Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs gforth-itc.exe"  Filename: "{app}\sh.exe"; WorkingDir: "{app}"; Parameters: "-c ""./gforth fixpath.fs gforth-ditc.exe || read"""
 Filename: "{app}\gforth.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs gforth-prof.exe"  Filename: "{app}\sh.exe"; WorkingDir: "{app}"; Parameters: "-c ""./gforth fixpath.fs gforth-itc.exe || read"""
 Filename: "{app}\gforth-fast.exe"; WorkingDir: "{app}"; Parameters: "fixpath.fs gforth.exe"  Filename: "{app}\sh.exe"; WorkingDir: "{app}"; Parameters: "-c ""./gforth-fast fixpath.fs gforth.exe || read"""
 Filename: "{app}\sh.exe"; WorkingDir: "{app}"; Parameters: "./gforthmi.sh"  
   
 [UninstallDelete]  [UninstallDelete]
 Type: files; Name: "{app}\gforth.fi"  Type: files; Name: "{app}\gforth.fi"
 Type: files; Name: "{app}\temp-image.fi1"  Type: files; Name: "{app}\temp-image.fi1"
 Type: files; Name: "{app}\temp-image.fi2"  Type: files; Name: "{app}\temp-image.fi2"
   
   [Registry]
   Root: HKLM; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; ValueType: expandsz; ValueName: "Path"; ValueData: "{olddata};{app}"; Check: NeedsAddPath(ExpandConstant('{app}'))
   
 ;[Registry]  ;[Registry]
 ;registry commented out  ;registry commented out
 ; WorkingDir: "{app}"; Parameter quick reference:  ; WorkingDir: "{app}"; Parameter quick reference:
Line 148  Type: files; Name: "{app}\temp-image.fi2 Line 150  Type: files; Name: "{app}\temp-image.fi2
 ;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"
   
   [Code]
   function NeedsAddPath(Param: string): boolean;
   var
     OrigPath: string;
   begin
     if not RegQueryStringValue(HKEY_LOCAL_MACHINE,'SYSTEM\CurrentControlSet\Control\Session Manager\Environment', 'Path', OrigPath)
     then begin
       Result := True;
       exit;
     end;
     // look for the path with leading and trailing semicolon
     // Pos() returns 0 if not found
     Result := Pos(';' + UpperCase(Param) + ';', ';' + UpperCase(OrigPath) + ';') = 0;  
     if Result = True then
        Result := Pos(';' + UpperCase(Param) + '\;', ';' + UpperCase(OrigPath) + ';') = 0; 
   end;
 EOT  EOT
   
 sed -e 's/$/\r/' <README >README.txt  sed -e 's/$/\r/' <README >README.txt

Removed from v.1.24  
changed lines
  Added in v.1.31


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