2005-01-20 11:42:03 +00:00
|
|
|
|
; w32installer.nsi -*- mode: lisp; coding: latin-1; -*-
|
|
|
|
|
; W32 Installer script
|
2005-01-11 12:03:22 +00:00
|
|
|
|
; Copyright (C) 2005 Free Software Foundation, Inc.
|
|
|
|
|
;
|
|
|
|
|
; This file is free software; as a special exception the author gives
|
|
|
|
|
; unlimited permission to copy and/or distribute it, with or without
|
|
|
|
|
; modifications, as long as this notice is preserved.
|
|
|
|
|
;
|
|
|
|
|
; This program is distributed in the hope that it will be useful, but
|
|
|
|
|
; WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
|
|
|
|
; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
|
|
;----------------------------------------------------------------------
|
|
|
|
|
; This is an installer script used to create a W32 installer "exe" file
|
|
|
|
|
; using NSIS. It is usually used by the mk-w32-dist script.
|
|
|
|
|
;----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
; We use the modern UI.
|
|
|
|
|
!include "MUI.nsh"
|
|
|
|
|
|
|
|
|
|
; -------------
|
|
|
|
|
; General stuff
|
|
|
|
|
; -------------
|
|
|
|
|
Name "GNU Privacy Guard"
|
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
!ifdef WITH_WINPT
|
|
|
|
|
OutFile "gnupg-w32-${VERSION}.exe"
|
|
|
|
|
!else
|
2005-01-11 12:03:22 +00:00
|
|
|
|
OutFile "gnupg-w32cli-${VERSION}.exe"
|
2005-01-26 17:44:48 +00:00
|
|
|
|
!endif
|
2005-01-11 12:03:22 +00:00
|
|
|
|
|
|
|
|
|
InstallDir "$PROGRAMFILES\GNU\GnuPG"
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
InstallDirRegKey HKLM "Software\GNU\GnuPG" "Install Directory"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
|
|
|
|
|
SetCompressor lzma
|
|
|
|
|
|
|
|
|
|
|
2005-01-17 10:19:57 +00:00
|
|
|
|
VIProductVersion "${PROD_VERSION}"
|
|
|
|
|
VIAddVersionKey "ProductName" "GNU Privacy Guard (${VERSION})"
|
|
|
|
|
VIAddVersionKey "Comments" \
|
|
|
|
|
"GnuPG is Free Software; you can redistribute it and/or modify \
|
|
|
|
|
it under the terms of the GNU General Public License. You should \
|
|
|
|
|
have received a copy of the GNU General Public License along with \
|
|
|
|
|
this software; if not, write to the Free Software Foundation, Inc., \
|
|
|
|
|
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA"
|
|
|
|
|
VIAddVersionKey "CompanyName" "Free Software Foundation"
|
|
|
|
|
VIAddVersionKey "LegalTrademarks" ""
|
|
|
|
|
VIAddVersionKey "LegalCopyright" \
|
|
|
|
|
"Copyright (C) 2005 Free Software Foundation, Inc."
|
|
|
|
|
VIAddVersionKey "FileDescription" \
|
|
|
|
|
"GnuPG: Encryption and digital signature tool"
|
|
|
|
|
VIAddVersionKey "FileVersion" "${PROD_VERSION}"
|
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
; ----------------------
|
|
|
|
|
; Variable declarations
|
|
|
|
|
; ----------------------
|
|
|
|
|
|
|
|
|
|
Var MYTMP
|
|
|
|
|
Var STARTMENU_FOLDER
|
|
|
|
|
|
|
|
|
|
Var DOC_INSTALLED
|
2005-02-03 11:16:27 +00:00
|
|
|
|
!ifdef WITH_WINPT
|
2005-01-26 17:44:48 +00:00
|
|
|
|
Var WINPT_INSTALLED
|
2005-02-03 11:16:27 +00:00
|
|
|
|
!endif
|
2005-01-17 10:19:57 +00:00
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
; ------------------
|
|
|
|
|
; Interface Settings
|
|
|
|
|
; ------------------
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
;;;!define MUI_ABORTWARNING
|
2005-01-11 12:03:22 +00:00
|
|
|
|
!define MUI_FINISHPAGE_NOAUTOCLOSE
|
|
|
|
|
!define MUI_UNFINISHPAGE_NOAUTOCLOSE
|
|
|
|
|
|
|
|
|
|
; Remember the installer language
|
|
|
|
|
!define MUI_LANGDLL_REGISTRY_ROOT "HKCU"
|
|
|
|
|
!define MUI_LANGDLL_REGISTRY_KEY "Software\GNU\GnuPG"
|
|
|
|
|
!define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; -----
|
|
|
|
|
; Pages
|
|
|
|
|
; -----
|
|
|
|
|
|
|
|
|
|
!define MUI_WELCOMEPAGE_TEXT "$(T_About)"
|
|
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!define MUI_PAGE_HEADER_SUBTEXT \
|
|
|
|
|
"This software is licensed under the terms of the GNU General Public \
|
|
|
|
|
License (GPL) which guarantees your freedom to share and change Free \
|
|
|
|
|
Software."
|
|
|
|
|
|
|
|
|
|
!define MUI_LICENSEPAGE_TEXT_BOTTOM \
|
|
|
|
|
"In short: You are allowed to run this software for any purpose. \
|
|
|
|
|
You may distribute it as long as you give the recipients the same \
|
|
|
|
|
rights you have received."
|
|
|
|
|
|
|
|
|
|
!define MUI_LICENSEPAGE_BUTTON "$(^NextBtn)"
|
|
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_LICENSE "COPYING.txt"
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
;;Page custom PageSelectOptions
|
2005-01-11 12:03:22 +00:00
|
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_COMPONENTS
|
2005-01-20 11:42:03 +00:00
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
2005-01-26 17:44:48 +00:00
|
|
|
|
|
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
|
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\GNU\GnuPG"
|
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
|
|
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
|
|
|
|
2005-02-03 11:16:27 +00:00
|
|
|
|
!define MUI_FINISHPAGE_SHOWREADME "README.W32.txt"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
!define MUI_FINISHPAGE_SHOWREADME_TEXT "$(T_ShowReadme)"
|
2005-01-20 11:42:03 +00:00
|
|
|
|
!define MUI_FINISHPAGE_LINK \
|
|
|
|
|
"Visit the GnuPG website for latest news and support"
|
|
|
|
|
!define MUI_FINISHPAGE_LINK_LOCATION "http://www.gnupg.org/"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; -----------------
|
|
|
|
|
; i18n Declarations
|
|
|
|
|
; -----------------
|
|
|
|
|
|
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
|
!insertmacro MUI_LANGUAGE "German"
|
|
|
|
|
|
|
|
|
|
; ------------------
|
|
|
|
|
; Installer Sections
|
|
|
|
|
; ------------------
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
;InstType "full"
|
|
|
|
|
;InstType "minimal"
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
!insertmacro MUI_RESERVEFILE_LANGDLL
|
|
|
|
|
;;!insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
|
|
|
|
|
;;ReserveFile "w32inst-opt.ini"
|
|
|
|
|
ReserveFile "COPYING.txt"
|
|
|
|
|
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
;----------------------
|
|
|
|
|
Section "Base" SecBase
|
|
|
|
|
; SectionIn 1 2 RO
|
|
|
|
|
SectionIn RO
|
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
|
|
|
|
|
|
File "gpg.exe"
|
|
|
|
|
File "gpgkeys_finger.exe"
|
|
|
|
|
File "gpgkeys_hkp.exe"
|
|
|
|
|
File "gpgkeys_http.exe"
|
|
|
|
|
File "gpgkeys_ldap.exe"
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
SetOutPath "$INSTDIR\Doc"
|
|
|
|
|
|
|
|
|
|
File "README.txt"
|
2005-02-03 11:16:27 +00:00
|
|
|
|
File "README.W32.txt"
|
2005-01-20 11:42:03 +00:00
|
|
|
|
File "COPYING.txt"
|
|
|
|
|
|
|
|
|
|
Call InstallIconv
|
|
|
|
|
|
|
|
|
|
WriteRegStr HKLM "Software\GNU\GnuPG" "Install Directory" $INSTDIR
|
2005-01-11 12:03:22 +00:00
|
|
|
|
|
|
|
|
|
SectionEnd ; Section Base
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
;----------------------
|
|
|
|
|
Section "NLS" SecNLS
|
|
|
|
|
; SectionIn 1
|
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR\gnupg.nls"
|
|
|
|
|
|
|
|
|
|
File "*.mo"
|
|
|
|
|
|
|
|
|
|
SectionEnd ; Section NLS
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
;------------------------
|
|
|
|
|
Section "Tools" SecTools
|
|
|
|
|
; SectionIn 1
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
SetOutPath "$INSTDIR"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
File "gpgsplit.exe"
|
|
|
|
|
File "gpgv.exe"
|
|
|
|
|
|
|
|
|
|
SectionEnd ; Section Tools
|
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
;------------------
|
|
|
|
|
!ifdef WITH_WINPT
|
|
|
|
|
Section "WinPT" SecWinPT
|
|
|
|
|
; SectionIn 1
|
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
|
|
|
|
|
|
File "WinPT.exe"
|
|
|
|
|
File "PTD.dll"
|
|
|
|
|
File "keyserver.conf"
|
|
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR\Doc"
|
|
|
|
|
|
|
|
|
|
File "README.winpt.txt"
|
|
|
|
|
|
|
|
|
|
WriteRegStr HKCU "Software\GNU\GnuPG" "gpgProgram" "$INSTDIR\gpg.exe"
|
|
|
|
|
|
|
|
|
|
StrCpy $WINPT_INSTALLED 1
|
|
|
|
|
|
|
|
|
|
SectionEnd ; Section WinPT
|
|
|
|
|
!endif
|
|
|
|
|
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
;----------------------
|
|
|
|
|
Section "Documentation" SecDoc
|
|
|
|
|
; SectionIn 1
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
SetOutPath "$INSTDIR\Doc"
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
File "gnupg.man"
|
|
|
|
|
File "gpg.man"
|
|
|
|
|
File "gpgv.man"
|
|
|
|
|
File "NEWS.txt"
|
|
|
|
|
File "FAQ.txt"
|
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
!ifdef WITH_WINPT
|
|
|
|
|
File "NEWS.winpt.txt"
|
|
|
|
|
!endif ; WITH_WINPT
|
|
|
|
|
|
|
|
|
|
StrCpy $DOC_INSTALLED 1
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
SectionEnd ; Section Documentation
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;------------------
|
|
|
|
|
!ifdef WITH_SOURCE
|
|
|
|
|
Section "Source" SecSource
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
SetOutPath "$INSTDIR\Src"
|
|
|
|
|
|
|
|
|
|
; Note that we include the uncompressed tarball because this allows
|
|
|
|
|
; far better compression results for the distribution. We might
|
|
|
|
|
; want to compress it again after installation.
|
2005-01-26 17:44:48 +00:00
|
|
|
|
File "gnupg-${VERSION}.tar"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
|
|
|
|
|
SectionEnd ; Section Source
|
|
|
|
|
!endif
|
|
|
|
|
|
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
;;
|
|
|
|
|
;; The last section is a hidden one; used to finish up things.
|
|
|
|
|
;;
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
Section "-Finish"
|
|
|
|
|
|
|
|
|
|
;;--------------------------
|
|
|
|
|
;; Create the uninstaller
|
|
|
|
|
;;--------------------------
|
|
|
|
|
WriteUninstaller "$INSTDIR\uninst-gnupg.exe"
|
|
|
|
|
|
|
|
|
|
;;---------------------
|
|
|
|
|
;; Create Menu entries
|
|
|
|
|
;;---------------------
|
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
|
|
|
|
|
|
|
|
|
|
CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER"
|
|
|
|
|
|
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\GnuPG README.lnk" \
|
|
|
|
|
"$INSTDIR\Doc\README.txt"
|
2005-02-03 11:16:27 +00:00
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\GnuPG README.Windows.lnk" \
|
|
|
|
|
"$INSTDIR\Doc\README.W32.txt"
|
2005-01-26 17:44:48 +00:00
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\GnuPG NEWS.lnk" \
|
|
|
|
|
"$INSTDIR\Doc\NEWS.txt"
|
|
|
|
|
|
|
|
|
|
IntCmp $DOC_INSTALLED 1 0 +2 +2
|
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\GnuPG Manual Page.lnk" \
|
|
|
|
|
"$INSTDIR\Doc\gpg.man"
|
|
|
|
|
|
|
|
|
|
|
2005-02-03 11:16:27 +00:00
|
|
|
|
!ifdef WITH_WINPT
|
2005-01-26 17:44:48 +00:00
|
|
|
|
IntCmp $WINPT_INSTALLED 1 0 no_winpt_menu no_winpt_menu
|
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\winpt.lnk" \
|
|
|
|
|
"$INSTDIR\winpt.exe"
|
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\WinPT README.lnk" \
|
|
|
|
|
"$INSTDIR\Doc\README.winpt.txt"
|
|
|
|
|
IntCmp $DOC_INSTALLED 1 0 +2 +2
|
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\WinPT NEWS.lnk" \
|
|
|
|
|
"$INSTDIR\Doc\NEWS.winpt.txt"
|
|
|
|
|
|
|
|
|
|
no_winpt_menu:
|
2005-02-03 11:16:27 +00:00
|
|
|
|
!endif
|
2005-01-26 17:44:48 +00:00
|
|
|
|
|
|
|
|
|
CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\uninst-gnupg.lnk" \
|
|
|
|
|
"$INSTDIR\uninst-gnupg.exe"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!insertmacro MUI_STARTMENU_WRITE_END
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SectionEnd ; "-Finish"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
;;
|
|
|
|
|
;; Create the section for the uninstaller
|
|
|
|
|
;;
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2005-01-11 12:03:22 +00:00
|
|
|
|
Section "Uninstall"
|
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
;;------------------------
|
|
|
|
|
;; Delete files
|
|
|
|
|
;;------------------------
|
2005-01-11 12:03:22 +00:00
|
|
|
|
Delete "$INSTDIR\gpg.exe"
|
|
|
|
|
Delete "$INSTDIR\gpgkeys_finger.exe"
|
|
|
|
|
Delete "$INSTDIR\gpgkeys_hkp.exe"
|
|
|
|
|
Delete "$INSTDIR\gpgkeys_http.exe"
|
|
|
|
|
Delete "$INSTDIR\gpgkeys_ldap.exe"
|
2005-01-20 11:42:03 +00:00
|
|
|
|
|
|
|
|
|
Delete "$INSTDIR\Doc\README.txt"
|
2005-02-03 11:16:27 +00:00
|
|
|
|
Delete "$INSTDIR\Doc\README.W32.txt"
|
2005-01-20 11:42:03 +00:00
|
|
|
|
Delete "$INSTDIR\Doc\COPYING.txt"
|
2005-01-26 17:44:48 +00:00
|
|
|
|
Delete "$INSTDIR\Doc\COPYING.LIB.txt"
|
|
|
|
|
Delete "$INSTDIR\Doc\README.iconv.txt"
|
2005-01-20 11:42:03 +00:00
|
|
|
|
|
|
|
|
|
Delete "$INSTDIR\iconv.dll"
|
|
|
|
|
|
|
|
|
|
Delete "$INSTDIR\gnupg.nls\*.mo"
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
Delete "$INSTDIR\gpgsplit.exe"
|
|
|
|
|
Delete "$INSTDIR\gpgv.exe"
|
2005-01-26 17:44:48 +00:00
|
|
|
|
Delete "$INSTDIR\WinPT.exe"
|
|
|
|
|
Delete "$INSTDIR\PTD.dll"
|
|
|
|
|
Delete "$INSTDIR\Doc\README.winpt.txt"
|
|
|
|
|
Delete "$INSTDIR\Doc\NEWS.winpt.txt"
|
|
|
|
|
Delete "$INSTDIR\Doc\keyserver.conf"
|
2005-01-20 11:42:03 +00:00
|
|
|
|
|
|
|
|
|
Delete "$INSTDIR\Doc\gnupg.man"
|
|
|
|
|
Delete "$INSTDIR\Doc\gpg.man"
|
|
|
|
|
Delete "$INSTDIR\Doc\gpgv.man"
|
|
|
|
|
Delete "$INSTDIR\Doc\NEWS.txt"
|
|
|
|
|
Delete "$INSTDIR\Doc\FAQ.txt"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
Delete "$INSTDIR\uninst-gnupg.exe"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
;;------------------------
|
|
|
|
|
;; Delete directories
|
|
|
|
|
;;------------------------
|
2005-01-20 11:42:03 +00:00
|
|
|
|
RMDir "$INSTDIR\Doc"
|
|
|
|
|
RMDir "$INSTDIR\Src"
|
|
|
|
|
RMDir "$INSTDIR\gnupg.nls"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
RMDir "$INSTDIR"
|
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
|
|
|
|
|
;;---------------------------------------------------
|
|
|
|
|
;; Delete the menu entries and any empty parent menus
|
|
|
|
|
;;---------------------------------------------------
|
|
|
|
|
!insertmacro MUI_STARTMENU_GETFOLDER Application $MYTMP
|
|
|
|
|
Delete "$SMPROGRAMS\$MYTMP\*.lnk"
|
|
|
|
|
StrCpy $MYTMP "$SMPROGRAMS\$MYTMP"
|
|
|
|
|
startMenuDeleteLoop:
|
|
|
|
|
ClearErrors
|
|
|
|
|
RMDir $MYTMP
|
|
|
|
|
GetFullPathName $MYTMP "$MYTMP\.."
|
|
|
|
|
IfErrors startMenuDeleteLoopDone
|
|
|
|
|
StrCmp $MYTMP $SMPROGRAMS startMenuDeleteLoopDone startMenuDeleteLoop
|
|
|
|
|
startMenuDeleteLoopDone:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;-----------------------
|
|
|
|
|
;; Cleanup the registry
|
|
|
|
|
;;-----------------------
|
|
|
|
|
DeleteRegValue HKCU "Software\GNU\GnuPG" "Start Menu Folder"
|
2005-01-20 11:42:03 +00:00
|
|
|
|
DeleteRegValue HKLM "Software\GNU\GnuPG" "Install Directory"
|
|
|
|
|
DeleteRegKey /ifempty HKLM "Software\GNU\GnuPG"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
|
|
|
|
|
SectionEnd ; Uninstall
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; ---------
|
|
|
|
|
; Functions
|
|
|
|
|
; ---------
|
|
|
|
|
|
|
|
|
|
Function .onInit
|
|
|
|
|
|
|
|
|
|
!insertmacro MUI_LANGDLL_DISPLAY
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
; !insertmacro MUI_INSTALLOPTIONS_EXTRACT_AS \
|
|
|
|
|
; "${GNUPG_SRCDIR}/scripts/w32inst-opt.ini" "w32inst-opt.ini"
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Function un.onInit
|
|
|
|
|
|
|
|
|
|
!insertmacro MUI_UNGETLANGUAGE
|
|
|
|
|
|
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
;;Function PageSelectOptions
|
|
|
|
|
;;
|
|
|
|
|
;; ; Setup a default for the langage to install. Take it form the registry
|
|
|
|
|
;;
|
|
|
|
|
;; !insertmacro MUI_HEADER_TEXT "Install Options" "Languages"
|
|
|
|
|
;; !insertmacro MUI_INSTALLOPTIONS_DISPLAY "w32inst-opt.ini"
|
|
|
|
|
;;
|
|
|
|
|
;; ; Save away the language to install
|
|
|
|
|
;;
|
|
|
|
|
;;FunctionEnd
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; Install iconv.dll if it has not been installed on the system.
|
|
|
|
|
Function InstallIconv
|
|
|
|
|
|
|
|
|
|
; First delete a iconv DLL already installed in the target directory.
|
|
|
|
|
; This is required to detect a meanwhile globally installed dll.
|
|
|
|
|
Delete "$INSTDIR\iconv.dll"
|
|
|
|
|
ClearErrors
|
|
|
|
|
GetDllVersion "iconv.dll" $R0 $R1
|
|
|
|
|
IfErrors 0 +3
|
|
|
|
|
DetailPrint "iconv.dll is not installed."
|
|
|
|
|
goto InstallIconv
|
|
|
|
|
|
|
|
|
|
IntOp $R2 $R0 / 0x00010000
|
|
|
|
|
IntOp $R3 $R0 & 0x0000FFFF
|
|
|
|
|
IntOp $R4 $R1 / 0x00010000
|
|
|
|
|
IntOp $R5 $R1 & 0x0000FFFF
|
|
|
|
|
StrCpy $0 "$R2.$R3.$R4.$R5"
|
|
|
|
|
|
|
|
|
|
DetailPrint "iconv.dll version is $0"
|
|
|
|
|
|
|
|
|
|
IntCmp $R2 1 0 IconvTooOld
|
|
|
|
|
IntCmp $R3 9 0 IconvTooOld
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
IconvTooOld:
|
|
|
|
|
DetailPrint "The installed iconv.dll is too old."
|
|
|
|
|
|
|
|
|
|
InstallIconv:
|
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
|
File "iconv.dll"
|
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
SetOutPath "$INSTDIR\doc"
|
|
|
|
|
File "COPYING.LIB.txt"
|
|
|
|
|
File "README.iconv.txt"
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
FunctionEnd
|
|
|
|
|
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
; ------------
|
|
|
|
|
; Descriptions
|
|
|
|
|
; ------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LangString T_About ${LANG_ENGLISH} \
|
|
|
|
|
"GnuPG is GNU's tool for secure communication and data storage. \
|
|
|
|
|
It can be used to encrypt data and to create digital signatures. \
|
|
|
|
|
It includes an advanced key management facility and is compliant \
|
2005-01-20 11:42:03 +00:00
|
|
|
|
with the proposed OpenPGP Internet standard as described in RFC2440. \
|
2005-01-26 17:44:48 +00:00
|
|
|
|
\r\n\r\n$_CLICK \
|
|
|
|
|
\r\n\r\n\r\n\r\n\r\nThis is GnuPG version ${VERSION}\r\n\
|
|
|
|
|
built on $%BUILDINFO%"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
LangString T_About ${LANG_GERMAN} \
|
|
|
|
|
"GnuPG is das Werzeug aus dem GNU Projekt zur sicheren Kommunikation \
|
2005-01-20 11:42:03 +00:00
|
|
|
|
sowie zum sicheren Speichern von Daten. \
|
2005-01-26 17:44:48 +00:00
|
|
|
|
\r\n\r\n$_CLICK \
|
|
|
|
|
\r\n\r\n\r\n\r\n\r\nDies ist GnuPG version ${VERSION}\r\n\
|
|
|
|
|
erstellt am $%BUILDINFO%"
|
2005-01-11 12:03:22 +00:00
|
|
|
|
LangString T_ShowReadme ${LANG_ENGLISH} "Show the README file"
|
|
|
|
|
LangString T_ShowReadme ${LANG_GERMAN} "Die README Datei anzeigen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LangString DESC_SecBase ${LANG_ENGLISH} \
|
|
|
|
|
"The basic files used for the standard OpenPGP protocol"
|
|
|
|
|
LangString DESC_SecBase ${LANG_GERMAN} \
|
|
|
|
|
"Die Basis Dateien zur Benutzung des OpenPGP Protokolls"
|
|
|
|
|
|
2005-01-20 11:42:03 +00:00
|
|
|
|
Langstring DESC_SecNLS ${LANG_ENGLISH} \
|
|
|
|
|
"Support for languages other than English"
|
|
|
|
|
LangString DESC_SecNLS ${LANG_GERMAN} \
|
|
|
|
|
"Unterst<73>tzung f<>r weitere Sprachen neben Englisch"
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
LangString DESC_SecTools ${LANG_ENGLISH} \
|
|
|
|
|
"Extra tools like gpgv and gpgsplit"
|
|
|
|
|
LangString DESC_SecTools ${LANG_GERMAN} \
|
|
|
|
|
"Weitere Tools wie gpgv und gpgsplit"
|
|
|
|
|
|
2005-01-26 17:44:48 +00:00
|
|
|
|
!ifdef WITH_WINPT
|
|
|
|
|
LangString DESC_SecWinPT ${LANG_ENGLISH} \
|
|
|
|
|
"The Windows Privacy Tray (WinPT)"
|
|
|
|
|
LangString DESC_SecWinPT ${LANG_GERMAN} \
|
|
|
|
|
"Der Windows Privacy Tray (WinPT)"
|
|
|
|
|
!endif
|
|
|
|
|
|
2005-01-11 12:03:22 +00:00
|
|
|
|
LangString DESC_SecDoc ${LANG_ENGLISH} \
|
|
|
|
|
"Manual pages and a FAQ"
|
|
|
|
|
LangString DESC_SecDoc ${LANG_GERMAN} \
|
|
|
|
|
"Handbuchseiten und eine FAQ"
|
|
|
|
|
|
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
|
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecBase} $(DESC_SecBase)
|
2005-01-20 11:42:03 +00:00
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecNLS} $(DESC_SecNLS)
|
2005-01-11 12:03:22 +00:00
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecTools} $(DESC_SecTools)
|
2005-01-26 17:44:48 +00:00
|
|
|
|
!ifdef WITH_WINPT
|
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecWinPT} $(DESC_SecWinPT)
|
|
|
|
|
!endif
|
2005-01-11 12:03:22 +00:00
|
|
|
|
!insertmacro MUI_DESCRIPTION_TEXT ${SecDoc} $(DESC_SecDoc)
|
|
|
|
|
!insertmacro MUI_FUNCTION_DESCRIPTION_END
|
|
|
|
|
|