~ubuntu-branches/debian/wheezy/amide/wheezy

« back to all changes in this revision

Viewing changes to etc/amide.iss.in

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2012-01-09 13:28:04 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120109132804-x0c5519pf2qgj4yk
Tags: 1.0.1-1
* debian/README.source: removed because it is redundant
* debian/control:
  - Fixed Vcs-Svn
  - Removed quilt from Build-Depends
* debian/install: Make use of dh_install
* debian/rules: 
  - Remove unknown option --enable-rpm-install from configure
    arguments
  - rewritten to make use of
     dh --with autotools_dev
* debian/deletable.files: Removed.  There is no need to hack
  around broken upstream tarballs.  Upstream contains some *.bak
  files which are cleaned up in upstream clean target
* debian/autogen.sh:
  Not needed when properly using autotools-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
[Registry]
24
24
; This adds the dll's in the bin directory to amide.exe's path
25
25
Root: HKLM; Subkey: "Software\Microsoft\Windows\CurrentVersion\App Paths\@PACKAGE@.exe"; Flags: uninsdeletekeyifempty
26
 
Root: HKLM; Subkey: "Software\Microsoft\Windows\CurrentVersion\App Paths\@PACKAGE@.exe"; ValueType: string; ValueData: "{app}\@PACKAGE@.exe"; Flags: uninsdeletevalue
 
26
Root: HKLM; Subkey: "Software\Microsoft\Windows\CurrentVersion\App Paths\@PACKAGE@.exe"; ValueType: string; ValueData: "{app}\bin\@PACKAGE@.exe"; Flags: uninsdeletevalue
27
27
Root: HKLM; Subkey: "Software\Microsoft\Windows\CurrentVersion\App Paths\@PACKAGE@.exe"; ValueType: string; ValueName: "Path"; ValueData: "{app};{app}\bin"; Flags: uninsdeletevalue
28
 
; old line below, this was prior to 0.9.0, when we used an external gtk runtime package
29
 
; Root: HKLM; Subkey: "Software\Microsoft\Windows\CurrentVersion\App Paths\@PACKAGE@.exe"; ValueType: string; ValueName: "Path"; ValueData: "{app};{app}\bin;{code:GetGtkPath}\lib"; Flags: uninsdeletevalue
30
28
 
31
29
; This allows .xif files to get sent to AMIDE
32
30
Root: HKCR; Subkey: ".xif"; ValueType: string; ValueName: ""; ValueData: "AmideXmlImageFormat"; Flags: uninsdeletevalue
33
31
Root: HKCR; Subkey: "AmideXmlImageFormat"; ValueType: string; ValueName: ""; ValueData: "amide"; Flags: uninsdeletekey
34
 
Root: HKCR; Subkey: "AmideXmlImageFormat\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "{app}\AMIDE.EXE,1"
35
 
Root: HKCR; Subkey: "AmideXmlImageFormat\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\AMIDE.EXE"" ""%1"""
 
32
Root: HKCR; Subkey: "AmideXmlImageFormat\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "{app}\bin\AMIDE.EXE,1"
 
33
Root: HKCR; Subkey: "AmideXmlImageFormat\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\bin\AMIDE.EXE"" ""%1"""
36
34
 
37
35
 
38
36
 
39
37
[Files]
40
 
Source: "C:\Documents and Settings\loening\Desktop\@PACKAGE@-@VERSION@\amide.exe"; DestDir: "{app}"; Flags: ignoreversion
41
38
Source: "C:\Documents and Settings\loening\Desktop\@PACKAGE@-@VERSION@\bin\*"; DestDir: "{app}\bin"; Flags: ignoreversion
42
39
; Source: "C:\Documents and Settings\loening\Desktop\@PACKAGE@-@VERSION@\help\*"; DestDir: "{app}\help\"; Flags: ignoreversion recursesubdirs
43
 
; Source: "C:\Documents and Settings\loening\Desktop\@PACKAGE@-@VERSION@\lib\*"; DestDir: "{app}\lib"; Flags: ignoreversion recursesubdirs
 
40
Source: "C:\Documents and Settings\loening\Desktop\@PACKAGE@-@VERSION@\etc\*"; DestDir: "{app}\etc"; Flags: ignoreversion recursesubdirs
 
41
Source: "C:\Documents and Settings\loening\Desktop\@PACKAGE@-@VERSION@\lib\*"; DestDir: "{app}\lib"; Flags: ignoreversion recursesubdirs
44
42
; Source: "C:\Documents and Settings\loening\Desktop\@PACKAGE@-@VERSION@\man\*"; DestDir: "{app}\man"; Flags: ignoreversion recursesubdirs
45
43
Source: "C:\Documents and Settings\loening\Desktop\@PACKAGE@-@VERSION@\share\*"; DestDir: "{app}\share"; Flags: ignoreversion recursesubdirs
46
44
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
47
45
 
48
46
[Icons]
49
 
Name: "{group}\amide"; Filename: "{app}\amide.exe";
50
 
Name: "{userdesktop}\amide"; Filename: "{app}\amide.exe"; Tasks: desktopicon
51
 
 
52
 
 
53
 
 
54
 
; no longer used as of 0.9.0, see above note
55
 
;; CODE is taken from the example on the dropline page
56
 
;[Code]
57
 
;
58
 
;var
59
 
;  Exists: Boolean;
60
 
;  GtkPath: String;
61
 
;
62
 
;function GetGtkInstalled (): Boolean;
63
 
;begin
64
 
;  Exists := RegQueryStringValue (HKLM, 'Software\GTK\2.0', 'Path', GtkPath);
65
 
;  if not Exists then begin
66
 
;    Exists := RegQueryStringValue (HKCU, 'Software\GTK\2.0', 'Path', GtkPath);
67
 
;  end;
68
 
;   Result := Exists
69
 
;end;
70
 
;
71
 
;function GetGtkPath (S: String): String;
72
 
;begin
73
 
;    Result := GtkPath;
74
 
;end;
75
 
;
76
 
;function InitializeSetup(): Boolean;
77
 
;begin
78
 
;  Result := GetGtkInstalled ();
79
 
;  if not Result then begin
80
 
;    MsgBox ('Please install the GTK+ 2.0 Runtime Environment before installing AMIDE.  You can obtain GTK+ from http://www.dropline.net/gtk.', mbError, MB_OK);
81
 
;  end;
82
 
;end;
 
47
Name: "{group}\amide"; Filename: "{app}\bin\amide.exe";
 
48
Name: "{userdesktop}\amide"; Filename: "{app}\bin\amide.exe"; Tasks: desktopicon
 
 
b'\\ No newline at end of file'