[Greater-commits] r353 - trunk/packaging/includes

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Wed Jul 6 12:53:07 CEST 2011


Author: aheinecke
Date: 2011-07-06 12:53:06 +0200 (Wed, 06 Jul 2011)
New Revision: 353

Removed:
   trunk/packaging/includes/uninstalllog.nsh
Log:
Remove uninstall log it is no longer necessary


Deleted: trunk/packaging/includes/uninstalllog.nsh
===================================================================
--- trunk/packaging/includes/uninstalllog.nsh	2011-07-05 13:15:03 UTC (rev 352)
+++ trunk/packaging/includes/uninstalllog.nsh	2011-07-06 10:53:06 UTC (rev 353)
@@ -1,62 +0,0 @@
-;AddItem macro
-  !macro AddItem Path
-    FileWrite $UninstLog "${Path}$\r$\n"
-  !macroend
- 
-;File macro
-  !macro File FilePath FileName
-     IfFileExists "$OUTDIR\${FileName}" +2
-     FileWrite $UninstLog "$OUTDIR\${FileName}$\r$\n"
-     File "${FilePath}${FileName}"
-  !macroend
- 
-;CreateShortcut macro
-  !macro CreateShortcut FilePath FilePointer Pamameters Icon IconIndex
-    FileWrite $UninstLog "${FilePath}$\r$\n"
-    CreateShortcut "${FilePath}" "${FilePointer}" "${Pamameters}" "${Icon}" "${IconIndex}"
-  !macroend
- 
-;Copy files macro
-  !macro CopyFiles SourcePath DestPath
-    IfFileExists "${DestPath}" +2
-    FileWrite $UninstLog "${DestPath}$\r$\n"
-    CopyFiles "${SourcePath}" "${DestPath}"
-  !macroend
- 
-;Rename macro
-  !macro Rename SourcePath DestPath
-    IfFileExists "${DestPath}" +2
-    FileWrite $UninstLog "${DestPath}$\r$\n"
-    Rename "${SourcePath}" "${DestPath}"
-  !macroend
- 
-;CreateDirectory macro
-  !macro CreateDirectory Path
-    CreateDirectory "${Path}"
-    FileWrite $UninstLog "${Path}$\r$\n"
-  !macroend
- 
-;SetOutPath macro
-  !macro SetOutPath Path
-    SetOutPath "${Path}"
-    FileWrite $UninstLog "${Path}$\r$\n"
-  !macroend
- 
-;WriteUninstaller macro
-  !macro WriteUninstaller Path
-    WriteUninstaller "${Path}"
-    FileWrite $UninstLog "${Path}$\r$\n"
-  !macroend
- 
-;WriteRegStr macro
-  !macro WriteRegStr RegRoot UnInstallPath Key Value
-     FileWrite $UninstLog "${RegRoot} ${UnInstallPath}$\r$\n"
-     WriteRegStr "${RegRoot}" "${UnInstallPath}" "${Key}" "${Value}"
-  !macroend
- 
- 
-;WriteRegDWORD macro
-  !macro WriteRegDWORD RegRoot UnInstallPath Key Value
-     FileWrite $UninstLog "${RegRoot} ${UnInstallPath}$\r$\n"
-     WriteRegStr "${RegRoot}" "${UnInstallPath}" "${Key}" "${Value}"
-  !macroend



More information about the Greater-commits mailing list