summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2012-06-19 18:43:20 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2012-06-19 18:43:20 (GMT)
commit3f8c9073f9a335b76a72d71c0c1f53415d9a731b (patch)
treedb83e7a4b6c7cbea14add8472f0c2aa542c9754f /Modules
parent7ddbdde15fa1d14638dfd627bf28331cb1b5cdcc (diff)
parent5ac6ca083fbbad3040875d6ccf2556d6c9c615c8 (diff)
downloadCMake-3f8c9073f9a335b76a72d71c0c1f53415d9a731b.zip
CMake-3f8c9073f9a335b76a72d71c0c1f53415d9a731b.tar.gz
CMake-3f8c9073f9a335b76a72d71c0c1f53415d9a731b.tar.bz2
Merge topic 'CPackDeb-docUpdate'
5ac6ca0 CPackDeb add missing documentation for some CPACK_DEBIAN_xx variables.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/CPackDeb.cmake30
1 files changed, 29 insertions, 1 deletions
diff --git a/Modules/CPackDeb.cmake b/Modules/CPackDeb.cmake
index fe81dc9..bd3b94d 100644
--- a/Modules/CPackDeb.cmake
+++ b/Modules/CPackDeb.cmake
@@ -68,7 +68,11 @@
# CPACK_DEBIAN_PACKAGE_HOMEPAGE
# Mandatory : NO
# Default : -
-# The URL of the web site for this package
+# The URL of the web site for this package, preferably (when applicable) the
+# site from which the original source can be obtained and any additional
+# upstream documentation or information may be found.
+# The content of this field is a simple URL without any surrounding
+# characters such as <>.
##end
##variable
# CPACK_DEBIAN_PACKAGE_SHLIBDEPS
@@ -137,6 +141,30 @@
# Packages can declare in their control file that they should overwrite
# files in certain other packages, or completely replace other packages.
##end
+##variable
+# CPACK_DEBIAN_PACKAGE_RECOMMENDS
+# Mandatory : NO
+# Default : -
+# see http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
+# Allows packages to declare a strong, but not absolute, dependency on other packages.
+##end
+##variable
+# CPACK_DEBIAN_PACKAGE_SUGGESTS
+# Mandatory : NO
+# Default : -
+# see http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
+# Allows packages to declare a suggested package install grouping.
+##end
+##variable
+# CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
+# Mandatory : NO
+# Default : -
+# This variable allow advanced user to add custom script to the control.tar.gz
+# Typical usage is for conffiles, postinst, postrm, prerm.
+# Usage: SET(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
+# "${CMAKE_CURRENT_SOURCE_DIR/prerm;${CMAKE_CURRENT_SOURCE_DIR}/postrm")
+##end
+
#=============================================================================
# Copyright 2007-2009 Kitware, Inc.