From: Jeffrey Altman Date: Sat, 13 Jan 2007 17:08:28 +0000 (+0000) Subject: Update to KFW NSIS installer X-Git-Tag: krb5-1.7-alpha1~1362 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=8fb0d141e06bb482768a4be15ee01ea6131d3575;p=krb5.git Update to KFW NSIS installer Update copyright date, samples directory, and shortcut to NetIDMgr documentation ticket: new component: windows tags: pullup git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19060 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/windows/installer/nsis/kfw-fixed.nsi b/src/windows/installer/nsis/kfw-fixed.nsi index 3b038c08b..c61f5a18c 100644 --- a/src/windows/installer/nsis/kfw-fixed.nsi +++ b/src/windows/installer/nsis/kfw-fixed.nsi @@ -1,6 +1,7 @@ ;----------------------------------------------------------------- ; KfW defines and functionality ; Copyright (c) 2004 Massachusetts Institute of Technology +; Copyright (c) 2006 Secure Endpoints Inc. !define KFW_VERSION "${KFW_MAJORVERSION}.${KFW_MINORVERSION}.${KFW_PATCHLEVEL}" @@ -32,7 +33,7 @@ VIAddVersionKey "CompanyName" "Massachusetts Institute of Technology" VIAddVersionKey "ProductVersion" ${VIProductVersion} VIAddVersionKey "FileVersion" ${VIProductVersion} VIAddVersionKey "FileDescription" "MIT Kerberos for Windows Installer" -VIAddVersionKey "LegalCopyright" "(C)2004,2005" +VIAddVersionKey "LegalCopyright" "(C)2004,2005,2006" !ifdef DEBUG VIAddVersionKey "PrivateBuild" "Checked/Debug" !endif ; End DEBUG @@ -75,6 +76,7 @@ VIAddVersionKey "PrivateBuild" "Checked/Debug" !define KFW_DOC_DIR "${KFW_TARGETDIR}\doc" !define KFW_INC_DIR "${KFW_TARGETDIR}\inc" !define KFW_LIB_DIR "${KFW_TARGETDIR}\lib\i386" + !define KFW_SAMPLE_DIR "${KFW_TARGETDIR}\sample" !define KFW_INSTALL_DIR "${KFW_TARGETDIR}\install" !define SYSTEMDIR "$%SystemRoot%\System32" @@ -546,6 +548,7 @@ Section "KfW SDK" secSDK RMDir /r "$INSTDIR\inc" RMDir /r "$INSTDIR\lib" RMDir /r "$INSTDIR\install" + RMDir /r "$INSTDIR\sample" SetOutPath "$INSTDIR\doc" File /r "${KFW_DOC_DIR}\netiddev.chm" @@ -580,6 +583,9 @@ Section "KfW SDK" secSDK SetOutPath "$INSTDIR\install" File /r "${KFW_INSTALL_DIR}\*" + SetOutPath "$INSTDIR\sample" + File /r "${KFW_SAMPLE_DIR}\*" + CreateShortCut "$SMPROGRAMS\${PROGRAM_NAME}\Network Identity Developer Documentation.lnk" "$INSTDIR\bin\netiddev.chm" Call KFWCommon.Install