Skip to content
Snippets Groups Projects
inst.nsi 69.5 KiB
Newer Older
  • Learn to ignore specific revisions
  • Veit Berwig's avatar
    Veit Berwig committed
    # inst.nsi - Installer for GnuPG on Windows.
    # Copyright (C) 2005, 2014, 2019-2021 g10 Code GmbH
    #               2017 Intevation GmbH
    #
    # This file is part of GnuPG.
    #
    # GnuPG is free software; you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation; either version 3 of the License, or
    # (at your option) any later version.
    #
    # GnuPG is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with this program; if not, see <http://www.gnu.org/licenses/>.
    
    # Macros to provide for invocation:
    #  INST_DIR
    #  INST6_DIR
    #  BUILD_DIR
    #  TOP_SRCDIR
    #  W32_SRCDIR
    #  BUILD_ISODATE   - the build date, e.g. "2014-10-31"
    #  BUILD_DATESTR   - ditto w/o '-',  e.g. "20141031"
    #  NAME
    #  VERSION
    #  PROD_VERSION
    #
    #  WITH_GUI        - Include the GPA GUI
    
    # This one must be done before addplugindir.
    Unicode true
    
    # MODIFIED FOR VS-NFD CONFIGURATION BY vitusb in 20250106 --- BEGIN ---
    # Got vars below from "gnupg-w32-x.x.xx.src\build-aux\speedo.mk" ...
    # ------------------------------------------------------------------
    
    Veit Berwig's avatar
    Veit Berwig committed
    # Line 287: (build-release: gnupg-2.2.46)
    
    Veit Berwig's avatar
    Veit Berwig committed
    # ------------------------------------------------------------------
    # # Directory names.
    # They must be absolute, as we switch directories pretty often.
    # root := $(shell pwd)/PLAY
    # sdir := $(root)/src
    # bdir := $(root)/build
    # bdir6:= $(root)/build-w64
    # ifeq ($(INSTALL_PREFIX),none)
    # idir := $(root)/inst
    # else
    # idir := $(abspath $(INSTALL_PREFIX))
    # endif
    # idir6:= $(root)/inst-w64
    # stampdir := $(root)/stamps
    # topsrc := $(shell cd $(dir $(SPEEDO_MK)).. && pwd)
    # auxsrc := $(topsrc)/build-aux/speedo
    # patdir := $(topsrc)/build-aux/speedo/patches
    # w32src := $(topsrc)/build-aux/speedo/w32
    # ------------------------------------------------------------------
    
    Veit Berwig's avatar
    Veit Berwig committed
    # Line 1371: (build-release: gnupg-2.2.46)
    
    Veit Berwig's avatar
    Veit Berwig committed
    # ------------------------------------------------------------------
    # 	$(MAKENSIS) -V2 \
    #       -DINST_DIR=$(idir) \
    #       -DINST6_DIR=$(idir6) \
    #       -DBUILD_DIR=$(bdir) \
    #       -DTOP_SRCDIR=$(topsrc) \
    #       -DW32_SRCDIR=$(w32src) \
    #       -DBUILD_ISODATE=$(BUILD_ISODATE) \
    #       -DBUILD_DATESTR=$(BUILD_DATESTR) \
    #       -DNAME=$(INST_NAME) \
    #       -DVERSION=$(INST_VERSION) \
    #       -DPROD_VERSION=$(INST_PROD_VERSION) \
    #       $(extra_installer_options) $(w32src)/inst.nsi
    #.
    #       @echo "Ready: $(idir)/$(INST_NAME)-$(INST_VERSION)_$(BUILD_DATESTR).exe"
    # ...
    # ------------------------------------------------------------------
    # ${VERSION} was taken from:
    # gnupg-w32-x.x.xx.src\configure
    # ------------------------------------------------------------------
    
    Veit Berwig's avatar
    Veit Berwig committed
    # Line 583:  PACKAGE_VERSION='2.2.46'
    
    Veit Berwig's avatar
    Veit Berwig committed
    # Line 2921: VERSION=$PACKAGE_VERSION
    # ------------------------------------------------------------------
    # 1.) ${PROD_VERSION} was taken from ...
    # "gnupg-w32-x.x.xx.src\build-aux\speedo.mk"
    # ------------------------------------------------------------------
    # Line 638:  sed -n  's/.*PACKAGE_VERSION "\(.*\)"/\1/p' config.h >$(idir)/INST_VERSION; \
    # Line 639:  sed -n  's/.*W32INFO_VI_PRODUCTVERSION \(.*\)/\1/p' common/w32info-rc.h \
    # Line 640:     |sed 's/,/./g' >$(idir)/INST_PROD_VERSION )
    # ...
    # Line 847:  INST_PROD_VERSION=$(shell head -1 $(idir)/INST_PROD_VERSION)
    # ...
    # Line 1381: -DPROD_VERSION=$(INST_PROD_VERSION) \
    # ------------------------------------------------------------------
    # 2.) ... by W32INFO_VI_PRODUCTVERSION in ...
    # "gnupg-w32-x.x.xx.src\common\w32info-rc.h"
    # ------------------------------------------------------------------
    # Line 23: #define W32INFO_VI_PRODUCTVERSION @BUILD_FILEVERSION@
    # ------------------------------------------------------------------
    # 3.) ... over BUILD_FILEVERSION in ...
    # "gnupg-w32-x.x.xx.src\configure"
    # ------------------------------------------------------------------
    # Line 15983: BUILD_VERSION=`echo "$VERSION" | sed 's/\([0-9.]*\).*/\1./'`
    # Line 15984: BUILD_VERSION="${BUILD_VERSION}36415"
    # Line 15985: BUILD_FILEVERSION=`echo "${BUILD_VERSION}" | tr . ,`
    # ------------------------------------------------------------------
    # 4.) ... that produces the string by a "tr"-filter:
    
    Veit Berwig's avatar
    Veit Berwig committed
    # echo "2.2.46.32328" | tr . ,
    # 2,2,46,32328
    
    Veit Berwig's avatar
    Veit Berwig committed
    # 5.) ... with a "sed" filter by:
    
    Veit Berwig's avatar
    Veit Berwig committed
    # echo "2,2,46,32328" | sed 's/,/./g'
    # 2.2.46.32328
    
    Veit Berwig's avatar
    Veit Berwig committed
    
    #
    # MAKE CHANGES HERE --- BEGIN ---
    #
    
    # Example for Project-dir:
    #
    #       "gnupg-w32-x.x.xx.src\PLAY\build"
    #       "gnupg-w32-x.x.xx.src\PLAY\inst"
    #       "gnupg-w32-x.x.xx.src\build-aux\speedo\w32"
    
    #
    # 1.) Extract original installer of "${NAME}-${VERSION}_${BUILD_DATESTR}.exe"
    #     (i. e.: "gnupg-w32-2.2.45_20241022.exe"           into ".\PLAY\inst" dir.
    #     - Move   ".\PLAY\inst\$PLUGINSDIR\g4wihelp.dll"      to ".\PLAY\build".
    #     - Move   ".\PLAY\inst\README.txt"                    to ".\PLAY\build".
    #     - Create directory ".\PLAY\inst\libexec".
    #     - Move   ".\PLAY\inst\bin\dirmngr_ldap.exe"          to ".\PLAY\inst\libexec".
    #     - Move   ".\PLAY\inst\bin\gpg-check-pattern.exe"     to ".\PLAY\inst\libexec".
    #     - Move   ".\PLAY\inst\bin\gpgme-w32spawn.exe"        to ".\PLAY\inst\libexec".
    #     - Move   ".\PLAY\inst\bin\gpg-preset-passphrase.exe" to ".\PLAY\inst\libexec".
    #     - Move   ".\PLAY\inst\bin\gpg-wks-client.exe"        to ".\PLAY\inst\libexec".
    #     - Move   ".\PLAY\inst\bin\scdaemon.exe"              to ".\PLAY\inst\libexec".
    #     - Rename ".\PLAY\inst\lib\libassuan.imp"             to "libassuan.dll.a"
    #     - Rename ".\PLAY\inst\lib\libgcrypt.imp"             to "libgcrypt.dll.a"
    #     - Rename ".\PLAY\inst\lib\libgpg-error.imp"          to "libgpg-error.dll.a"
    #     - Rename ".\PLAY\inst\lib\libgpgme.imp"              to "libgpgme.dll.a"
    #     - Rename ".\PLAY\inst\lib\libksba.imp"               to "libksba.dll.a"
    #     - Rename ".\PLAY\inst\lib\libnpth.imp"               to "libnpth.dll.a"
    #     - Rename ".\PLAY\inst\bin\pinentry-basic.exe"        to "pinentry-w32.exe"
    
    
    Veit Berwig's avatar
    Veit Berwig committed
    !define My_VERSION "2.2.46"
    !define My_PROD_VERSION "2.2.46.32328"
    
    Veit Berwig's avatar
    Veit Berwig committed
    
    !define My_TOP_SRCDIR "_"                                     # gnupg-w32-x.x.xx.src\PLAY\build
    !define My_BUILD_DIR "${My_TOP_SRCDIR}\PLAY\build"            # gnupg-w32-x.x.xx.src\PLAY\build
    !define My_INST_DIR "${My_TOP_SRCDIR}\PLAY\inst"              # gnupg-w32-x.x.xx.src\PLAY\inst
    !define My_INST6_DIR "${My_TOP_SRCDIR}\PLAY\inst-w64"         # gnupg-w32-x.x.xx.src\PLAY\inst-w64
    !define My_W32_SRCDIR "${My_TOP_SRCDIR}\build-aux\speedo\w32" # gnupg-w32-x.x.xx.src\build-aux\speedo\w32
    
    # VS-NFD centralized configuration
    !define VSNFD_CFG_SOURCE "${My_TOP_SRCDIR}\PLAY\vs-nfd-config"
    !define VSNFD_CFG_TARGET "$COMMONPROGRAMDATA\GNU"
    
    # "BUILD_ISODATE" and "BUILD_DATESTR" were taken from:
    # "gnupg-w32-x.x.xx.src\build-aux\speedo.mk"
    # Line 841: BUILD_ISODATE=$(shell date -u +%Y-%m-%d)
    # Line 842: BUILD_DATESTR=$(subst -,,$(BUILD_ISODATE))
    
    Veit Berwig's avatar
    Veit Berwig committed
    # BUILD_ISODATE is like: 2025-01-07
    # BUILD_DATESTR is like: 20250107
    
    Veit Berwig's avatar
    Veit Berwig committed
    
    
    Veit Berwig's avatar
    Veit Berwig committed
    !define My_BUILD_ISODATE "2025-01-07"           # BUILD_ISODATE=$(shell date -u +%Y-%m-%d)
    !define My_BUILD_DATESTR "20250107"             # BUILD_DATESTR=$(subst -,,$(BUILD_ISODATE))
    
    Veit Berwig's avatar
    Veit Berwig committed
    166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
    
    # "NAME" was taken from "INST_NAME" in:
    # "gnupg-w32-x.x.xx.src\build-aux\speedo.mk"
    # Line 236: INST_NAME=gnupg-w32
    
    !define My_NAME "gnupg-w32"
    
    #
    # MAKE CHANGES HERE ---  END  ---
    #
    
    !define VERSION "${My_VERSION}"
    !define PROD_VERSION "${My_PROD_VERSION}"
    !define TOP_SRCDIR "${My_TOP_SRCDIR}"
    !define INST_DIR "${My_INST_DIR}"
    !define INST6_DIR "${My_INST6_DIR}"
    !define W32_SRCDIR "${My_W32_SRCDIR}"
    !define BUILD_DIR "${My_BUILD_DIR}"
    !define BUILD_ISODATE "${My_BUILD_ISODATE}"
    !define BUILD_DATESTR "${My_BUILD_DATESTR}"
    !define NAME "${My_NAME}"
    
    # TODO: !!! CHECK FILES FOR AVAILABILITY UNDER "${BUILD_DIR}"
    #       !!! IN REFERENCE TO SOURCE-FILES IN THIS SCRIPT.
    
    # The output of "!echo"-function works here only in debug-mode
    # verbosity when "makensis" is launching with /V4 (all output),
    # so we have to use the "!system"-function here !
    # NSIS is awfull !!
    !system '@echo ### Debug ### NAME is............: ${NAME}'
    !system '@echo ### Debug ### TOP_SRCDIR is......: ${TOP_SRCDIR}'
    !system '@echo ### Debug ### VERSION is.........: ${VERSION}'
    !system '@echo ### Debug ### PROD_VERSION is....: ${PROD_VERSION}'
    !system '@echo ### Debug ### INST_DIR is........: ${INST_DIR}'
    !system '@echo ### Debug ### INST6_DIR is.......: ${INST6_DIR}'
    !system '@echo ### Debug ### W32_SRCDIR is......: ${W32_SRCDIR}'
    !system '@echo ### Debug ### BUILD_DIR is.......: ${BUILD_DIR}'
    !system '@echo ### Debug ### BUILD_ISODATE is...: ${BUILD_ISODATE}'
    !system '@echo ### Debug ### BUILD_DATESTR is...: ${BUILD_DATESTR}'
    
    !system '@echo ### Debug ### VSNFD_CFG_SOURCE is....: ${VSNFD_CFG_SOURCE}'
    !system '@echo ### Debug ### VSNFD_CFG_TARGET is....: ${VSNFD_CFG_TARGET}'
    
    # MODIFIED FOR VS-NFD CONFIGURATION BY vitusb in 20250106 ---  END  ---
    
    #!cd "${INST_DIR}"              # We cannot cd into the ${INST_DIR},
                                    # because we will get a
                                    # "cannot-create"-error below, when
                                    # writing "inst-options.ini" during
                                    # install.
    !addincludedir "${W32_SRCDIR}"
    !addplugindir "${BUILD_DIR}"
    
    # The package name and version.  PRETTY_PACKAGE is a user visible name
    # only while PACKAGE is useful for filenames etc.  PROD_VERSION is the
    # product version and needs to be in the format "MAJ.MIN.MIC.BUILDNR".
    !define PACKAGE "gnupg"
    !define PACKAGE_SHORT "gnupg"
    !define PRETTY_PACKAGE "GNU Privacy Guard"
    !define PRETTY_PACKAGE_SHORT "GnuPG"
    !define COMPANY "The GnuPG Project"
    !define COPYRIGHT "Copyright (C) 2017 The GnuPG Project"
    !define DESCRIPTION "GnuPG: The GNU Privacy Guard for Windows (VS-NfD)"
    
    !define INSTALL_DIR "GnuPG"
    
    !define WELCOME_TITLE_ENGLISH \
     "Welcome to the installation of GnuPG (VS-NfD)"
    
    !define WELCOME_TITLE_GERMAN \
     "Willkommen bei der Installation von GnuPG (VS-NfD)"
    
    !define ABOUT_ENGLISH \
     "GnuPG is the mostly used software for mail and data encryption. \
      GnuPG can be used to encrypt data and to create digital signatures. \
      GnuPG includes an advanced key management facility and is compliant \
      with the OpenPGP Internet standard as described in RFC-4880. \
      \r\n\r\n$_CLICK \
      \r\n\r\nThis is GnuPG version ${VERSION} with a VS-NfD \
      conformant configuration. The German Federal Office for Information \
      Security (BSI) approved GnuPG VS-Desktop® for transmitting confidential \
      documents classified as VS-NfD (a German classification level). This is \
      GnuPG with the activated configuration behind this security-concept.\r\n\r\n\
      File version: ${PROD_VERSION}\r\n\
      Release date: ${BUILD_ISODATE}"
    !define ABOUT_GERMAN \
     "GnuPG is die am häufigsten verwendete Software zur Mail- \
     und Datenverschlüsselung.\
       \r\n\r\n$_CLICK \
       \r\n\r\nDies ist GnuPG Version ${VERSION} mit einer \
       VS-NfD konformen Konfiguration. Das Bundesamt für Sicherheit in der \
       Informationstechnik (BSI) hat GnuPG VS-Desktop® für die Übermittlung \
       vertraulicher Dokumente der Geheimhaltungsstufe VS-NfD freigegeben. \
       Hier sehen Sie GnuPG mit der aktivierten Konfiguration hinter diesem \
       Sicherheitskonzept.\r\n\r\n\
       Dateiversion: ${PROD_VERSION}\r\n\
       Releasedatum: ${BUILD_ISODATE}"
    
    
    # The copyright license of the package.  Define only one of these.
    !define LICENSE_GPL
    
    # Select the best compression algorithm available.  The dictionary
    # size is the default (8 MB).
    !ifndef SOURCES
    SetCompressor lzma
    # SetCompressorDictSize 8
    !endif
    
    # We use the modern UI.
    !include "MUI.nsh"
    
    # Some helper some
    !include "LogicLib.nsh"
    !include "x64.nsh"
    
    # We support user mode installation but prefer system wide
    !define MULTIUSER_EXECUTIONLEVEL Highest
    !define MULTIUSER_MUI
    !define MULTIUSER_INSTALLMODE_COMMANDLINE
    !define MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_KEY "Software\${PACKAGE_SHORT}"
    !define MULTIUSER_INSTALLMODE_DEFAULT_REGISTRY_VALUENAME ""
    !define MULTIUSER_INSTALLMODE_INSTDIR_REGISTRY_KEY "Software\${PACKAGE_SHORT}"
    !define MULTIUSER_INSTALLMODE_INSTDIR_REGISTRY_VALUENAME "Install Directory"
    !define MULTIUSER_INSTALLMODE_INSTDIR "${PACKAGE_SHORT}"
    !include "MultiUser.nsh"
    
    # Set the package name.  Note that this name should not be suffixed
    # with the version because this would get displayed in the start menu.
    # Given that a slash in the name troubles Windows startmenu creation
    # we set the Startmenu explicit below.
    Name "${PRETTY_PACKAGE}"
    
    # Set the output filename.
    OutFile "${NAME}-${VERSION}_${BUILD_DATESTR}.exe"
    
    #Fixme: Do we need a logo?
    #Icon "${TOP_SRCDIR}\doc\logo\gnupg-logo-icon.ico"
    #UninstallIcon "${TOP_SRCDIR}\doc\logo\gnupg-logo-icon.ico"
    
    # Icon of the installer-exe (based on MUI.nsh / NOT MUI2)
    # Must be done AFTER include-statement of "MUI.nsh"
    !define MUI_ICON "${BUILD_DIR}\gnupg-logo-icon.ico"
    !define MUI_UNICON "${BUILD_DIR}\gnupg-logo-icon.ico"
    
    # Set the installation directory.
    !ifndef INSTALL_DIR
    !define INSTALL_DIR "GnuPG"
    !endif
    InstallDir "$PROGRAMFILES\${INSTALL_DIR}"
    
    # Add version information to the file properties.
    VIProductVersion "${PROD_VERSION}"
    VIAddVersionKey "ProductName" "${PRETTY_PACKAGE_SHORT} (${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., 51 Franklin Street, Fifth Floor, Boston,  \
        MA 02110-1301, USA"
    VIAddVersionKey "CompanyName" "${COMPANY}"
    VIAddVersionKey "LegalTrademarks" ""
    VIAddVersionKey "LegalCopyright" "${COPYRIGHT}"
    VIAddVersionKey "FileDescription" "${DESCRIPTION}"
    VIAddVersionKey "FileVersion" "${PROD_VERSION}"
    
    # Interface Settings
    
    # !define MUI_ABORTWARNING
    !define MUI_FINISHPAGE_NOAUTOCLOSE
    !define MUI_UNFINISHPAGE_NOAUTOCLOSE
    
    !define MUI_HEADERIMAGE
    !define MUI_HEADERIMAGE_BITMAP "${W32_SRCDIR}\gnupg-logo-150x57.bmp"
    !define MUI_WELCOMEFINISHPAGE_BITMAP "${W32_SRCDIR}\gnupg-logo-164x314.bmp"
    
    # Remember the installer language
    !define MUI_LANGDLL_REGISTRY_ROOT "HKCU"
    !define MUI_LANGDLL_REGISTRY_KEY "Software\GnuPG"
    !define MUI_LANGDLL_REGISTRY_VALUENAME "Installer Language"
    
    #
    # The list of wizard pages.
    #
    !define MUI_WELCOMEPAGE_TITLE "$(T_WelcomeTitle)"
    !define MUI_WELCOMEPAGE_TEXT  "$(T_About)"
    !insertmacro MUI_PAGE_WELCOME
    
    !define MUI_LICENSEPAGE_BUTTON "$(^NextBtn)"
    !define MUI_PAGE_HEADER_SUBTEXT "$(T_GPLHeader)"
    !define MUI_LICENSEPAGE_TEXT_BOTTOM "$(T_GPLShort)"
    !insertmacro MUI_PAGE_LICENSE "${TOP_SRCDIR}\COPYING"
    
    !define MUI_PAGE_CUSTOMFUNCTION_SHOW PrintNonAdminWarning
    !define MUI_PAGE_CUSTOMFUNCTION_LEAVE CheckExistingVersion
    !insertmacro MUI_PAGE_COMPONENTS
    
    # We don't have MUI_PAGE_DIRECTORY
    
    !ifdef WITH_GUI
    
    Page custom CustomPageOptions
    
    Var STARTMENU_FOLDER
    
    !define MUI_PAGE_CUSTOMFUNCTION_PRE CheckIfStartMenuWanted
    !define MUI_STARTMENUPAGE_NODISABLE
    !define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX"
    !define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\GnuPG"
    !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
    # We need to set the Startmenu name explicitly because a slash in the
    # name is not possible.
    !define MUI_STARTMENUPAGE_DEFAULTFOLDER "GnuPG"
    
    !insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
    
    !endif
    
    !define MUI_PAGE_CUSTOMFUNCTION_PRE PrintCloseOtherApps
    !insertmacro MUI_PAGE_INSTFILES
    
    #!define MUI_PAGE_CUSTOMFUNCTION_PRE ShowFinalWarnings
    !define MUI_FINISHPAGE_SHOWREADME "README.txt"
    !define MUI_FINISHPAGE_SHOWREADME_TEXT "$(T_ShowReadme)"
    #!define MUI_FINISHPAGE_RUN
    #!define MUI_FINISHPAGE_RUN_FUNCTION RunOnFinish
    #!define MUI_FINISHPAGE_RUN_TEXT "$(T_RunKeyManager)"
    #!define MUI_FINISHPAGE_RUN_NOTCHECKED
    !define MUI_FINISHPAGE_LINK "$(T_MoreInfo)"
    !define MUI_FINISHPAGE_LINK_LOCATION "$(T_MoreInfoURL)"
    !insertmacro MUI_PAGE_FINISH
    
    
    # Uninstaller pages.
    
    !insertmacro MUI_UNPAGE_CONFIRM
    !insertmacro MUI_UNPAGE_INSTFILES
    
    
    #Page license
    #Page components
    #Page directory
    #Page instfiles
    #UninstPage uninstConfirm
    #UninstPage instfiles
    
    
    # Language support.  This has to be done after defining the pages, but
    # before defining the translation strings.  Confusing.
    
    !insertmacro MUI_LANGUAGE "English"
    !insertmacro MUI_LANGUAGE "German"
    
    !insertmacro MUI_RESERVEFILE_LANGDLL
    !insertmacro MUI_RESERVEFILE_INSTALLOPTIONS
    ReserveFile "${BUILD_DIR}\g4wihelp.dll"
    ReserveFile "${W32_SRCDIR}\gnupg-logo-150x57.bmp"
    ReserveFile "${W32_SRCDIR}\gnupg-logo-164x314.bmp"
    ReserveFile "${TOP_SRCDIR}\COPYING"
    ReserveFile "inst-options.ini"      # Must be used here without PATH,
                                        # otherwise we will get a
                                        # "cannot-create"-error in the
                                        # installer under Windows.
    
    # Language support
    
    LangString T_LangCode ${LANG_ENGLISH} "en"
    LangString T_LangCode ${LANG_GERMAN}  "de"
    
    
    # The WelcomeTitle is displayed on the first page.
    LangString T_WelcomeTitle ${LANG_ENGLISH} "${WELCOME_TITLE_ENGLISH}"
    LangString T_WelcomeTitle ${LANG_GERMAN} "${WELCOME_TITLE_GERMAN}"
    
    # The About string as displayed on the first page.
    LangString T_About ${LANG_ENGLISH} "${ABOUT_ENGLISH}"
    LangString T_About ${LANG_GERMAN} "${ABOUT_GERMAN}"
    
    # Startup page
    LangString T_GPLHeader ${LANG_ENGLISH} \
      "This software is licensed under the terms of the GNU General Public \
       License (GNU GPL)."
    LangString T_GPLHeader ${LANG_GERMAN} \
      "Diese Software ist unter der GNU General Public License \
       (GNU GPL) lizensiert."
    
    LangString T_GPLShort ${LANG_ENGLISH} \
      "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."
    LangString T_GPLShort ${LANG_GERMAN} \
      "In aller Kürze: Sie haben das Recht, die Software zu jedem Zweck \
       einzusetzen.  Sie können die Software weitergeben, sofern Sie dem \
       Empfänger dieselben Rechte einräumen, die auch Sie erhalten haben."
    
    LangString T_RunKeyManager ${LANG_ENGLISH} \
       "Run the key manager"
    LangString T_RunKeyManager ${LANG_GERMAN} \
       "Die Schlüsselverwaltung aufrufen"
    
    LangString T_MoreInfo ${LANG_ENGLISH} \
       "Click here to see how to help the GnuPG Project"
    LangString T_MoreInfo ${LANG_GERMAN} \
       "Hier klicken um dem GnuPG Projekt zu zu helfen"
    LangString T_MoreInfoURL ${LANG_ENGLISH} "https://gnupg.org/donate"
    LangString T_MoreInfoURL ${LANG_GERMAN}  "https://gnupg.org/donate"
    
    LangString T_ShowReadme ${LANG_ENGLISH} \
       "Show the README file"
    LangString T_ShowReadme ${LANG_GERMAN} \
       "Die README Datei anzeigen"
    
    LangString T_NoKeyManager ${LANG_ENGLISH} \
       "No key manager has been installed, thus we can't run one now."
    LangString T_NoKeyManager ${LANG_GERMAN} \
       "Es wurde keine Schlüsselverwaltung installiert. \
        Deswegen kann sie jetzt auch nicht ausgeführt werden."
    
    # Functions
    
    # Custom functions and macros for this installer.
    LangString T_AlreadyRunning ${LANG_ENGLISH} \
       "An instance of this installer is already running."
    LangString T_AlreadyRunning ${LANG_GERMAN} \
       "Ein Exemplar dieses Installers läuft bereits."
    
    Function G4wRunOnce
      Push $R0
      StrCpy $R0 "gnupg"
      g4wihelp::runonce
      StrCmp $R0 0 +3
         MessageBox MB_OK $(T_AlreadyRunning)
         Abort
      Pop $R0
    FunctionEnd
    
    #
    # Control function for the Custom page to select special
    # install options.
    #
    Function CustomPageOptions
      !insertmacro MUI_HEADER_TEXT "$(T_InstallOptions)" "$(T_InstallOptLinks)"
    
      # Note, that the default selection is done in the ini file
      !insertmacro MUI_INSTALLOPTIONS_WRITE "inst-options.ini" \
    	"Field 1" "Text"  "$(T_InstOptLabelA)"
      !insertmacro MUI_INSTALLOPTIONS_WRITE "inst-options.ini" \
    	"Field 2" "Text"  "$(T_InstOptFieldA)"
      !insertmacro MUI_INSTALLOPTIONS_WRITE "inst-options.ini" \
    	"Field 3" "Text"  "$(T_InstOptFieldB)"
      !insertmacro MUI_INSTALLOPTIONS_WRITE "inst-options.ini" \
    	"Field 4" "Text"  "$(T_InstOptFieldC)"
      !insertmacro MUI_INSTALLOPTIONS_WRITE "inst-options.ini" \
    	"Field 5" "Text"  "$(T_InstOptLabelB)"
    
      !insertmacro MUI_INSTALLOPTIONS_DISPLAY "inst-options.ini"
    FunctionEnd
    
    # Check whether GnuPG has already been installed.  This is called as
    # a leave function from the components page.  A call to abort will get
    # back to the components selection.
    Function CheckExistingVersion
      ClearErrors
      FileOpen $0 "$INSTDIR\VERSION" r
      IfErrors nexttest
      FileRead $0 $R0
      FileRead $0 $R1
      FileClose $0
    
      Push $R1
      Call TrimNewLines
      Pop $R1
    
      MessageBox MB_YESNO "$(T_FoundExistingVersion)" IDYES leave
      Abort
    
     nexttest:
      ClearErrors
      ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\GnuPG" "DisplayVersion"
      IfErrors leave 0
         MessageBox MB_YESNO "$(T_FoundExistingVersionB)" IDYES leave
         Abort
    
     leave:
    FunctionEnd
    
    
    
    # PrintNonAdminWarning
    
    # Check whether the current user is in the Administrator group or an
    # OS version without the need for an Administrator is in use.  Print a
    # diagnostic if this is not the case and abort installation.
    Function PrintNonAdminWarning
      ClearErrors
      UserInfo::GetName
      IfErrors leave
      Pop $0
      UserInfo::GetAccountType
      Pop $1
      StrCmp $1 "Admin" leave +1
      MessageBox MB_YESNO "$(T_AdminWanted)" IDNO exit
      goto leave
     exit:
        Quit
     leave:
    FunctionEnd
    
    
    # Check whether the start menu is actually wanted.
    
    Function CheckIfStartMenuWanted
      !insertmacro MUI_INSTALLOPTIONS_READ $R0 "inst-options.ini" \
    	"Field 2" "State"
      IntCmp $R0 1 +2
        Abort
    FunctionEnd
    
    
    # Check whether this is a reinstall and popup a message box to explain
    # that it is better to close other apps before continuing
    Function PrintCloseOtherApps
        IfFileExists $INSTDIR\bin\gpg.exe print_warning
        IfFileExists $INSTDIR\bin\gpa.exe print_warning
        Return
       print_warning:
        MessageBox MB_OK|MB_ICONEXCLAMATION "$(T_CloseOtherApps)"
    
    FunctionEnd
    
    # Called right before the final page to show more warnings.
    #Function ShowFinalWarnings
    #   leave:
    #FunctionEnd
    
    #-----------------------------------------------
    # Strings pertaining to the install options page
    #-----------------------------------------------
    
    # Installation options title
    LangString T_InstallOptions ${LANG_ENGLISH} "Install Options"
    LangString T_InstallOptions ${LANG_GERMAN}  "Installationsoptionen"
    
    # Installation options subtitle 1
    LangString T_InstallOptLinks ${LANG_ENGLISH} "Start links"
    LangString T_InstallOptLinks ${LANG_GERMAN}  "Startlinks"
    
    LangString T_InstOptLabelA  ${LANG_ENGLISH} \
         "Please select where GnuPG shall install links:"
    LangString T_InstOptLabelA  ${LANG_GERMAN} \
         "Bitte wählen Sie, welche Verknüpfungen angelegt werden sollen:"
    
    LangString T_InstOptLabelB  ${LANG_ENGLISH} \
         "(Only programs will be linked into the quick launch bar.)"
    LangString T_InstOptLabelB  ${LANG_GERMAN} \
         "(In die Schnellstartleiste werden nur Verknüpfungen für \
          Programme angelegt.) "
    
    LangString T_InstOptFieldA  ${LANG_ENGLISH} \
         "Start Menu"
    LangString T_InstOptFieldA  ${LANG_GERMAN} \
         "Startmenü"
    
    LangString T_InstOptFieldB  ${LANG_ENGLISH} \
         "Desktop"
    LangString T_InstOptFieldB  ${LANG_GERMAN} \
         "Arbeitsfläche"
    
    LangString T_InstOptFieldC  ${LANG_ENGLISH} \
         "Quick Launch Bar"
    LangString T_InstOptFieldC  ${LANG_GERMAN} \
         "Schnellstartleiste"
    
    #------------------------------------------------
    # String pertaining to the existing version check
    #------------------------------------------------
    LangString T_FoundExistingVersion ${LANG_ENGLISH} \
         "Version $R1 has already been installed.  $\r$\n\
          Do you want to overwrite it with version ${VERSION}?"
    LangString T_FoundExistingVersion ${LANG_GERMAN} \
         "Version $R1 ist hier bereits installiert. $\r$\n\
          Möchten Sie diese mit Version ${VERSION} überschreiben? $\r$\n\
           $\r$\n\
          (Sie können in jedem Fall mit JA antworten, falls es sich um \
           eine neuere oder dieselbe Version handelt.)"
    LangString T_FoundExistingVersionB ${LANG_ENGLISH} \
         "A version of GnuPG has already been installed on the system. \
           $\r$\n\
           $\r$\n\
          Do you want to continue installing GnuPG?"
    LangString T_FoundExistingVersionB ${LANG_GERMAN} \
         "Eine Version von GnuPG ist hier bereits installiert. \
            $\r$\n\
            $\r$\n\
          Möchten die die Installation von GnuPG fortführen?"
    
    
    
    # From Function PrintNonAdminWarning
    LangString T_AdminWanted ${LANG_ENGLISH} \
       "Warning: It is recommended to install GnuPG system-wide with \
        administrator rights. \
          $\r$\n\
          $\r$\n\
        Do you want to continue installing GnuPG without administrator rights?"
    LangString T_AdminWanted ${LANG_GERMAN} \
       "Achtung: Es wird empfohlen GnuPG systemweit mit \
        Administratorrechten zu installieren. \
          $\r$\n\
          $\r$\n\
        Möchten die die Installation von GnuPG ohne Administratorrechte fortführen?"
    
    # From Function PrintCloseOtherApps
    LangString T_CloseOtherApps ${LANG_ENGLISH} \
       "Please make sure that other applications are not running. \
        GnuPG will try to install anyway but a reboot may be required."
    LangString T_CloseOtherApps ${LANG_GERMAN} \
       "Bitte stellen Sie sicher, daß alle anderen Anwendugen geschlossen \
        sind.  GnuPG wird auf jeden Fall versuchen, eine Installation \
        durchzuführen; es ist dann aber u.U. notwendig, das System neu zu starten."
    
    
    # TrimNewlines  - taken from the NSIS reference
    # input, top of stack  (e.g. whatever$\r$\n)
    # output, top of stack (replaces, with e.g. whatever)
    # modifies no other variables.
    Function TrimNewlines
       Exch $R0
       Push $R1
       Push $R2
       StrCpy $R1 0
    
     loop:
       IntOp $R1 $R1 - 1
       StrCpy $R2 $R0 1 $R1
       StrCmp $R2 "$\r" loop
       StrCmp $R2 "$\n" loop
       IntOp $R1 $R1 + 1
       IntCmp $R1 0 no_trim_needed
       StrCpy $R0 $R0 $R1
    
     no_trim_needed:
       Pop $R2
       Pop $R1
       Exch $R0
    FunctionEnd
    
    
    # AddToPath - Adds the given dir to the search path.
    #        Input - head of the stack
    Function AddToPath
      ClearErrors
      UserInfo::GetName
      IfErrors add_admin
      Pop $0
      UserInfo::GetAccountType
      Pop $1
      StrCmp $1 "Admin" add_admin add_user
    
    add_admin:
      Exch $0
      g4wihelp::path_add "$0" "0"
      goto add_done
    add_user:
      Exch $0
      g4wihelp::path_add "$0" "1"
      goto add_done
    
    add_done:
      StrCmp $R5 "0" add_to_path_done
      SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
      add_to_path_done:
      Pop $0
    FunctionEnd
    
    
    # RemoveFromPath - Remove a given dir from the path
    #     Input: head of the stack
    Function un.RemoveFromPath
      ClearErrors
      UserInfo::GetName
      IfErrors remove_admin
      Pop $0
      UserInfo::GetAccountType
      Pop $1
      StrCmp $1 "Admin" remove_admin remove_user
    
    remove_admin:
      Exch $0
      g4wihelp::path_remove "$0" "0"
      goto remove_done
    remove_user:
      Exch $0
      g4wihelp::path_remove "$0" "1"
      goto remove_done
    
    remove_done:
      StrCmp $R5 "0" remove_from_path_done
      SendMessage ${HWND_BROADCAST} ${WM_WININICHANGE} 0 "STR:Environment" /TIMEOUT=5000
      remove_from_path_done:
      Pop $0
    FunctionEnd
    
    
    #
    # Define the installer sections.
    #
    
    Section "-gnupginst"
      SetOutPath "$INSTDIR"
    
      File "${BUILD_DIR}\README.txt"
    
      # Write a version file.
      FileOpen $0 "$INSTDIR\VERSION" w
      FileWrite $0 "${PACKAGE}$\r$\n"
      FileWrite $0 "${VERSION}$\r$\n"
      FileClose $0
    
      WriteRegStr SHCTX "Software\GnuPG" "Install Directory" $INSTDIR
    
      # If we are reinstalling, try to kill a possible running gpa using
      # an already installed gpa.
      ifFileExists "$INSTDIR\bin\launch-gpa.exe"  0 no_uiserver
        nsExec::ExecToLog '"$INSTDIR\bin\launch-gpa" "--stop-server"'
    
      no_uiserver:
    
      # If we are reinstalling, try to kill a possible running agent using
      # an already installed gpgconf.
    
      ifFileExists "$INSTDIR\bin\gpgconf.exe"  0 no_gpgconf
        nsExec::ExecToLog '"$INSTDIR\bin\gpgconf" "--kill" "dirmngr"'
        nsExec::ExecToLog '"$INSTDIR\bin\gpgconf" "--kill" "gpg-agent"'
    
      no_gpgconf:
    
      # Add the bin directory to the PATH
      Push "$INSTDIR\bin"
      Call AddToPath
      DetailPrint "Added $INSTDIR\bin to PATH"
    
      # Install global central config
      # ${VSNFD_CFG_TARGET} is: "$COMMONPROGRAMDATA\GNU"
      # ${VSNFD_CFG_SOURCE} is: "${My_TOP_SRCDIR}\PLAY\vs-nfd-config"
      SetOutPath "${VSNFD_CFG_TARGET}"
      SetOverwrite on
      File "${VSNFD_CFG_SOURCE}\GnuPG-VS-NfD-Config.txt"
      File "${VSNFD_CFG_SOURCE}\Icon.ico"
      SetOverwrite lastused
    
      ifFileExists "${VSNFD_CFG_TARGET}\etc\*.*"  0 no_etc
        RMDir /r "${VSNFD_CFG_TARGET}\etc"
    
      no_etc:
    
      SetOutPath "${VSNFD_CFG_TARGET}"
      SetOverwrite on
      File /r "${VSNFD_CFG_SOURCE}\etc"
      SetOverwrite lastused
    
    
    Veit Berwig's avatar
    Veit Berwig committed
      #---------------------------------------------------
      # Create the menu entries for VSD-Docs
      #---------------------------------------------------
      CreateShortCut "$SMPROGRAMS\GnuPG Doc.lnk" "${VSNFD_CFG_TARGET}\etc\gnupg\doc" "" "${VSNFD_CFG_TARGET}\Icon.ico"
    
    
    Veit Berwig's avatar
    Veit Berwig committed
    SectionEnd
    
    LangString DESC_Menu_gnupg_readme ${LANG_ENGLISH} \
       "General information on GnuPG"
    LangString DESC_Menu_gnupg_readme ${LANG_GERMAN} \
       "Allgemeine Informationen zu GnuPG"
    
    
    Section "GnuPG" SEC_gnupg
      SectionIn RO
    
      SetOutPath "$INSTDIR\bin"
      File "${INST_DIR}\bin\gpg.exe"
      File "${INST_DIR}\bin\gpgv.exe"
      File "${INST_DIR}\bin\gpgsm.exe"
      File "${INST_DIR}\bin\gpgconf.exe"
      File "${INST_DIR}\bin\gpg-connect-agent.exe"
      File "${INST_DIR}\bin\gpgtar.exe"
      File "${INST_DIR}\libexec\dirmngr_ldap.exe"
      File "${INST_DIR}\libexec\gpg-preset-passphrase.exe"
      File "${INST_DIR}\libexec\gpg-check-pattern.exe"
      File "${INST_DIR}\libexec\gpg-wks-client.exe"
    
      ClearErrors
      SetOverwrite try
      File "${INST_DIR}\bin\gpg-agent.exe"
      SetOverwrite lastused
      ifErrors 0 +3
          File /oname=gpg-agent.exe.tmp "${INST_DIR}\bin\gpg-agent.exe"
          Rename /REBOOTOK gpg-agent.exe.tmp gpg-agent.exe
    
      ClearErrors
      SetOverwrite try
      File "${INST_DIR}\bin\dirmngr.exe"
      SetOverwrite lastused
      ifErrors 0 +3
          File /oname=dirmngr.exe.tmp "${INST_DIR}\bin\dirmngr.exe"
          Rename /REBOOTOK dirmngr.exe.tmp dirmngr.exe
    
      ClearErrors
      SetOverwrite try
      File "${INST_DIR}\libexec\scdaemon.exe"
      SetOverwrite lastused
      ifErrors 0 +3
          File /oname=scdaemon.exe.tmp "${INST_DIR}\libexec\scdaemon.exe"
          Rename /REBOOTOK scdaemon.exe.tmp scdaemon.exe
    
      SetOutPath "$INSTDIR\share\gnupg"
      File "${INST_DIR}\share\gnupg\distsigkey.gpg"
      File "${INST_DIR}\share\gnupg\sks-keyservers.netCA.pem"
    
      SetOutPath "$INSTDIR\share\doc\gnupg\examples"
      File "${INST_DIR}\share\doc\gnupg\examples\Automatic.prf"
      File "${INST_DIR}\share\doc\gnupg\examples\Brainpool256.prf"
      File "${INST_DIR}\share\doc\gnupg\examples\Brainpool384.prf"
      File "${INST_DIR}\share\doc\gnupg\examples\Brainpool512.prf"
      File "${INST_DIR}\share\doc\gnupg\examples\Curve25519.prf"
      File "${INST_DIR}\share\doc\gnupg\examples\Curve448.prf"
      File "${INST_DIR}\share\doc\gnupg\examples\Curve-secp256k1.prf"
      File "${INST_DIR}\share\doc\gnupg\examples\pwpattern.list"
      File "${INST_DIR}\share\doc\gnupg\examples\RSA-4096.prf"
      File "${INST_DIR}\share\doc\gnupg\examples\VS-NfD.prf"
    
      SetOutPath "$INSTDIR\share\locale\ca\LC_MESSAGES"
      File "${INST_DIR}\share\locale\ca\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\cs\LC_MESSAGES"
      File "${INST_DIR}\share\locale\cs\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\da\LC_MESSAGES"
      File "${INST_DIR}\share\locale\da\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\de\LC_MESSAGES"
      File "${INST_DIR}\share\locale\de\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\el\LC_MESSAGES"
      File "${INST_DIR}\share\locale\el\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\en@boldquot\LC_MESSAGES"
      File "${INST_DIR}\share\locale\en@boldquot\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\en@quot\LC_MESSAGES"
      File "${INST_DIR}\share\locale\en@quot\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\eo\LC_MESSAGES"
      File "${INST_DIR}\share\locale\eo\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\es\LC_MESSAGES"
      File "${INST_DIR}\share\locale\es\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\et\LC_MESSAGES"
      File "${INST_DIR}\share\locale\et\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\fi\LC_MESSAGES"
      File "${INST_DIR}\share\locale\fi\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\fr\LC_MESSAGES"
      File "${INST_DIR}\share\locale\fr\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\gl\LC_MESSAGES"
      File "${INST_DIR}\share\locale\gl\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\hu\LC_MESSAGES"
      File "${INST_DIR}\share\locale\hu\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\id\LC_MESSAGES"
      File "${INST_DIR}\share\locale\id\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\it\LC_MESSAGES"
      File "${INST_DIR}\share\locale\it\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\ja\LC_MESSAGES"
      File "${INST_DIR}\share\locale\ja\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\nb\LC_MESSAGES"
      File "${INST_DIR}\share\locale\nb\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\pl\LC_MESSAGES"
      File "${INST_DIR}\share\locale\pl\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\pt\LC_MESSAGES"
      File "${INST_DIR}\share\locale\pt\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\ro\LC_MESSAGES"
      File "${INST_DIR}\share\locale\ro\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\ru\LC_MESSAGES"
      File "${INST_DIR}\share\locale\ru\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\sk\LC_MESSAGES"
      File "${INST_DIR}\share\locale\sk\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\sv\LC_MESSAGES"
      File "${INST_DIR}\share\locale\sv\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\tr\LC_MESSAGES"
      File "${INST_DIR}\share\locale\tr\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\uk\LC_MESSAGES"
      File "${INST_DIR}\share\locale\uk\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\zh_CN\LC_MESSAGES"
      File "${INST_DIR}\share\locale\zh_CN\LC_MESSAGES\gnupg2.mo"
      SetOutPath "$INSTDIR\share\locale\zh_TW\LC_MESSAGES"
      File "${INST_DIR}\share\locale\zh_TW\LC_MESSAGES\gnupg2.mo"
    SectionEnd
    
    
    LangString DESC_SEC_gnupg ${LANG_ENGLISH} \
       "The GnuPG Core is the actual encrypt core and a set of command \
        line utilities."
    LangString DESC_SEC_gnupg ${LANG_GERMAN} \
       "Der GnuPG Core ist, wie der Name schon sagt, der Kernbestandteil \
        dieser Software.  Der GnuPG Core stellt die eigentliche \
        Verschlüsselung sowie die Verwaltung der Schlüssel bereit."
    
    LangString DESC_Menu_gnupg_manual ${LANG_ENGLISH} \
       "Show the manual for the GnuPG Core"
    LangString DESC_Menu_gnupg_manual ${LANG_GERMAN} \
       "Das Handbuch zum GnuPG Kern anzeigen"
    
    Section "-libgpg-error" SEC_libgpg_error
      SetOutPath "$INSTDIR\bin"
      File "${INST_DIR}\bin\libgpg-error-0.dll"
      SetOutPath "$INSTDIR\lib"
      File /oname=libgpg-error.imp "${INST_DIR}\lib\libgpg-error.dll.a"
      SetOutPath "$INSTDIR\include"
      File "${INST_DIR}\include\gpg-error.h"
      SetOutPath "$INSTDIR\share\locale\cs\LC_MESSAGES"
      File "${INST_DIR}\share\locale\cs\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\da\LC_MESSAGES"
      File "${INST_DIR}\share\locale\da\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\de\LC_MESSAGES"
      File "${INST_DIR}\share\locale\de\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\eo\LC_MESSAGES"
      File "${INST_DIR}\share\locale\eo\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\es\LC_MESSAGES"
      File "${INST_DIR}\share\locale\es\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\fr\LC_MESSAGES"
      File "${INST_DIR}\share\locale\fr\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\hu\LC_MESSAGES"
      File "${INST_DIR}\share\locale\hu\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\it\LC_MESSAGES"
      File "${INST_DIR}\share\locale\it\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\ja\LC_MESSAGES"
      File "${INST_DIR}\share\locale\ja\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\nl\LC_MESSAGES"
      File "${INST_DIR}\share\locale\nl\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\pl\LC_MESSAGES"
      File "${INST_DIR}\share\locale\pl\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\pt\LC_MESSAGES"
      File "${INST_DIR}\share\locale\pt\LC_MESSAGES\libgpg-error.mo"
      SetOutPath "$INSTDIR\share\locale\ro\LC_MESSAGES"
      File "${INST_DIR}\share\locale\ro\LC_MESSAGES\libgpg-error.mo"