X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftrunk%2Fwin32inst.nsi.in;h=172cfbb2dcdce0fd723239cead4dbcaa284cbacd;hb=9459638ad6797b8139f1e9f0715c96076dbf0890;hp=1d90e816bfdf22510a277b69ace609f48615ecbd;hpb=d467cfe3ed890ef40b9a58d098cec5302f53cad4;p=synfig.git diff --git a/synfig-core/trunk/win32inst.nsi.in b/synfig-core/trunk/win32inst.nsi.in index 1d90e81..172cfbb 100644 --- a/synfig-core/trunk/win32inst.nsi.in +++ b/synfig-core/trunk/win32inst.nsi.in @@ -12,7 +12,7 @@ ; The name of the installer Name "@PACKAGE_NAME@ @PACKAGE_VERSION@" -!define PRODUCT_WEB_SITE "http://www.synfig.com/" +!define PRODUCT_WEB_SITE "http://synfig.org/" ; The file to write OutFile "@PACKAGE_TARNAME@-@PACKAGE_VERSION@.exe" @@ -20,10 +20,6 @@ OutFile "@PACKAGE_TARNAME@-@PACKAGE_VERSION@.exe" ; The default installation directory InstallDir $PROGRAMFILES\@PACKAGE_TARNAME@ -; Registry key to check for directory (so if you install again, it will -; overwrite the old one automatically) -InstallDirRegKey HKLM "Software\Voria_@PACKAGE_TARNAME@" "Install_Dir" - !define VERSION_MAJ "@VERSION_MAJ@" !define VERSION_MIN "@VERSION_MIN@" !define VERSION_REV "@VERSION_REV@" @@ -71,18 +67,12 @@ Section "" ; Set output path to the installation directory. SetOutPath $INSTDIR\bin - File "C:\mingw\bin\mingwm10.dll" - File "C:\GTK\bin\libfreetype-6.dll" - File "C:\GTK\bin\libxml2.dll" - ; Put file there CreateDirectory "$INSTDIR\etc" Delete $INSTDIR\etc\synfig_modules.cfg ; Write the installation path into the registry - ; WriteRegStr HKLM "Software\Voria_@PACKAGE_TARNAME@" "Install_Dir" "$INSTDIR" - WriteRegStr HKLM "${SYNFIG_REG_KEY}" "Path" "$INSTDIR" WriteRegStr HKLM "${SYNFIG_REG_KEY}" "Version" "@PACKAGE_VERSION@" @@ -96,19 +86,10 @@ Section "" SectionEnd - -; Optional section (can be disabled by the user) -;Section "Start Menu Shortcuts" - -; CreateDirectory "$SMPROGRAMS\Example2" -; CreateShortCut "$SMPROGRAMS\Example2\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0 -; CreateShortCut "$SMPROGRAMS\Example2\Example2 (MakeNSISW).lnk" "$INSTDIR\makensisw.exe" "" "$INSTDIR\makensisw.exe" 0 - -;SectionEnd - ; Optional section (can be disabled by the user) Section "Start Menu Shortcuts" + SetShellVarContext All CreateDirectory "$SMPROGRAMS\Voria" CreateShortCut "$SMPROGRAMS\Voria\Uninstall Synfig Core.lnk" "$INSTDIR\uninstall-@PACKAGE_TARNAME@.exe" "" "$INSTDIR\uninstall-@PACKAGE_TARNAME@.exe" 0 @@ -124,21 +105,22 @@ Section "Uninstall" ; Remove registry keys DeleteRegKey HKLM "${SYNFIG_REG_KEY}" DeleteRegKey HKLM "${SYNFIG_UNINSTALL_KEY}" - ; DeleteRegKey HKLM "Software\Voria_@PACKAGE_TARNAME@" ; Remove files and uninstaller - ;Delete $INSTDIR\synfig.exe Delete $INSTDIR\uninstall-@PACKAGE_TARNAME@.exe Delete $INSTDIR\etc\synfig_modules.cfg - RMDir $INSTDIR\bin - RMDir $INSTDIR\etc + RMDir "$INSTDIR\bin" + RMDir "$INSTDIR\etc" + RMDir "$INSTDIR" - ; Remove shortcuts, if any +SectionEnd + +Section "un.Start Menu Shortcuts" + ; Remove shortcuts, if any + SetShellVarContext All Delete "$SMPROGRAMS\Voria\Uninstall Synfig Core.lnk" - ; Remove directories used - ;RMDir "$SMPROGRAMS\Example2" - RMDir "$INSTDIR" + RMDir "$SMPROGRAMS\Voria" SectionEnd @@ -147,19 +129,24 @@ SectionEnd Section "Examples" SetOutPath $INSTDIR\examples - File "@srcdir@\examples\*.sif" + File "@srcdir@\examples\*.sifz" + + SetShellVarContext All CreateDirectory "$SMPROGRAMS\Voria" CreateShortCut "$SMPROGRAMS\Voria\Examples.lnk" "$INSTDIR\examples" "" "$INSTDIR\examples" 0 SectionEnd Section "un.Examples" - Delete "$SMPROGRAMS\Voria\Examples.lnk" - Delete "$INSTDIR\examples\*.sif" + Delete "$INSTDIR\examples\*.sifz" RMDir "$INSTDIR\examples" + + SetShellVarContext All + Delete "$SMPROGRAMS\Voria\Examples.lnk" + RMDir "$SMPROGRAMS\Voria" SectionEnd -SubSection "PlugIns" -SubSection "Layers" +SectionGroup "PlugIns" +SectionGroup "Layers" !include "@srcdir@\src\modules\lyr_std\lyr_std.nsh" !include "@srcdir@\src\modules\mod_filter\mod_filter.nsh" !include "@srcdir@\src\modules\mod_gradient\mod_gradient.nsh" @@ -167,23 +154,23 @@ SubSection "Layers" !include "@srcdir@\src\modules\mod_particle\mod_particle.nsh" !include "@srcdir@\src\modules\mod_geometry\mod_geometry.nsh" !include "@srcdir@\src\modules\lyr_freetype\lyr_freetype.nsh" -SubSectionEnd -SubSection "Render Targets" +SectionGroupEnd +SectionGroup "Render Targets" !include "@srcdir@\src\modules\mod_bmp\mod_bmp.nsh" !include "@srcdir@\src\modules\mod_dv\mod_dv.nsh" !include "@srcdir@\src\modules\mod_ffmpeg\mod_ffmpeg.nsh" !include "@srcdir@\src\modules\mod_gif\mod_gif.nsh" !include "@srcdir@\src\modules\mod_imagemagick\mod_imagemagick.nsh" !include "@srcdir@\src\modules\mod_jpeg\mod_jpeg.nsh" +!include "@srcdir@\src\modules\mod_openexr\mod_openexr.nsh" !include "@srcdir@\src\modules\mod_png\mod_png.nsh" !include "@srcdir@\src\modules\mod_ppm\mod_ppm.nsh" !include "@srcdir@\src\modules\mod_yuv420p\mod_yuv420p.nsh" -SubSectionEnd -SubSectionEnd - +SectionGroupEnd +SectionGroupEnd -SubSection "un.PlugIns" -SubSection "un.Layers" +SectionGroup "un.PlugIns" +SectionGroup "un.Layers" !include "@srcdir@\src\modules\lyr_std\unlyr_std.nsh" !include "@srcdir@\src\modules\lyr_freetype\unlyr_freetype.nsh" !include "@srcdir@\src\modules\mod_filter\unmod_filter.nsh" @@ -191,19 +178,20 @@ SubSection "un.Layers" !include "@srcdir@\src\modules\mod_noise\unmod_noise.nsh" !include "@srcdir@\src\modules\mod_particle\unmod_particle.nsh" !include "@srcdir@\src\modules\mod_geometry\unmod_geometry.nsh" -SubSectionEnd -SubSection "un.Render Targets" +SectionGroupEnd +SectionGroup "un.Render Targets" !include "@srcdir@\src\modules\mod_bmp\unmod_bmp.nsh" !include "@srcdir@\src\modules\mod_dv\unmod_dv.nsh" !include "@srcdir@\src\modules\mod_ffmpeg\unmod_ffmpeg.nsh" !include "@srcdir@\src\modules\mod_gif\unmod_gif.nsh" !include "@srcdir@\src\modules\mod_imagemagick\unmod_imagemagick.nsh" !include "@srcdir@\src\modules\mod_jpeg\unmod_jpeg.nsh" +!include "@srcdir@\src\modules\mod_openexr\unmod_openexr.nsh" !include "@srcdir@\src\modules\mod_png\unmod_png.nsh" !include "@srcdir@\src\modules\mod_ppm\unmod_ppm.nsh" !include "@srcdir@\src\modules\mod_yuv420p\unmod_yuv420p.nsh" -SubSectionEnd -SubSectionEnd +SectionGroupEnd +SectionGroupEnd Function .onInit ; Get installer location