
Ted,
the tarball misses some makefile.mingw that are needed for win32 compilation.
I checked out the RELEASE_0_42_0_PRE1 and compiled it.
Then I stripped the exe and used a modified Installer srcipt for a installation set.
The modifications are: (diff attached, nothing magic) stripping and lzma compression addresses: 1155567 Too big exe for win32 distribution
the additional registry keys to be deleted addresses: 1166358 uninstallation incomplete in Win32
If you give me the ok I can upload that to the upload.sf.net. Awaiting your response.
Adib. --- Ted Gould schrieb:
On Mon, 2005-07-04 at 17:44 -0700, Bryce Harrington wrote:
- Ted, when you get a chance, can you put up another pre-release
http://sourceforge.net/project/showfiles.php?group_id=93438&package_id=9...
If packagers could make sure to use the tarball, I want to make sure all the correct version numbers are there. (no 0.41 mistakes :) )
Thanks, Ted
Index: inkscape.nsi =================================================================== RCS file: /cvsroot/inkscape/inkscape/inkscape.nsi,v retrieving revision 1.23 diff -u -2 -r1.23 inkscape.nsi --- inkscape.nsi 5 Jul 2005 08:25:49 -0000 1.23 +++ inkscape.nsi 5 Jul 2005 16:15:08 -0000 @@ -16,8 +16,10 @@
+ ; ####################################### ; MUI SETTINGS ; ####################################### ; MUI 1.67 compatible ------ +SetCompressor /SOLID lzma !include "MUI.nsh" !define MUI_ABORTWARNING @@ -177,6 +179,12 @@
Section Uninstall - Delete "$DESKTOP\Inkscape.lnk"
+ ; Remove registry keys comming from the installation + DeleteRegKey HKCR "svgfile\shell\open\command" + DeleteRegKey HKCR "svgfile\shell\edit\command" + DeleteRegKey HKCR "${PRODUCT_DIR_REGKEY}" + + ; Remove shortcuts, if any + Delete "$DESKTOP\Inkscape.lnk" Delete "$SMPROGRAMS\Inkscape\Uninstall Inkscape.lnk" Delete "$SMPROGRAMS\Inkscape\Inkscape.lnk"