#!c:\perl\bin\perl # # The contents of this file are subject to the Netscape Public # License Version 1.1 (the "License"); you may not use this file # except in compliance with the License. You may obtain a copy of # the License at http://www.mozilla.org/NPL/ # # Software distributed under the License is distributed on an "AS # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or # implied. See the License for the specific language governing # rights and limitations under the License. # # The Original Code is Mozilla Communicator client code, released # March 31, 1998. # # The Initial Developer of the Original Code is Netscape # Communications Corporation. Portions created by Netscape are # Copyright (C) 1998-1999 Netscape Communications Corporation. All # Rights Reserved. # # Contributor(s): # Sean Su # # # This perl script builds the xpi, config.ini, and js files. # # Make sure there are at least four arguments if($#ARGV < 2) { die "usage: $0 default version : y2k compliant based date version. ie: 5.0.0.2000040413 staging path : full path to where the components are staged at dist install path : full path to where the dist install dir is at. ie: d:\\builds\\mozilla\\dist\\win32_o.obj\\install \n"; } $inDefaultVersion = $ARGV[0]; $inStagePath = $ARGV[1]; $inDistPath = $ARGV[2]; $inRedirIniUrl = "ftp://not.needed.com/because/the/xpi/files/will/be/located/in/the/same/dir/as/the/installer"; $inXpiUrl = "ftp://not.needed.com/because/the/xpi/files/will/be/located/in/the/same/dir/as/the/installer"; $seiFileNameGeneric = "nsinstall.exe"; $seiFileNameSpecific = "mozilla-win32-installer.exe"; $seuFileNameSpecific = "MozillaUninstall.exe"; # set environment vars for use by other .pl scripts called from this script. $ENV{WIZ_userAgent} = "5.0a1 (en)"; $ENV{WIZ_nameCompany} = "Mozilla"; $ENV{WIZ_nameProduct} = "Mozilla Seamonkey"; $ENV{WIZ_fileMainExe} = "Mozilla.exe"; $ENV{WIZ_fileUninstall} = $seuFileNameSpecific; # Check for existance of staging path if(!(-e "$inStagePath")) { die "invalid path: $inStagePath\n"; } # Make sure inDistPath exists if(!(-e "$inDistPath")) { mkdir ("$inDistPath",0775); } if(-e "$inDistPath\\xpi") { unlink <$inDistPath\\xpi\\*>; } else { mkdir ("$inDistPath\\xpi",0775); } if(-e "$inDistPath\\uninstall") { unlink <$inDistPath\\uninstall\\*>; } else { mkdir ("$inDistPath\\uninstall",0775); } if(-e "$inDistPath\\setup") { unlink <$inDistPath\\setup\\*>; } else { mkdir ("$inDistPath\\setup",0775); } # Make .xpi files MakeXpiFile("xpcom"); MakeXpiFile("browser"); MakeXpiFile("mail"); MakeXpiFile("chatzilla"); MakeXpiFile("deflenus"); MakeXpiFile("langenus"); MakeXpiFile("langengb"); MakeUninstall(); MakeConfigFile(); # Copy the setup files to the dist setup directory. system("copy config.ini $inDistPath"); system("copy config.ini $inDistPath\\setup"); system("copy $inDistPath\\setup.exe $inDistPath\\setup"); system("copy $inDistPath\\setuprsc.dll $inDistPath\\setup"); # build the self-extracting .exe (installer) file. print "\nbuilding self-extracting installer ($seiFileNameSpecific)...\n"; system("copy $inDistPath\\$seiFileNameGeneric $inDistPath\\$seiFileNameSpecific"); system("$inDistPath\\nszip.exe $inDistPath\\$seiFileNameSpecific $inDistPath\\setup\\*.* $inDistPath\\xpi\\*.*"); print " done!\n\n"; if((!(-e "$ENV{MOZ_SRC}\\redist\\microsoft\\system\\msvcrt.dll")) || (!(-e "$ENV{MOZ_SRC}\\redist\\microsoft\\system\\msvcirt.dll"))) { print "***\n"; print "**\n"; print "** The following required Microsoft redistributable system files were not found\n"; print "** in $ENV{MOZ_SRC}\\redist\\microsoft\\system:\n"; print "**\n"; if(!(-e "$ENV{MOZ_SRC}\\redist\\microsoft\\system\\msvcrt.dll")) { print "** msvcrt.dll\n"; } if(!(-e "$ENV{MOZ_SRC}\\redist\\microsoft\\system\\msvcirt.dll")) { print "** msvcirt.dll\n"; } print "**\n"; print "** The above files are required by the installer and the browser. If you attempt\n"; print "** to run the installer, you may encounter the following bug:\n"; print "**\n"; print "** http://bugzilla.mozilla.org/show_bug.cgi?id=27601\n"; print "**\n"; print "***\n\n"; } # end of script exit(0); sub MakeConfigFile { # Make config.ini file if(system("perl makecfgini.pl config.it $inDefaultVersion $inStagePath $inDistPath\\xpi $inRedirIniUrl $inXpiUrl") != 0) { exit(1); } } sub MakeUninstall { MakeUninstallIniFile(); # Copy the uninstall files to the dist uninstall directory. system("copy uninstall.ini $inDistPath"); system("copy uninstall.ini $inDistPath\\uninstall"); system("copy $inDistPath\\uninstall.exe $inDistPath\\uninstall"); # build the self-extracting .exe (uninstaller) file. print "\nbuilding self-extracting uninstaller ($seuFileNameSpecific)...\n"; system("copy $inDistPath\\$seiFileNameGeneric $inDistPath\\$seuFileNameSpecific"); system("$inDistPath\\nszip.exe $inDistPath\\$seuFileNameSpecific $inDistPath\\uninstall\\*.*"); system("copy $inDistPath\\$seuFileNameSpecific $inDistPath\\xpi"); } sub MakeUninstallIniFile { # Make config.ini file if(system("perl makeuninstallini.pl uninstall.it $inDefaultVersion") != 0) { exit(1); } } sub MakeJsFile { my($componentName) = @_; # Make .js file if(system("perl makejs.pl $componentName.jst $inDefaultVersion $inStagePath\\$componentName") != 0) { exit(1); } } sub MakeXpiFile { my($componentName) = @_; # Make .js files MakeJsFile($componentName); # Make .xpi file if(system("perl makexpi.pl $componentName $inStagePath $inDistPath\\xpi") != 0) { exit(1); } }