diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-08-08 15:33:42 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-08-08 15:33:42 (GMT) |
commit | 7432ef206e47118d8812be5dc62c7250c9e0bfdd (patch) | |
tree | d103f0a5fa3a97c614d1876b494e0515507a3b8b /Source/CPack/cmCPackRPMGenerator.cxx | |
parent | b34078bca98a052907bb1198e2301d1223b3aae0 (diff) | |
download | CMake-7432ef206e47118d8812be5dc62c7250c9e0bfdd.zip CMake-7432ef206e47118d8812be5dc62c7250c9e0bfdd.tar.gz CMake-7432ef206e47118d8812be5dc62c7250c9e0bfdd.tar.bz2 |
ENH: add empty RPM package generator, Eric Noulard wants to work on it
Alex
Diffstat (limited to 'Source/CPack/cmCPackRPMGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackRPMGenerator.cxx | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackRPMGenerator.cxx b/Source/CPack/cmCPackRPMGenerator.cxx new file mode 100644 index 0000000..59ef94f --- /dev/null +++ b/Source/CPack/cmCPackRPMGenerator.cxx @@ -0,0 +1,58 @@ +/*========================================================================= + + Program: CMake - Cross-Platform Makefile Generator + Module: $RCSfile$ + Language: C++ + Date: $Date$ + Version: $Revision$ + + Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ +#include "cmCPackRPMGenerator.h" + +#include "cmSystemTools.h" +#include "cmMakefile.h" +#include "cmGeneratedFileStream.h" +#include "cmCPackLog.h" + +#include <cmsys/SystemTools.hxx> +#include <cmsys/Glob.hxx> + +//---------------------------------------------------------------------- +cmCPackRPMGenerator::cmCPackRPMGenerator() +{ +} + +//---------------------------------------------------------------------- +cmCPackRPMGenerator::~cmCPackRPMGenerator() +{ +} + +//---------------------------------------------------------------------- +int cmCPackRPMGenerator::CompressFiles(const char* outFileName, + const char* toplevel, + const std::vector<std::string>& files) +{ + this->ReadListFile("CPackRPM.cmake"); + if (!this->IsSet("RPMBUILD_EXECUTABLE")) + { + cmCPackLogger(cmCPackLog::LOG_ERROR, "Cannot find rpmbuild" << std::endl); + return 0; + } + const char* rpmbuildExecutable = this->GetOption("RPMBUILD_EXECUTABLE"); + + return 1; +} + +//---------------------------------------------------------------------- +int cmCPackRPMGenerator::InitializeInternal() +{ + return this->Superclass::InitializeInternal(); +} + |