2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-06-09 21:45:09 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-06-09 21:45:09 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2006-06-09 21:45:09 +04:00
|
|
|
|
|
|
|
#include "cmCPackCygwinBinaryGenerator.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmGlobalGenerator.h"
|
|
|
|
#include "cmLocalGenerator.h"
|
|
|
|
#include "cmSystemTools.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
|
|
|
#include "cmCPackLog.h"
|
|
|
|
|
|
|
|
#include <cmsys/SystemTools.hxx>
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
cmCPackCygwinBinaryGenerator::cmCPackCygwinBinaryGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
cmCPackCygwinBinaryGenerator::~cmCPackCygwinBinaryGenerator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int cmCPackCygwinBinaryGenerator::InitializeInternal()
|
|
|
|
{
|
2007-10-31 15:50:17 +03:00
|
|
|
this->SetOptionIfNotSet("CPACK_PACKAGING_INSTALL_PREFIX", "/usr");
|
2007-02-02 22:40:26 +03:00
|
|
|
this->SetOptionIfNotSet("CPACK_INCLUDE_TOPLEVEL_DIRECTORY", "0");
|
2006-06-09 21:45:09 +04:00
|
|
|
return this->Superclass::InitializeInternal();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2010-08-11 21:48:39 +04:00
|
|
|
int cmCPackCygwinBinaryGenerator::PackageFiles()
|
2006-06-09 21:45:09 +04:00
|
|
|
{
|
|
|
|
std::string packageName = this->GetOption("CPACK_PACKAGE_NAME");
|
2007-02-02 22:40:26 +03:00
|
|
|
packageName += "-";
|
2006-06-09 21:45:09 +04:00
|
|
|
packageName += this->GetOption("CPACK_PACKAGE_VERSION");
|
|
|
|
packageName = cmsys::SystemTools::LowerCase(packageName);
|
2007-02-02 22:40:26 +03:00
|
|
|
std::string manifest = "/usr/share/doc/";
|
2006-06-09 21:45:09 +04:00
|
|
|
manifest += packageName;
|
|
|
|
manifest += "/MANIFEST";
|
|
|
|
std::string manifestFile
|
|
|
|
= this->GetOption("CPACK_TEMPORARY_DIRECTORY");
|
2007-02-02 22:40:26 +03:00
|
|
|
// Create a MANIFEST file that contains all of the files in
|
|
|
|
// the tar file
|
2006-06-09 21:45:09 +04:00
|
|
|
std::string tempdir = manifestFile;
|
|
|
|
manifestFile += manifest;
|
|
|
|
// create an extra scope to force the stream
|
|
|
|
// to create the file before the super class is called
|
|
|
|
{
|
|
|
|
cmGeneratedFileStream ofs(manifestFile.c_str());
|
|
|
|
for(std::vector<std::string>::const_iterator i = files.begin();
|
|
|
|
i != files.end(); ++i)
|
|
|
|
{
|
|
|
|
// remove the temp dir and replace with /usr
|
2007-02-02 22:40:26 +03:00
|
|
|
ofs << (*i).substr(tempdir.size()) << "\n";
|
2006-06-09 21:45:09 +04:00
|
|
|
}
|
2007-02-02 22:40:26 +03:00
|
|
|
ofs << manifest << "\n";
|
2006-06-09 21:45:09 +04:00
|
|
|
}
|
2007-02-02 22:40:26 +03:00
|
|
|
// add the manifest file to the list of all files
|
2010-08-11 21:48:39 +04:00
|
|
|
files.push_back(manifestFile);
|
2009-11-03 17:40:57 +03:00
|
|
|
|
2007-02-02 22:40:26 +03:00
|
|
|
// create the bzip2 tar file
|
2010-08-11 21:48:39 +04:00
|
|
|
return this->Superclass::PackageFiles();
|
2006-06-09 21:45:09 +04:00
|
|
|
}
|
|
|
|
|
2007-02-02 22:40:26 +03:00
|
|
|
const char* cmCPackCygwinBinaryGenerator::GetOutputExtension()
|
|
|
|
{
|
|
|
|
this->OutputExtension = "-";
|
2008-03-07 19:06:44 +03:00
|
|
|
const char* patchNumber =this->GetOption("CPACK_CYGWIN_PATCH_NUMBER");
|
|
|
|
if(!patchNumber)
|
|
|
|
{
|
|
|
|
patchNumber = "1";
|
|
|
|
cmCPackLogger(cmCPackLog::LOG_WARNING,
|
|
|
|
"CPACK_CYGWIN_PATCH_NUMBER not specified using 1"
|
|
|
|
<< std::endl);
|
|
|
|
}
|
2008-03-13 04:54:27 +03:00
|
|
|
this->OutputExtension += patchNumber;
|
2007-02-02 22:40:26 +03:00
|
|
|
this->OutputExtension += ".tar.bz2";
|
|
|
|
return this->OutputExtension.c_str();
|
|
|
|
}
|