[Cmake-commits] [cmake-commits] malaterre committed CPackDeb.cmake 1.15 1.16

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Oct 30 12:06:55 EDT 2009


Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv11038

Modified Files:
	CPackDeb.cmake 
Log Message:
FIX: BUG: 0009124. Fix documentation


Index: CPackDeb.cmake
===================================================================
RCS file: /cvsroot/CMake/CMake/Modules/CPackDeb.cmake,v
retrieving revision 1.15
retrieving revision 1.16
diff -C 2 -d -r1.15 -r1.16
*** CPackDeb.cmake	28 Sep 2009 15:46:50 -0000	1.15
--- CPackDeb.cmake	30 Oct 2009 16:06:53 -0000	1.16
***************
*** 1,5 ****
--- 1,49 ----
+ # - The builtin (binary) CPack Deb generator (Unix only)
+ # CPackDeb may be used to create Deb package using CPack.
+ # CPackDeb is a CPack generator thus it uses the CPACK_XXX variables
+ # used by CPack : http://www.cmake.org/Wiki/CMake:CPackConfiguration
+ #
+ # However CPackRPM has specific features which are controlled by
+ # the specifics CPACK_RPM_XXX variables.You'll find a detailed usage on 
+ # the wiki: 
+ #  http://www.cmake.org/Wiki/CMake:CPackPackageGenerators#DEB_.28UNIX_only.29
+ # However as a handy reminder here comes the list of specific variables:
+ #
+ #  CPACK_DEBIAN_PACKAGE_NAME
+ #     Mandatory : YES
+ #     Default   : CPACK_PACKAGE_NAME (lower case)
+ #     The debian package summary
+ # CPACK_DEBIAN_PACKAGE_VERSION
+ #     Mandatory : YES
+ #     Default   : CPACK_PACKAGE_VERSION
+ #     The debian package version
+ # CPACK_DEBIAN_PACKAGE_ARCHITECTURE)
+ #     Mandatory : YES
+ #     Default   : Output of dpkg --print-architecture or i386
+ #     The debian package architecture
+ # CPACK_DEBIAN_PACKAGE_DEPENDS
+ #     Mandatory : NO
+ #     Default   : -
+ #     May be used to set deb dependencies. 
+ # CPACK_DEBIAN_PACKAGE_MAINTAINER
+ #     Mandatory : YES
+ #     Default   : CPACK_PACKAGE_CONTACT
+ #     The debian package maintainer
+ # CPACK_DEBIAN_PACKAGE_DESCRIPTION
+ #     Mandatory : YES
+ #     Default   : CPACK_PACKAGE_DESCRIPTION_SUMMARY
+ #     The debian package description
+ # CPACK_DEBIAN_PACKAGE_SECTION
+ #     Mandatory : YES
+ #     Default   : 'devel'
+ #     The debian package section
+ # CPACK_DEBIAN_PACKAGE_PRIORITY
+ #     Mandatory : YES
+ #     Default   : 'optional'
+ #     The debian package priority
  
  #=============================================================================
  # Copyright 2007-2009 Kitware, Inc.
+ # Copyright 2007-2009 Mathieu Malaterre <mathieu.malaterre at gmail.com>
  #
  # Distributed under the OSI-approved BSD License (the "License");



More information about the Cmake-commits mailing list