BUG: Workaround PackageMaker 3.0 issue for new CPack components feature. Thanks again to Doug Gregor for the patch.
This commit is contained in:
parent
cb613406bc
commit
e8825d320b
|
@ -1,6 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<installer-gui-script minSpecVersion="1.0">
|
||||
<title>@CPACK_PACKAGE_NAME@</title>
|
||||
<welcome file="@CPACK_RESOURCE_FILE_WELCOME_NOPATH@"/>
|
||||
<readme file="@CPACK_RESOURCE_FILE_README_NOPATH@"/>
|
||||
<license file="@CPACK_RESOURCE_FILE_LICENSE_NOPATH@"/>
|
||||
<options allow-external-scripts="no" customize="allow" rootVolumeOnly="false"></options>
|
||||
@CPACK_PACKAGEMAKER_CHOICES@
|
||||
</installer-gui-script>
|
||||
|
|
|
@ -69,9 +69,51 @@ int cmCPackPackageMakerGenerator::CompressFiles(const char* outFileName,
|
|||
{
|
||||
(void) files; // TODO: Fix api to not need files.
|
||||
(void) toplevel; // TODO: Use toplevel
|
||||
// Create directory structure
|
||||
std::string resDir = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
|
||||
|
||||
std::string resDir; // Where this package's resources will go.
|
||||
std::string packageDirFileName
|
||||
= this->GetOption("CPACK_TEMPORARY_DIRECTORY");
|
||||
if (this->Components.empty())
|
||||
{
|
||||
packageDirFileName += ".pkg";
|
||||
resDir = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
|
||||
resDir += "/Resources";
|
||||
}
|
||||
else
|
||||
{
|
||||
packageDirFileName += ".mpkg";
|
||||
if ( !cmsys::SystemTools::MakeDirectory(packageDirFileName.c_str()))
|
||||
{
|
||||
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
||||
"unable to create package directory "
|
||||
<< packageDirFileName << std::endl);
|
||||
return 0;
|
||||
}
|
||||
|
||||
resDir = packageDirFileName;
|
||||
resDir += "/Contents";
|
||||
if ( !cmsys::SystemTools::MakeDirectory(resDir.c_str()))
|
||||
{
|
||||
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
||||
"unable to create package subdirectory " << resDir
|
||||
<< std::endl);
|
||||
return 0;
|
||||
}
|
||||
|
||||
resDir += "/Resources";
|
||||
if ( !cmsys::SystemTools::MakeDirectory(resDir.c_str()))
|
||||
{
|
||||
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
||||
"unable to create package subdirectory " << resDir
|
||||
<< std::endl);
|
||||
return 0;
|
||||
}
|
||||
|
||||
resDir += "/en.lproj";
|
||||
}
|
||||
|
||||
|
||||
// Create directory structure
|
||||
std::string preflightDirName = resDir + "/PreFlight";
|
||||
std::string postflightDirName = resDir + "/PostFlight";
|
||||
const char* preflight = this->GetOption("CPACK_PREFLIGHT_SCRIPT");
|
||||
|
@ -124,8 +166,8 @@ int cmCPackPackageMakerGenerator::CompressFiles(const char* outFileName,
|
|||
if (!this->Components.empty())
|
||||
{
|
||||
// Create the directory where component packages will be installed.
|
||||
std::string basePackageDir = toplevel;
|
||||
basePackageDir += "/packages";
|
||||
std::string basePackageDir = packageDirFileName;
|
||||
basePackageDir += "/Contents/Packages";
|
||||
if (!cmsys::SystemTools::MakeDirectory(basePackageDir.c_str()))
|
||||
{
|
||||
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
||||
|
@ -157,9 +199,9 @@ int cmCPackPackageMakerGenerator::CompressFiles(const char* outFileName,
|
|||
this->SetOption("CPACK_MODULE_VERSION_SUFFIX", "");
|
||||
|
||||
// Copy or create all of the resource files we need.
|
||||
if ( !this->CopyCreateResourceFile("License")
|
||||
|| !this->CopyCreateResourceFile("ReadMe")
|
||||
|| !this->CopyCreateResourceFile("Welcome")
|
||||
if ( !this->CopyCreateResourceFile("License", resDir.c_str())
|
||||
|| !this->CopyCreateResourceFile("ReadMe", resDir.c_str())
|
||||
|| !this->CopyCreateResourceFile("Welcome", resDir.c_str())
|
||||
|| !this->CopyResourcePlistFile("Info.plist")
|
||||
|| !this->CopyResourcePlistFile("Description.plist") )
|
||||
{
|
||||
|
@ -168,23 +210,9 @@ int cmCPackPackageMakerGenerator::CompressFiles(const char* outFileName,
|
|||
return 0;
|
||||
}
|
||||
|
||||
std::string packageDirFileName
|
||||
= this->GetOption("CPACK_TEMPORARY_DIRECTORY");
|
||||
if (this->Components.empty())
|
||||
{
|
||||
packageDirFileName += ".pkg";
|
||||
}
|
||||
else
|
||||
{
|
||||
packageDirFileName += ".mpkg";
|
||||
if (this->PackageMakerVersion == 3.0)
|
||||
{
|
||||
cmCPackLogger(cmCPackLog::LOG_ERROR,
|
||||
"PackageMaker 3.0 cannot build component-based installations."
|
||||
<< std::endl << "Please use PackageMaker 2.5 instead." << std::endl);
|
||||
}
|
||||
}
|
||||
|
||||
// Use PackageMaker to build the package.
|
||||
cmOStringStream pkgCmd;
|
||||
pkgCmd << "\"" << this->GetOption("CPACK_INSTALLER_PROGRAM")
|
||||
<< "\" -build -p \"" << packageDirFileName << "\"";
|
||||
|
@ -199,17 +227,21 @@ int cmCPackPackageMakerGenerator::CompressFiles(const char* outFileName,
|
|||
}
|
||||
pkgCmd << "\" -r \"" << this->GetOption("CPACK_TOPLEVEL_DIRECTORY")
|
||||
<< "/Resources\" -i \""
|
||||
<< this->GetOption("CPACK_TOPLEVEL_DIRECTORY") << "/Info.plist\" -d \""
|
||||
<< this->GetOption("CPACK_TOPLEVEL_DIRECTORY") << "/Description.plist\"";
|
||||
<< this->GetOption("CPACK_TOPLEVEL_DIRECTORY")
|
||||
<< "/Info.plist\" -d \""
|
||||
<< this->GetOption("CPACK_TOPLEVEL_DIRECTORY")
|
||||
<< "/Description.plist\"";
|
||||
if ( this->PackageMakerVersion > 2.0 )
|
||||
{
|
||||
pkgCmd << " -v";
|
||||
}
|
||||
if (!RunPackageMaker(pkgCmd.str().c_str(), packageDirFileName.c_str()))
|
||||
return 0;
|
||||
|
||||
if (!this->Components.empty())
|
||||
}
|
||||
else
|
||||
{
|
||||
// We have built the package in place. Generate the
|
||||
// distribution.dist file to describe it for the installer.
|
||||
WriteDistributionFile(packageDirFileName.c_str());
|
||||
}
|
||||
|
||||
|
@ -331,7 +363,8 @@ int cmCPackPackageMakerGenerator::InitializeInternal()
|
|||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
bool cmCPackPackageMakerGenerator::CopyCreateResourceFile(const char* name)
|
||||
bool cmCPackPackageMakerGenerator::CopyCreateResourceFile(const char* name,
|
||||
const char* dirName)
|
||||
{
|
||||
std::string uname = cmSystemTools::UpperCase(name);
|
||||
std::string cpackVar = "CPACK_RESOURCE_FILE_" + uname;
|
||||
|
@ -361,10 +394,14 @@ bool cmCPackPackageMakerGenerator::CopyCreateResourceFile(const char* name)
|
|||
return false;
|
||||
}
|
||||
|
||||
std::string destFileName = this->GetOption("CPACK_TOPLEVEL_DIRECTORY");
|
||||
destFileName += "/Resources/";
|
||||
std::string destFileName = dirName;
|
||||
destFileName += '/';
|
||||
destFileName += name + ext;
|
||||
|
||||
// Set this so that distribution.dist gets the right name (without
|
||||
// the path).
|
||||
this->SetOption(("CPACK_RESOURCE_FILE_" + uname + "_NOPATH").c_str(),
|
||||
(name + ext).c_str());
|
||||
|
||||
cmCPackLogger(cmCPackLog::LOG_VERBOSE, "Configure file: "
|
||||
<< (inFileName ? inFileName : "(NULL)")
|
||||
|
|
|
@ -52,7 +52,12 @@ protected:
|
|||
virtual const char* GetOutputExtension() { return ".dmg"; }
|
||||
virtual const char* GetOutputPostfix() { return "darwin"; }
|
||||
|
||||
bool CopyCreateResourceFile(const char* name);
|
||||
// Copies or creates the resource file with the given name to the
|
||||
// package or package staging directory dirName. The variable
|
||||
// CPACK_RESOURCE_FILE_${NAME} (where ${NAME} is the uppercased
|
||||
// version of name) specifies the input file to use for this file,
|
||||
// which will be configured via ConfigureFile.
|
||||
bool CopyCreateResourceFile(const char* name, const char *dirName);
|
||||
bool CopyResourcePlistFile(const char* name, const char* outName = 0);
|
||||
|
||||
// Run PackageMaker with the given command line, which will (if
|
||||
|
|
Loading…
Reference in New Issue