Kaydet (Commit) a11b5a61 authored tarafından Ivo Hinkelmann's avatar Ivo Hinkelmann

#i10000# fixed transplanted nativeb

üst c3fc2cb0
...@@ -76,6 +76,7 @@ OpenOffice ...@@ -76,6 +76,7 @@ OpenOffice
PACKAGEREVISION {milestone} PACKAGEREVISION {milestone}
LICENSENAME LGPL LICENSENAME LGPL
SERVICESPROJEKT 1 SERVICESPROJEKT 1
WITHJREPRODUCT 1
GLOBALFILEGID gid_File_Lib_Vcl GLOBALFILEGID gid_File_Lib_Vcl
GLOBALPATCHFILEGID gid_File_Txt_Patchfiles GLOBALPATCHFILEGID gid_File_Txt_Patchfiles
SPELLCHECKERFILE spellchecker_selection.txt SPELLCHECKERFILE spellchecker_selection.txt
...@@ -419,6 +420,7 @@ BrOffice ...@@ -419,6 +420,7 @@ BrOffice
PACKAGEREVISION {milestone} PACKAGEREVISION {milestone}
LICENSENAME LGPL LICENSENAME LGPL
SERVICESPROJEKT 1 SERVICESPROJEKT 1
WITHJREPRODUCT 1
SETSTATICPATH 1 SETSTATICPATH 1
GLOBALFILEGID gid_File_Lib_Vcl GLOBALFILEGID gid_File_Lib_Vcl
GLOBALPATCHFILEGID gid_File_Txt_Patchfiles GLOBALPATCHFILEGID gid_File_Txt_Patchfiles
...@@ -437,6 +439,7 @@ BrOffice ...@@ -437,6 +439,7 @@ BrOffice
DOWNLOADBANNER brobanner.bmp DOWNLOADBANNER brobanner.bmp
DOWNLOADBITMAP brobitmap.bmp DOWNLOADBITMAP brobitmap.bmp
DOWNLOADSETUPICO ooosetup.ico DOWNLOADSETUPICO ooosetup.ico
WINDOWSBITMAPDIRECTORY ..\inc_broffice\windows\msi_templates\Binary
RELATIVE_PATHES_IN_DDF 1 RELATIVE_PATHES_IN_DDF 1
STARTCENTER_ADDFEATURE_URL http://tools.services.openoffice.org/forward/BrOffice/extensions.jsp?cid=920794 STARTCENTER_ADDFEATURE_URL http://tools.services.openoffice.org/forward/BrOffice/extensions.jsp?cid=920794
STARTCENTER_INFO_URL http://tools.services.openoffice.org/forward/BrOffice/homepage.jsp STARTCENTER_INFO_URL http://tools.services.openoffice.org/forward/BrOffice/homepage.jsp
...@@ -508,6 +511,7 @@ BrOffice_wJRE ...@@ -508,6 +511,7 @@ BrOffice_wJRE
DOWNLOADBANNER brobanner.bmp DOWNLOADBANNER brobanner.bmp
DOWNLOADBITMAP brobitmap.bmp DOWNLOADBITMAP brobitmap.bmp
DOWNLOADSETUPICO ooosetup.ico DOWNLOADSETUPICO ooosetup.ico
WINDOWSBITMAPDIRECTORY ..\inc_broffice\windows\msi_templates\Binary
RELATIVE_PATHES_IN_DDF 1 RELATIVE_PATHES_IN_DDF 1
STARTCENTER_ADDFEATURE_URL http://tools.services.openoffice.org/forward/BrOffice/extensions.jsp?cid=920794 STARTCENTER_ADDFEATURE_URL http://tools.services.openoffice.org/forward/BrOffice/extensions.jsp?cid=920794
STARTCENTER_INFO_URL http://tools.services.openoffice.org/forward/BrOffice/homepage.jsp STARTCENTER_INFO_URL http://tools.services.openoffice.org/forward/BrOffice/homepage.jsp
...@@ -578,6 +582,7 @@ BrOffice_Dev ...@@ -578,6 +582,7 @@ BrOffice_Dev
DOWNLOADBANNER brobanner.bmp DOWNLOADBANNER brobanner.bmp
DOWNLOADBITMAP brobitmap.bmp DOWNLOADBITMAP brobitmap.bmp
DOWNLOADSETUPICO ooosetup.ico DOWNLOADSETUPICO ooosetup.ico
WINDOWSBITMAPDIRECTORY ..\inc_broffice\windows\msi_templates\Binary
LOCALUSERDIR $ORIGIN/.. LOCALUSERDIR $ORIGIN/..
RELATIVE_PATHES_IN_DDF 1 RELATIVE_PATHES_IN_DDF 1
STARTCENTER_ADDFEATURE_URL http://tools.services.openoffice.org/forward/BrOffice/extensions.jsp?cid=920794 STARTCENTER_ADDFEATURE_URL http://tools.services.openoffice.org/forward/BrOffice/extensions.jsp?cid=920794
......
...@@ -769,9 +769,13 @@ sub prepare_language_idt_directory ...@@ -769,9 +769,13 @@ sub prepare_language_idt_directory
installer::systemactions::create_directory($destinationdir . $installer::globals::separator . "Binary"); installer::systemactions::create_directory($destinationdir . $installer::globals::separator . "Binary");
installer::systemactions::copy_directory($installer::globals::idttemplatepath . $installer::globals::separator . "Binary", $destinationdir . $installer::globals::separator . "Binary"); installer::systemactions::copy_directory($installer::globals::idttemplatepath . $installer::globals::separator . "Binary", $destinationdir . $installer::globals::separator . "Binary");
if (( $installer::globals::patch ) && ( $allvariables->{'WINDOWSPATCHBITMAPDIRECTORY'} )) if ((( $installer::globals::patch ) && ( $allvariables->{'WINDOWSPATCHBITMAPDIRECTORY'} )) || ( $allvariables->{'WINDOWSBITMAPDIRECTORY'} ))
{ {
my $newsourcedir = $installer::globals::unpackpath . $installer::globals::separator . $allvariables->{'WINDOWSPATCHBITMAPDIRECTORY'}; # path setting in list file dependent from unpackpath !? my $bitmapdir = "";
if ( $allvariables->{'WINDOWSPATCHBITMAPDIRECTORY'} ) { $bitmapdir = $allvariables->{'WINDOWSPATCHBITMAPDIRECTORY'}; }
if ( $allvariables->{'WINDOWSBITMAPDIRECTORY'} ) { $bitmapdir = $allvariables->{'WINDOWSBITMAPDIRECTORY'}; }
my $newsourcedir = $installer::globals::unpackpath . $installer::globals::separator . $bitmapdir; # path setting in list file dependent from unpackpath !?
$infoline = "\nOverwriting files in directory \"" . $destinationdir . $installer::globals::separator . "Binary" . "\" with files from directory \"" . $newsourcedir . "\".\n"; $infoline = "\nOverwriting files in directory \"" . $destinationdir . $installer::globals::separator . "Binary" . "\" with files from directory \"" . $newsourcedir . "\".\n";
push( @installer::globals::logfileinfo, $infoline); push( @installer::globals::logfileinfo, $infoline);
if ( ! -d $newsourcedir ) if ( ! -d $newsourcedir )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment