2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc.
|
2007-07-25 18:57:33 +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.
|
2007-07-25 18:57:33 +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.
|
|
|
|
============================================================================*/
|
2007-07-25 18:57:33 +04:00
|
|
|
|
|
|
|
#ifndef cmCPackDebGenerator_h
|
|
|
|
#define cmCPackDebGenerator_h
|
|
|
|
|
|
|
|
|
2007-11-06 00:55:45 +03:00
|
|
|
#include "cmCPackGenerator.h"
|
2007-07-25 18:57:33 +04:00
|
|
|
|
|
|
|
/** \class cmCPackDebGenerator
|
|
|
|
* \brief A generator for Debian packages
|
|
|
|
*
|
|
|
|
*/
|
2007-11-06 00:55:45 +03:00
|
|
|
class cmCPackDebGenerator : public cmCPackGenerator
|
2007-07-25 18:57:33 +04:00
|
|
|
{
|
|
|
|
public:
|
2007-11-06 00:55:45 +03:00
|
|
|
cmCPackTypeMacro(cmCPackDebGenerator, cmCPackGenerator);
|
2007-07-25 18:57:33 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Construct generator
|
|
|
|
*/
|
|
|
|
cmCPackDebGenerator();
|
|
|
|
virtual ~cmCPackDebGenerator();
|
|
|
|
|
2012-03-30 19:07:06 +04:00
|
|
|
static bool CanGenerate()
|
|
|
|
{
|
|
|
|
#ifdef __APPLE__
|
|
|
|
// on MacOS enable CPackDeb iff dpkg is found
|
2012-07-02 21:49:07 +04:00
|
|
|
std::vector<std::string> locations;
|
2012-07-20 19:43:41 +04:00
|
|
|
locations.push_back("/sw/bin"); // Fink
|
|
|
|
locations.push_back("/opt/local/bin"); // MacPorts
|
2012-07-02 21:49:07 +04:00
|
|
|
return cmSystemTools::FindProgram("dpkg",locations) != "" ? true : false;
|
2012-03-30 19:07:06 +04:00
|
|
|
#else
|
|
|
|
// legacy behavior on other systems
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-07-25 18:57:33 +04:00
|
|
|
protected:
|
2007-10-31 15:50:17 +03:00
|
|
|
virtual int InitializeInternal();
|
2011-03-23 20:28:05 +03:00
|
|
|
/**
|
|
|
|
* This method factors out the work done in component packaging case.
|
|
|
|
*/
|
|
|
|
int PackageOnePack(std::string initialToplevel, std::string packageName);
|
2011-03-11 10:47:15 +03:00
|
|
|
/**
|
|
|
|
* The method used to package files when component
|
|
|
|
* install is used. This will create one
|
|
|
|
* archive for each component group.
|
|
|
|
*/
|
|
|
|
int PackageComponents(bool ignoreGroup);
|
|
|
|
/**
|
|
|
|
* Special case of component install where all
|
|
|
|
* components will be put in a single installer.
|
|
|
|
*/
|
2011-03-23 20:28:05 +03:00
|
|
|
int PackageComponentsAllInOne();
|
2010-08-11 21:48:39 +04:00
|
|
|
virtual int PackageFiles();
|
2007-07-25 18:57:33 +04:00
|
|
|
virtual const char* GetOutputExtension() { return ".deb"; }
|
2011-03-11 10:47:15 +03:00
|
|
|
virtual bool SupportsComponentInstallation() const;
|
|
|
|
virtual std::string GetComponentInstallDirNameSuffix(
|
|
|
|
const std::string& componentName);
|
|
|
|
|
|
|
|
private:
|
|
|
|
int createDeb();
|
|
|
|
std::vector<std::string> packageFiles;
|
2007-07-25 18:57:33 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|