2013-10-15 19:17:36 +04:00
#.rst:
# CPackDeb
# --------
#
2016-05-31 23:06:39 +03:00
# The built in (binary) CPack Deb generator (Unix only)
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# Variables specific to CPack Debian (DEB) generator
# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#
2016-05-31 23:06:39 +03:00
# CPackDeb may be used to create Deb package using :module:`CPack`.
# CPackDeb is a :module:`CPack` generator thus it uses the ``CPACK_XXX``
# variables used by :module:`CPack`.
#
# CPackDeb generator should work on any Linux host but it will produce
# better deb package when Debian specific tools ``dpkg-xxx`` are usable on
2013-10-15 19:17:36 +04:00
# the build system.
#
# CPackDeb has specific features which are controlled by the specifics
2015-04-29 19:05:36 +03:00
# :code:`CPACK_DEBIAN_XXX` variables.
2013-10-15 19:17:36 +04:00
#
2015-04-29 19:05:36 +03:00
# :code:`CPACK_DEBIAN_<COMPONENT>_XXXX` variables may be used in order to have
2016-05-31 23:06:39 +03:00
# **component** specific values. Note however that ``<COMPONENT>`` refers to
# the **grouping name** written in upper case. It may be either a component name
# or a component GROUP name.
#
# Here are some CPackDeb wiki resources that are here for historic reasons and
# are no longer maintained but may still prove useful:
#
# - https://cmake.org/Wiki/CMake:CPackConfiguration
# - https://cmake.org/Wiki/CMake:CPackPackageGenerators#DEB_.28UNIX_only.29
#
# List of CPackRPM specific variables:
#
# .. variable:: CPACK_DEB_PACKAGE_COMPONENT
#
# Enable component packaging for CPackRPM
2015-04-29 19:05:36 +03:00
#
2016-05-31 23:06:39 +03:00
# * Mandatory : NO
# * Default : OFF
#
# If enabled (ON) multiple packages are generated. By default a single package
# containing files of all components is generated.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_NAME
2015-11-09 01:44:00 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_NAME
2013-10-15 19:17:36 +04:00
#
2015-11-09 01:46:13 +03:00
# Set Package control field (variable is automatically transformed to lower
# case).
2015-05-16 00:06:43 +03:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
2015-11-09 01:46:13 +03:00
# * Default :
#
# - :variable:`CPACK_PACKAGE_NAME` for non-component based
# installations
# - :variable:`CPACK_DEBIAN_PACKAGE_NAME` suffixed with -<COMPONENT>
# for component-based installations.
#
# See https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Source
2013-10-15 19:17:36 +04:00
#
2016-05-23 20:51:33 +03:00
# .. variable:: CPACK_DEBIAN_FILE_NAME
# CPACK_DEBIAN_<COMPONENT>_FILE_NAME
#
# Package file name.
#
# * Mandatory : YES
# * Default : ``<CPACK_PACKAGE_FILE_NAME>[-<component>].deb``
#
# This may be set to ``DEB-DEFAULT`` to allow CPackDeb to generate package file
# name by itself in deb format::
#
# <PackageName>_<VersionNumber>-<DebianRevisionNumber>_<DebianArchitecture>.deb
#
2016-05-31 23:06:39 +03:00
# Alternatively provided package file name must end with ``.deb`` suffix.
2016-05-23 20:51:33 +03:00
#
# .. note::
#
# Preferred setting of this variable is ``DEB-DEFAULT`` but for backward
# compatibility with CPackDeb in CMake prior to version 3.6 this feature
# is disabled by default.
#
# .. note::
#
# By using non default filenames duplicate names may occur. Duplicate files
# get overwritten and it is up to the packager to set the variables in a
# manner that will prevent such errors.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_VERSION
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# The Debian package version
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
2015-05-16 00:06:43 +03:00
# * Default : :variable:`CPACK_PACKAGE_VERSION`
2013-10-15 19:17:36 +04:00
#
2016-05-10 19:33:08 +03:00
# .. variable:: CPACK_DEBIAN_PACKAGE_RELEASE
#
# The Debian package release - Debian revision number.
#
# * Mandatory : YES
# * Default : 1
#
# This is the numbering of the DEB package itself, i.e. the version of the
# packaging and not the version of the content (see
# :variable:`CPACK_DEBIAN_PACKAGE_VERSION`). One may change the default value
# if the previous packaging was buggy and/or you want to put here a fancy Linux
# distro specific numbering.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_ARCHITECTURE
2016-05-10 15:55:52 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_ARCHITECTURE
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# The Debian package architecture
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
2015-05-16 00:06:43 +03:00
# * Default : Output of :code:`dpkg --print-architecture` (or :code:`i386`
# if :code:`dpkg` is not found)
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_DEPENDS
2015-05-09 00:36:26 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_DEPENDS
#
2015-05-16 00:06:43 +03:00
# Sets the Debian dependencies of this package.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
2015-05-09 00:36:26 +03:00
# * Default :
2013-10-15 19:17:36 +04:00
#
2015-05-09 00:36:26 +03:00
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_DEPENDS` for component-based
# installations.
#
# .. note::
#
# If :variable:`CPACK_DEBIAN_PACKAGE_SHLIBDEPS` or
# more specifically :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_SHLIBDEPS`
# is set for this component, the discovered dependencies will be appended
2015-05-16 00:06:43 +03:00
# to :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_DEPENDS` instead of
2015-05-09 00:36:26 +03:00
# :variable:`CPACK_DEBIAN_PACKAGE_DEPENDS`. If
# :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_DEPENDS` is an empty string,
# only the automatically discovered dependencies will be set for this
# component.
#
# Example::
#
# set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.3.1-6), libc6 (< 2.4)")
2013-10-15 19:17:36 +04:00
#
2016-05-23 21:21:32 +03:00
# .. variable:: CPACK_DEBIAN_ENABLE_COMPONENT_DEPENDS
#
# Sets inter component dependencies if listed with
# :variable:`CPACK_COMPONENT_<compName>_DEPENDS` variables.
#
# * Mandatory : NO
# * Default : -
2015-09-10 00:57:58 +03:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_MAINTAINER
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# The Debian package maintainer
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
2015-05-16 00:06:43 +03:00
# * Default : :code:`CPACK_PACKAGE_CONTACT`
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_DESCRIPTION
2015-04-29 19:05:36 +03:00
# CPACK_COMPONENT_<COMPONENT>_DESCRIPTION
#
2015-05-16 00:06:43 +03:00
# The Debian package description
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
2015-04-29 19:05:36 +03:00
# * Default :
2013-10-15 19:17:36 +04:00
#
2015-04-29 19:05:36 +03:00
# - :variable:`CPACK_DEBIAN_PACKAGE_DESCRIPTION` if set or
# - :variable:`CPACK_PACKAGE_DESCRIPTION_SUMMARY`
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_SECTION
2015-11-09 00:10:12 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_SECTION
2013-10-15 19:17:36 +04:00
#
2015-11-09 00:17:27 +03:00
# Set Section control field e.g. admin, devel, doc, ...
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
2016-05-31 23:06:39 +03:00
# * Default : "devel"
2013-10-15 19:17:36 +04:00
#
2015-11-09 00:17:27 +03:00
# See https://www.debian.org/doc/debian-policy/ch-archive.html#s-subsections
#
2014-03-10 09:37:26 +04:00
# .. variable:: CPACK_DEBIAN_COMPRESSION_TYPE
#
2015-05-16 00:06:43 +03:00
# The compression used for creating the Debian package.
#
2014-03-10 09:37:26 +04:00
# * Mandatory : YES
2016-05-31 23:06:39 +03:00
# * Default : "gzip"
2014-03-10 09:37:26 +04:00
#
2016-05-31 23:06:39 +03:00
# Possible values are:
#
# - lzma
# - xz
# - bzip2
# - gzip
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_PRIORITY
2015-11-09 00:35:30 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_PRIORITY
2013-10-15 19:17:36 +04:00
#
2015-11-09 00:35:30 +03:00
# Set Priority control field e.g. required, important, standard, optional,
# extra
2015-05-16 00:06:43 +03:00
#
2013-10-15 21:23:23 +04:00
# * Mandatory : YES
2016-05-31 23:06:39 +03:00
# * Default : "optional"
2013-10-15 19:17:36 +04:00
#
2015-11-09 00:35:30 +03:00
# See https://www.debian.org/doc/debian-policy/ch-archive.html#s-priorities
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_HOMEPAGE
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# 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.
2015-05-16 00:06:43 +03:00
#
# * Mandatory : NO
# * Default : -
#
# .. note::
#
# The content of this field is a simple URL without any surrounding
# characters such as <>.
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_SHLIBDEPS
2015-05-02 23:14:57 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_SHLIBDEPS
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# May be set to ON in order to use :code:`dpkg-shlibdeps` to generate
2013-10-15 21:23:23 +04:00
# better package dependency list.
2015-05-02 23:14:57 +03:00
#
# * Mandatory : NO
# * Default :
#
# - :variable:`CPACK_DEBIAN_PACKAGE_SHLIBDEPS` if set or
# - OFF
#
# .. note::
#
# You may need set :variable:`CMAKE_INSTALL_RPATH` to an appropriate value
# if you use this feature, because if you don't :code:`dpkg-shlibdeps`
# may fail to find your own shared libs.
2015-09-25 22:44:12 +03:00
# See https://cmake.org/Wiki/CMake_RPATH_handling.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# .. variable:: CPACK_DEBIAN_PACKAGE_DEBUG
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# May be set when invoking cpack in order to trace debug information
# during CPackDeb run.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# * Mandatory : NO
# * Default : -
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_PREDEPENDS
2015-09-10 00:57:58 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_PREDEPENDS
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# Sets the `Pre-Depends` field of the Debian package.
# Like :variable:`Depends <CPACK_DEBIAN_PACKAGE_DEPENDS>`, except that it
# also forces :code:`dpkg` to complete installation of the packages named
# before even starting the installation of the package which declares the
# pre-dependency.
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
2015-09-10 00:57:58 +03:00
# * Default :
#
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_PREDEPENDS` for component-based
# installations.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_ENHANCES
2015-09-10 00:57:58 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_ENHANCES
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# Sets the `Enhances` field of the Debian package.
# Similar to :variable:`Suggests <CPACK_DEBIAN_PACKAGE_SUGGESTS>` but works
# in the opposite direction: declares that a package can enhance the
# functionality of another package.
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
2015-09-10 00:57:58 +03:00
# * Default :
#
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_ENHANCES` for component-based
# installations.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_BREAKS
2015-09-10 00:57:58 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_BREAKS
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# Sets the `Breaks` field of the Debian package.
# When a binary package (P) declares that it breaks other packages (B),
# :code:`dpkg` will not allow the package (P) which declares `Breaks` be
# **unpacked** unless the packages that will be broken (B) are deconfigured
# first.
# As long as the package (P) is configured, the previously deconfigured
# packages (B) cannot be reconfigured again.
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
2015-09-10 00:57:58 +03:00
# * Default :
#
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_BREAKS` for component-based
# installations.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# See https://www.debian.org/doc/debian-policy/ch-relationships.html#s-breaks
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_CONFLICTS
2015-09-10 00:57:58 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_CONFLICTS
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# Sets the `Conflicts` field of the Debian package.
# When one binary package declares a conflict with another using a `Conflicts`
# field, :code:`dpkg` will not allow them to be unpacked on the system at
# the same time.
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
2015-09-10 00:57:58 +03:00
# * Default :
#
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_CONFLICTS` for component-based
# installations.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# See https://www.debian.org/doc/debian-policy/ch-relationships.html#s-conflicts
#
# .. note::
#
# This is a stronger restriction than
# :variable:`Breaks <CPACK_DEBIAN_PACKAGE_BREAKS>`, which prevents the
# broken package from being configured while the breaking package is in
# the "Unpacked" state but allows both packages to be unpacked at the same
# time.
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_PROVIDES
2015-09-10 00:57:58 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_PROVIDES
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# Sets the `Provides` field of the Debian package.
# A virtual package is one which appears in the `Provides` control field of
# another package.
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
2015-09-10 00:57:58 +03:00
# * Default :
#
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_PROVIDES` for component-based
# installations.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# See https://www.debian.org/doc/debian-policy/ch-relationships.html#s-virtual
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_REPLACES
2015-09-10 00:57:58 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_REPLACES
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# Sets the `Replaces` field of the Debian package.
# Packages can declare in their control file that they should overwrite
# files in certain other packages, or completely replace other packages.
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
2015-09-10 00:57:58 +03:00
# * Default :
#
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_REPLACES` for component-based
# installations.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_RECOMMENDS
2015-09-10 00:57:58 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_RECOMMENDS
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# Sets the `Recommends` field of the Debian package.
# Allows packages to declare a strong, but not absolute, dependency on other
# packages.
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
2015-09-10 00:57:58 +03:00
# * Default :
#
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_RECOMMENDS` for component-based
# installations.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_SUGGESTS
2015-09-10 00:57:58 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_SUGGESTS
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# Sets the `Suggests` field of the Debian package.
# Allows packages to declare a suggested package install grouping.
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
2015-09-10 00:57:58 +03:00
# * Default :
#
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_SUGGESTS` for component-based
# installations.
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
#
2016-05-10 15:17:40 +03:00
# .. variable:: CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS
#
# * Mandatory : NO
# * Default : OFF
#
# Allows to generate shlibs control file automatically. Compatibility is defined by
2016-05-31 23:06:39 +03:00
# :variable:`CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS_POLICY` variable value.
2016-05-10 15:17:40 +03:00
#
# .. note::
#
# Libraries are only considered if they have both library name and version
# set. This can be done by setting SOVERSION property with
# :command:`set_target_properties` command.
#
# .. variable:: CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS_POLICY
#
2016-05-31 23:06:39 +03:00
# Compatibility policy for auto-generated shlibs control file.
#
2016-05-10 15:17:40 +03:00
# * Mandatory : NO
# * Default : "="
#
# Defines compatibility policy for auto-generated shlibs control file.
# Possible values: "=", ">="
#
# See https://www.debian.org/doc/debian-policy/ch-sharedlibs.html#s-sharedlibs-shlibdeps
#
2013-10-15 21:23:23 +04:00
# .. variable:: CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
2015-07-13 23:25:44 +03:00
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_CONTROL_EXTRA
2013-10-15 19:17:36 +04:00
#
2015-05-16 00:06:43 +03:00
# This variable allow advanced user to add custom script to the
# control.tar.gz.
# Typical usage is for conffiles, postinst, postrm, prerm.
#
2013-10-15 21:23:23 +04:00
# * Mandatory : NO
# * Default : -
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# Usage::
2013-10-15 19:17:36 +04:00
#
2013-10-15 21:23:23 +04:00
# set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
# "${CMAKE_CURRENT_SOURCE_DIR/prerm;${CMAKE_CURRENT_SOURCE_DIR}/postrm")
2015-09-11 21:58:18 +03:00
#
# .. note::
#
# The original permissions of the files will be used in the final
# package unless the variable
# :variable:`CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION` is set.
# In particular, the scripts should have the proper executable
# flag prior to the generation of the package.
#
# .. variable:: CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_CONTROL_STRICT_PERMISSION
#
# This variable indicates if the Debian policy on control files should be
# strictly followed.
#
# * Mandatory : NO
# * Default : FALSE
#
# Usage::
#
# set(CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION TRUE)
#
# .. note::
#
# This overrides the permissions on the original files, following the rules
# set by Debian policy
# https://www.debian.org/doc/debian-policy/ch-files.html#s-permissions-owners
#
2015-11-04 02:19:58 +03:00
# .. variable:: CPACK_DEBIAN_PACKAGE_SOURCE
# CPACK_DEBIAN_<COMPONENT>_PACKAGE_SOURCE
#
# Sets the ``Source`` field of the binary Debian package.
# When the binary package name is not the same as the source package name
# (in particular when several components/binaries are generated from one
# source) the source from which the binary has been generated should be
# indicated with the field ``Source``.
#
# * Mandatory : NO
# * Default :
#
# - An empty string for non-component based installations
# - :variable:`CPACK_DEBIAN_PACKAGE_SOURCE` for component-based
# installations.
#
# See https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Source
#
# .. note::
#
# This value is not interpreted. It is possible to pass an optional
# revision number of the referenced source package as well.
2007-08-08 22:18:13 +04:00
2009-09-28 19:46:51 +04:00
#=============================================================================
# Copyright 2007-2009 Kitware, Inc.
2009-10-30 19:06:53 +03:00
# Copyright 2007-2009 Mathieu Malaterre <mathieu.malaterre@gmail.com>
2016-05-10 15:17:40 +03:00
# Copyright 2014-2016 Alexander Smorkalov <alexander.smorkalov@itseez.com>
# Copyright 2014-2016 Roman Donchenko <roman.donchenko@itseez.com>
# Copyright 2014-2016 Roman Kharitonov <roman.kharitonov@itseez.com>
# Copyright 2014-2016 Ilya Lavrenov <ilya.lavrenov@itseez.com>
2009-09-28 19:46:51 +04:00
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# 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.
#=============================================================================
2010-08-07 04:48:47 +04:00
# (To distribute this file outside of CMake, substitute the full
2009-09-28 19:46:51 +04:00
# License text for the above reference.)
2007-08-08 22:18:13 +04:00
# CPack script for creating Debian package
# Author: Mathieu Malaterre
#
# http://wiki.debian.org/HowToPackageForDebian
2012-08-13 21:47:32 +04:00
if ( CMAKE_BINARY_DIR )
message ( FATAL_ERROR "CPackDeb.cmake may only be used by CPack internally." )
2012-08-13 21:50:14 +04:00
endif ( )
2007-07-25 18:57:33 +04:00
2012-08-13 21:47:32 +04:00
if ( NOT UNIX )
message ( FATAL_ERROR "CPackDeb.cmake may only be used under UNIX." )
2012-08-13 21:50:14 +04:00
endif ( )
2007-07-25 18:57:33 +04:00
2016-05-23 20:51:33 +03:00
function ( cpack_deb_variable_fallback OUTPUT_VAR_NAME )
set ( FALLBACK_VAR_NAMES ${ ARGN } )
foreach ( variable_name IN LISTS FALLBACK_VAR_NAMES )
if ( ${ variable_name } )
set ( ${ OUTPUT_VAR_NAME } "${${variable_name}}" PARENT_SCOPE )
break ( )
endif ( )
endforeach ( )
endfunction ( )
2016-05-10 15:53:19 +03:00
function ( get_component_package_name var component )
string ( TOUPPER "${component}" component_upcase )
if ( CPACK_DEBIAN_ ${ component_upcase } _PACKAGE_NAME )
string ( TOLOWER "${CPACK_DEBIAN_${component_upcase}_PACKAGE_NAME}" package_name )
else ( )
string ( TOLOWER "${CPACK_DEBIAN_PACKAGE_NAME}-${component}" package_name )
endif ( )
set ( "${var}" "${package_name}" PARENT_SCOPE )
endfunction ( )
2016-05-10 15:17:40 +03:00
#extract library name and version for given shared object
function ( extract_so_info shared_object libname version )
if ( READELF_EXECUTABLE )
execute_process ( COMMAND "${READELF_EXECUTABLE}" -d "${shared_object}"
W O R K I N G _ D I R E C T O R Y " $ { C P A C K _ T E M P O R A R Y _ D I R E C T O R Y } "
R E S U L T _ V A R I A B L E r e s u l t
O U T P U T _ V A R I A B L E o u t p u t
E R R O R _ Q U I E T
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
if ( result EQUAL 0 )
string ( REGEX MATCH "\\(SONAME\\)[^\n]*\\[([^\n]+)\\.so\\.([^\n]*)\\]" soname "${output}" )
set ( ${ libname } "${CMAKE_MATCH_1}" PARENT_SCOPE )
set ( ${ version } "${CMAKE_MATCH_2}" PARENT_SCOPE )
else ( )
message ( WARNING "Error running readelf for \" ${ shared_object } \"")
endif ( )
else ( )
message ( FATAL_ERROR "Readelf utility is not available." )
endif ( )
endfunction ( )
2015-04-20 21:48:24 +03:00
function ( cpack_deb_prepare_package_vars )
# CPACK_DEBIAN_PACKAGE_SHLIBDEPS
# If specify OFF, only user depends are used
if ( NOT DEFINED CPACK_DEBIAN_PACKAGE_SHLIBDEPS )
set ( CPACK_DEBIAN_PACKAGE_SHLIBDEPS OFF )
endif ( )
2010-07-28 20:24:20 +04:00
2015-05-02 23:14:57 +03:00
set ( WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}${CPACK_DEB_PACKAGE_COMPONENT_PART_PATH}" )
# per component automatic discover: some of the component might not have
# binaries.
if ( CPACK_DEB_PACKAGE_COMPONENT )
string ( TOUPPER "${CPACK_DEB_PACKAGE_COMPONENT}" _local_component_name )
set ( _component_shlibdeps_var "CPACK_DEBIAN_${_local_component_name}_PACKAGE_SHLIBDEPS" )
# if set, overrides the global configuration
if ( DEFINED ${ _component_shlibdeps_var } )
set ( CPACK_DEBIAN_PACKAGE_SHLIBDEPS "${${_component_shlibdeps_var}}" )
if ( CPACK_DEBIAN_PACKAGE_DEBUG )
message ( "CPackDeb Debug: component '${CPACK_DEB_PACKAGE_COMPONENT}' dpkg-shlibdeps set to ${CPACK_DEBIAN_PACKAGE_SHLIBDEPS}" )
endif ( )
endif ( )
endif ( )
2016-05-10 15:17:40 +03:00
if ( CPACK_DEBIAN_PACKAGE_SHLIBDEPS OR CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS )
# Generating binary list - Get type of all install files
cmake_policy ( PUSH )
# Tell file(GLOB_RECURSE) not to follow directory symlinks
# even if the project does not set this policy to NEW.
cmake_policy ( SET CMP0009 NEW )
file ( GLOB_RECURSE FILE_PATHS_ LIST_DIRECTORIES false RELATIVE "${WDIR}" "${WDIR}/*" )
cmake_policy ( POP )
# get file info so that we can determine if file is executable or not
unset ( CPACK_DEB_INSTALL_FILES )
foreach ( FILE_ IN LISTS FILE_PATHS_ )
execute_process ( COMMAND file "./${FILE_}"
W O R K I N G _ D I R E C T O R Y " $ { W D I R } "
O U T P U T _ V A R I A B L E I N S T A L L _ F I L E _ )
list ( APPEND CPACK_DEB_INSTALL_FILES "${INSTALL_FILE_}" )
endforeach ( )
# Only dynamically linked ELF files are included
# Extract only file name infront of ":"
foreach ( _FILE IN LISTS CPACK_DEB_INSTALL_FILES )
if ( _FILE MATCHES "ELF.*dynamically linked" )
string ( REGEX MATCH "(^.*):" _FILE_NAME "${_FILE}" )
list ( APPEND CPACK_DEB_BINARY_FILES "${CMAKE_MATCH_1}" )
set ( CONTAINS_EXECUTABLE_FILES_ TRUE )
endif ( )
if ( _FILE MATCHES "ELF.*shared object" )
string ( REGEX MATCH "(^.*):" _FILE_NAME "${_FILE}" )
list ( APPEND CPACK_DEB_SHARED_OBJECT_FILES "${CMAKE_MATCH_1}" )
endif ( )
endforeach ( )
endif ( )
2015-04-20 21:48:24 +03:00
if ( CPACK_DEBIAN_PACKAGE_SHLIBDEPS )
# dpkg-shlibdeps is a Debian utility for generating dependency list
find_program ( SHLIBDEPS_EXECUTABLE dpkg-shlibdeps )
if ( SHLIBDEPS_EXECUTABLE )
2015-05-02 23:14:57 +03:00
# Check version of the dpkg-shlibdeps tool using CPackRPM method
2015-04-20 21:48:24 +03:00
execute_process ( COMMAND env LC_ALL=C ${ SHLIBDEPS_EXECUTABLE } --version
O U T P U T _ V A R I A B L E _ T M P _ V E R S I O N
E R R O R _ Q U I E T
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
2015-06-03 16:21:52 +03:00
if ( _TMP_VERSION MATCHES "dpkg-shlibdeps version ([0-9]+\\.[0-9]+\\.[0-9]+)" )
set ( SHLIBDEPS_EXECUTABLE_VERSION "${CMAKE_MATCH_1}" )
else ( )
set ( SHLIBDEPS_EXECUTABLE_VERSION "" )
endif ( )
2015-05-02 23:14:57 +03:00
2015-04-20 21:48:24 +03:00
if ( CPACK_DEBIAN_PACKAGE_DEBUG )
2015-05-02 23:14:57 +03:00
message ( "CPackDeb Debug: dpkg-shlibdeps --version output is '${_TMP_VERSION}'" )
message ( "CPackDeb Debug: dpkg-shlibdeps version is <${SHLIBDEPS_EXECUTABLE_VERSION}>" )
2015-04-20 21:48:24 +03:00
endif ( )
2010-07-28 20:24:20 +04:00
2015-05-02 23:14:57 +03:00
if ( CONTAINS_EXECUTABLE_FILES_ )
message ( "CPackDeb: - Generating dependency list" )
2010-07-28 20:24:20 +04:00
2015-05-02 23:14:57 +03:00
# Create blank control file for running dpkg-shlibdeps
# There might be some other way to invoke dpkg-shlibdeps without creating this file
# but standard debian package should not have anything that can collide with this file or directory
file ( MAKE_DIRECTORY ${ CPACK_TEMPORARY_DIRECTORY } /debian )
file ( WRITE ${ CPACK_TEMPORARY_DIRECTORY } /debian/control "" )
2010-07-28 20:24:20 +04:00
2016-02-19 03:27:36 +03:00
# Create a DEBIAN directory so that dpkg-shlibdeps can find the package dir when resolving $ORIGIN.
file ( MAKE_DIRECTORY "${CPACK_TEMPORARY_DIRECTORY}/DEBIAN" )
2015-06-03 16:23:02 +03:00
# Add --ignore-missing-info if the tool supports it
execute_process ( COMMAND env LC_ALL=C ${ SHLIBDEPS_EXECUTABLE } --help
O U T P U T _ V A R I A B L E _ T M P _ H E L P
E R R O R _ Q U I E T
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
if ( _TMP_HELP MATCHES "--ignore-missing-info" )
2015-05-02 23:14:57 +03:00
set ( IGNORE_MISSING_INFO_FLAG "--ignore-missing-info" )
endif ( )
# Execute dpkg-shlibdeps
# --ignore-missing-info : allow dpkg-shlibdeps to run even if some libs do not belong to a package
# -O : print to STDOUT
execute_process ( COMMAND ${ SHLIBDEPS_EXECUTABLE } ${ IGNORE_MISSING_INFO_FLAG } -O ${ CPACK_DEB_BINARY_FILES }
W O R K I N G _ D I R E C T O R Y " $ { C P A C K _ T E M P O R A R Y _ D I R E C T O R Y } "
O U T P U T _ V A R I A B L E S H L I B D E P S _ O U T P U T
R E S U L T _ V A R I A B L E S H L I B D E P S _ R E S U L T
E R R O R _ V A R I A B L E S H L I B D E P S _ E R R O R
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
if ( CPACK_DEBIAN_PACKAGE_DEBUG )
# dpkg-shlibdeps will throw some warnings if some input files are not binary
message ( "CPackDeb Debug: dpkg-shlibdeps warnings \n${SHLIBDEPS_ERROR}" )
endif ( )
if ( NOT SHLIBDEPS_RESULT EQUAL 0 )
message ( FATAL_ERROR "CPackDeb: dpkg-shlibdeps: '${SHLIBDEPS_ERROR}';\n"
" e x e c u t e d c o m m a n d : ' $ { S H L I B D E P S _ E X E C U T A B L E } $ { I G N O R E _ M I S S I N G _ I N F O _ F L A G } - O $ { C P A C K _ D E B _ B I N A R Y _ F I L E S } ' ; \ n "
" f o u n d f i l e s : ' $ { I N S T A L L _ F I L E _ } ' ; \ n "
" f i l e s i n f o : ' $ { C P A C K _ D E B _ I N S T A L L _ F I L E S } ' ; \ n "
" b i n a r y f i l e s : ' $ { C P A C K _ D E B _ B I N A R Y _ F I L E S } ' " )
endif ( )
#Get rid of prefix generated by dpkg-shlibdeps
string ( REGEX REPLACE "^.*Depends=" "" CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS "${SHLIBDEPS_OUTPUT}" )
2015-04-20 21:48:24 +03:00
2015-05-02 23:14:57 +03:00
if ( CPACK_DEBIAN_PACKAGE_DEBUG )
2015-05-09 00:36:26 +03:00
message ( "CPackDeb Debug: Found dependency: ${CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS} from output ${SHLIBDEPS_OUTPUT}" )
2015-05-02 23:14:57 +03:00
endif ( )
2010-07-28 20:24:20 +04:00
2015-05-02 23:14:57 +03:00
# Remove blank control file
# Might not be safe if package actual contain file or directory named debian
file ( REMOVE_RECURSE "${CPACK_TEMPORARY_DIRECTORY}/debian" )
2016-02-19 03:27:36 +03:00
# remove temporary directory that was created only for dpkg-shlibdeps execution
file ( REMOVE_RECURSE "${CPACK_TEMPORARY_DIRECTORY}/DEBIAN" )
2015-05-02 23:14:57 +03:00
else ( )
if ( CPACK_DEBIAN_PACKAGE_DEBUG )
2015-05-09 00:36:26 +03:00
message ( AUTHOR_WARNING "CPackDeb Debug: Using only user-provided depends because package does not contain executable files that link to shared libraries." )
2015-05-02 23:14:57 +03:00
endif ( )
endif ( )
else ( )
2015-05-09 00:36:26 +03:00
message ( "CPackDeb: Using only user-provided dependencies because dpkg-shlibdeps is not found." )
2015-04-20 21:48:24 +03:00
endif ( )
2012-08-13 21:47:32 +04:00
2015-05-02 23:14:57 +03:00
else ( )
2012-08-13 21:47:32 +04:00
if ( CPACK_DEBIAN_PACKAGE_DEBUG )
2015-05-09 00:36:26 +03:00
message ( "CPackDeb Debug: Using only user-provided dependencies" )
2012-08-13 21:50:14 +04:00
endif ( )
endif ( )
2012-08-13 21:47:32 +04:00
2015-04-20 21:48:24 +03:00
# Let's define the control file found in debian package:
2007-07-27 16:59:59 +04:00
2015-04-20 21:48:24 +03:00
# Binary package:
# http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-binarycontrolfiles
2007-08-08 22:18:13 +04:00
2015-04-20 21:48:24 +03:00
# DEBIAN/control
# debian policy enforce lower case for package name
# Package: (mandatory)
if ( NOT CPACK_DEBIAN_PACKAGE_NAME )
string ( TOLOWER "${CPACK_PACKAGE_NAME}" CPACK_DEBIAN_PACKAGE_NAME )
2012-08-13 21:50:14 +04:00
endif ( )
2007-07-27 16:59:59 +04:00
2015-04-20 21:48:24 +03:00
# Version: (mandatory)
if ( NOT CPACK_DEBIAN_PACKAGE_VERSION )
if ( NOT CPACK_PACKAGE_VERSION )
message ( FATAL_ERROR "CPackDeb: Debian package requires a package version" )
endif ( )
set ( CPACK_DEBIAN_PACKAGE_VERSION ${ CPACK_PACKAGE_VERSION } )
2012-08-13 21:50:14 +04:00
endif ( )
2007-07-27 16:59:59 +04:00
2015-04-20 21:48:24 +03:00
# Architecture: (mandatory)
2016-05-10 15:55:52 +03:00
if ( CPACK_DEB_PACKAGE_COMPONENT AND CPACK_DEBIAN_ ${ _local_component_name } _PACKAGE_ARCHITECTURE )
set ( CPACK_DEBIAN_PACKAGE_ARCHITECTURE "${CPACK_DEBIAN_${_local_component_name}_PACKAGE_ARCHITECTURE}" )
elseif ( NOT CPACK_DEBIAN_PACKAGE_ARCHITECTURE )
2015-04-20 21:48:24 +03:00
# There is no such thing as i686 architecture on debian, you should use i386 instead
# $ dpkg --print-architecture
find_program ( DPKG_CMD dpkg )
if ( NOT DPKG_CMD )
message ( STATUS "CPackDeb: Can not find dpkg in your path, default to i386." )
set ( CPACK_DEBIAN_PACKAGE_ARCHITECTURE i386 )
endif ( )
execute_process ( COMMAND "${DPKG_CMD}" --print-architecture
O U T P U T _ V A R I A B L E C P A C K _ D E B I A N _ P A C K A G E _ A R C H I T E C T U R E
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E
)
endif ( )
2007-07-27 16:59:59 +04:00
2015-11-04 02:19:58 +03:00
# Source: (optional)
# in case several packages are constructed from a unique source
# (multipackaging), the source may be indicated as well.
# The source might contain a version if the generated package
# version is different from the source version
if ( NOT CPACK_DEBIAN_PACKAGE_SOURCE )
set ( CPACK_DEBIAN_PACKAGE_SOURCE "" )
endif ( )
2015-04-20 21:48:24 +03:00
# have a look at get_property(result GLOBAL PROPERTY ENABLED_FEATURES),
# this returns the successful find_package() calls, maybe this can help
# Depends:
# You should set: DEBIAN_PACKAGE_DEPENDS
# TODO: automate 'objdump -p | grep NEEDED'
2015-05-09 00:36:26 +03:00
2015-11-09 00:10:12 +03:00
# if per-component variable, overrides the global CPACK_DEBIAN_PACKAGE_${variable_type_}
2015-05-09 00:36:26 +03:00
# automatic dependency discovery will be performed afterwards.
if ( CPACK_DEB_PACKAGE_COMPONENT )
2015-11-09 01:44:00 +03:00
foreach ( value_type_ DEPENDS RECOMMENDS SUGGESTS PREDEPENDS ENHANCES BREAKS CONFLICTS PROVIDES REPLACES SOURCE SECTION PRIORITY NAME )
2015-11-09 00:10:12 +03:00
set ( _component_var "CPACK_DEBIAN_${_local_component_name}_PACKAGE_${value_type_}" )
2015-05-09 00:36:26 +03:00
2015-11-09 00:10:12 +03:00
# if set, overrides the global variable
2015-09-10 00:57:58 +03:00
if ( DEFINED ${ _component_var } )
2015-11-09 00:10:12 +03:00
set ( CPACK_DEBIAN_PACKAGE_ ${ value_type_ } "${${_component_var}}" )
2015-09-10 00:57:58 +03:00
if ( CPACK_DEBIAN_PACKAGE_DEBUG )
2015-11-09 00:10:12 +03:00
message ( "CPackDeb Debug: component '${_local_component_name}' ${value_type_} "
" v a l u e s e t t o ' $ { C P A C K _ D E B I A N _ P A C K A G E _ $ { v a l u e _ t y p e _ } } ' " )
2015-09-10 00:57:58 +03:00
endif ( )
2015-05-09 00:36:26 +03:00
endif ( )
2015-09-10 00:57:58 +03:00
endforeach ( )
2016-05-23 21:21:32 +03:00
if ( CPACK_DEBIAN_ENABLE_COMPONENT_DEPENDS )
set ( COMPONENT_DEPENDS "" )
foreach ( _PACK ${ CPACK_COMPONENT_${_local_component_name } _DEPENDS} )
get_component_package_name ( _PACK_NAME "${_PACK}" )
if ( COMPONENT_DEPENDS )
set ( COMPONENT_DEPENDS "${_PACK_NAME} (= ${CPACK_DEBIAN_PACKAGE_VERSION}), ${COMPONENT_DEPENDS}" )
else ( )
set ( COMPONENT_DEPENDS "${_PACK_NAME} (= ${CPACK_DEBIAN_PACKAGE_VERSION})" )
endif ( )
endforeach ( )
2016-05-10 15:31:23 +03:00
if ( COMPONENT_DEPENDS )
2016-05-23 21:21:32 +03:00
if ( CPACK_DEBIAN_PACKAGE_DEPENDS )
set ( CPACK_DEBIAN_PACKAGE_DEPENDS "${COMPONENT_DEPENDS}, ${CPACK_DEBIAN_PACKAGE_DEPENDS}" )
else ( )
set ( CPACK_DEBIAN_PACKAGE_DEPENDS "${COMPONENT_DEPENDS}" )
endif ( )
2016-05-10 15:31:23 +03:00
endif ( )
endif ( )
2015-05-09 00:36:26 +03:00
endif ( )
# at this point, the CPACK_DEBIAN_PACKAGE_DEPENDS is properly set
# to the minimal dependency of the package
# Append automatically discovered dependencies .
if ( NOT "${CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS}" STREQUAL "" )
if ( CPACK_DEBIAN_PACKAGE_DEPENDS )
2016-05-10 15:31:23 +03:00
set ( CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_DEPENDS}, ${CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS}" )
2015-05-09 00:36:26 +03:00
else ( )
set ( CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS}" )
endif ( )
endif ( )
2015-04-20 21:48:24 +03:00
if ( NOT CPACK_DEBIAN_PACKAGE_DEPENDS )
message ( STATUS "CPACK_DEBIAN_PACKAGE_DEPENDS not set, the package will have no dependencies." )
2012-08-13 21:50:14 +04:00
endif ( )
2007-07-27 16:59:59 +04:00
2015-04-20 21:48:24 +03:00
# Maintainer: (mandatory)
if ( NOT CPACK_DEBIAN_PACKAGE_MAINTAINER )
if ( NOT CPACK_PACKAGE_CONTACT )
message ( FATAL_ERROR "CPackDeb: Debian package requires a maintainer for a package, set CPACK_PACKAGE_CONTACT or CPACK_DEBIAN_PACKAGE_MAINTAINER" )
endif ( )
set ( CPACK_DEBIAN_PACKAGE_MAINTAINER ${ CPACK_PACKAGE_CONTACT } )
2012-08-13 21:50:14 +04:00
endif ( )
2007-08-08 22:18:13 +04:00
2015-04-20 21:48:24 +03:00
# Description: (mandatory)
2015-04-29 19:05:36 +03:00
if ( NOT CPACK_DEB_PACKAGE_COMPONENT )
if ( NOT CPACK_DEBIAN_PACKAGE_DESCRIPTION )
if ( NOT CPACK_PACKAGE_DESCRIPTION_SUMMARY )
message ( FATAL_ERROR "CPackDeb: Debian package requires a summary for a package, set CPACK_PACKAGE_DESCRIPTION_SUMMARY or CPACK_DEBIAN_PACKAGE_DESCRIPTION" )
endif ( )
set ( CPACK_DEBIAN_PACKAGE_DESCRIPTION ${ CPACK_PACKAGE_DESCRIPTION_SUMMARY } )
endif ( )
else ( )
set ( component_description_var CPACK_COMPONENT_ ${ _local_component_name } _DESCRIPTION )
# component description overrides package description
if ( ${ component_description_var } )
set ( CPACK_DEBIAN_PACKAGE_DESCRIPTION ${ ${component_description_var } } )
elseif ( NOT CPACK_DEBIAN_PACKAGE_DESCRIPTION )
if ( NOT CPACK_PACKAGE_DESCRIPTION_SUMMARY )
message ( FATAL_ERROR "CPackDeb: Debian package requires a summary for a package, set CPACK_PACKAGE_DESCRIPTION_SUMMARY or CPACK_DEBIAN_PACKAGE_DESCRIPTION or ${component_description_var}" )
endif ( )
set ( CPACK_DEBIAN_PACKAGE_DESCRIPTION ${ CPACK_PACKAGE_DESCRIPTION_SUMMARY } )
2015-04-20 21:48:24 +03:00
endif ( )
endif ( )
2007-08-08 22:18:13 +04:00
2015-04-20 21:48:24 +03:00
# Section: (recommended)
if ( NOT CPACK_DEBIAN_PACKAGE_SECTION )
set ( CPACK_DEBIAN_PACKAGE_SECTION "devel" )
endif ( )
2007-08-08 22:18:13 +04:00
2015-04-20 21:48:24 +03:00
# Priority: (recommended)
if ( NOT CPACK_DEBIAN_PACKAGE_PRIORITY )
set ( CPACK_DEBIAN_PACKAGE_PRIORITY "optional" )
endif ( )
2014-03-10 09:37:26 +04:00
2015-04-20 21:48:24 +03:00
# Compression: (recommended)
if ( NOT CPACK_DEBIAN_COMPRESSION_TYPE )
set ( CPACK_DEBIAN_COMPRESSION_TYPE "gzip" )
endif ( )
2014-03-10 09:37:26 +04:00
2011-03-11 10:47:15 +03:00
2015-04-20 21:48:24 +03:00
# Recommends:
# You should set: CPACK_DEBIAN_PACKAGE_RECOMMENDS
# Suggests:
# You should set: CPACK_DEBIAN_PACKAGE_SUGGESTS
# CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
# This variable allow advanced user to add custom script to the control.tar.gz (inside the .deb archive)
# Typical examples are:
# - conffiles
# - postinst
# - postrm
2015-07-13 23:25:44 +03:00
# - prerm
2015-04-20 21:48:24 +03:00
# Usage:
# set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
# "${CMAKE_CURRENT_SOURCE_DIR/prerm;${CMAKE_CURRENT_SOURCE_DIR}/postrm")
# Are we packaging components ?
if ( CPACK_DEB_PACKAGE_COMPONENT )
2015-07-13 23:25:44 +03:00
# override values with per component version if set
2015-09-11 21:58:18 +03:00
foreach ( VAR_NAME_ "PACKAGE_CONTROL_EXTRA" "PACKAGE_CONTROL_STRICT_PERMISSION" )
2015-07-13 23:25:44 +03:00
if ( CPACK_DEBIAN_ ${ _local_component_name } _ ${ VAR_NAME_ } )
set ( CPACK_DEBIAN_ ${ VAR_NAME_ } "${CPACK_DEBIAN_${_local_component_name}_${VAR_NAME_}}" )
endif ( )
endforeach ( )
2016-05-10 15:53:19 +03:00
get_component_package_name ( CPACK_DEBIAN_PACKAGE_NAME ${ _local_component_name } )
2015-04-20 21:48:24 +03:00
endif ( )
2007-08-08 22:18:13 +04:00
2016-05-10 15:17:40 +03:00
set ( CPACK_DEBIAN_PACKAGE_SHLIBS_LIST "" )
if ( NOT CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS_POLICY )
set ( CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS_POLICY "=" )
endif ( )
find_program ( READELF_EXECUTABLE NAMES readelf )
if ( CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS )
if ( READELF_EXECUTABLE )
foreach ( _FILE IN LISTS CPACK_DEB_SHARED_OBJECT_FILES )
extract_so_info ( "${_FILE}" libname soversion )
if ( libname AND soversion )
list ( APPEND CPACK_DEBIAN_PACKAGE_SHLIBS_LIST
" $ { l i b n a m e } $ { s o v e r s i o n } $ { C P A C K _ D E B I A N _ P A C K A G E _ N A M E } ( $ { C P A C K _ D E B I A N _ P A C K A G E _ G E N E R A T E _ S H L I B S _ P O L I C Y } $ { C P A C K _ P A C K A G E _ V E R S I O N } ) " )
else ( )
message ( AUTHOR_WARNING "Shared library '${_FILE}' is missing soname or soversion. Library will not be added to DEBIAN/shlibs control file." )
endif ( )
endforeach ( )
if ( CPACK_DEBIAN_PACKAGE_SHLIBS_LIST )
string ( REPLACE ";" "\n" CPACK_DEBIAN_PACKAGE_SHLIBS_LIST "${CPACK_DEBIAN_PACKAGE_SHLIBS_LIST}" )
endif ( )
else ( )
message ( FATAL_ERROR "Readelf utility is not available. CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS option is not available." )
endif ( )
endif ( )
2016-05-10 15:25:25 +03:00
# add ldconfig call in default postrm and postint
set ( CPACK_ADD_LDCONFIG_CALL 0 )
foreach ( _FILE ${ CPACK_DEB_SHARED_OBJECT_FILES } )
get_filename_component ( _DIR ${ _FILE } DIRECTORY )
# all files in CPACK_DEB_SHARED_OBJECT_FILES have dot at the beginning
if ( _DIR STREQUAL "./lib" OR _DIR STREQUAL "./usr/lib" )
set ( CPACK_ADD_LDCONFIG_CALL 1 )
endif ( )
endforeach ( )
if ( CPACK_ADD_LDCONFIG_CALL )
set ( CPACK_DEBIAN_GENERATE_POSTINST 1 )
set ( CPACK_DEBIAN_GENERATE_POSTRM 1 )
foreach ( f ${ PACKAGE_CONTROL_EXTRA } )
get_filename_component ( n "${f}" NAME )
if ( "${n}" STREQUAL "postinst" )
set ( CPACK_DEBIAN_GENERATE_POSTINST 0 )
endif ( )
if ( "${n}" STREQUAL "postrm" )
set ( CPACK_DEBIAN_GENERATE_POSTRM 0 )
endif ( )
endforeach ( )
else ( )
set ( CPACK_DEBIAN_GENERATE_POSTINST 0 )
set ( CPACK_DEBIAN_GENERATE_POSTRM 0 )
endif ( )
2016-05-10 19:33:08 +03:00
if ( NOT CPACK_DEBIAN_PACKAGE_RELEASE )
set ( CPACK_DEBIAN_PACKAGE_RELEASE 1 )
endif ( )
2016-05-23 20:51:33 +03:00
cpack_deb_variable_fallback ( "CPACK_DEBIAN_FILE_NAME"
" C P A C K _ D E B I A N _ $ { _ l o c a l _ c o m p o n e n t _ n a m e } _ F I L E _ N A M E "
" C P A C K _ D E B I A N _ F I L E _ N A M E " )
if ( CPACK_DEBIAN_FILE_NAME )
if ( CPACK_DEBIAN_FILE_NAME STREQUAL "DEB-DEFAULT" )
# Patch package file name to be in corrent debian format:
# <foo>_<VersionNumber>-<DebianRevisionNumber>_<DebianArchitecture>.deb
set ( CPACK_OUTPUT_FILE_NAME
" $ { C P A C K _ D E B I A N _ P A C K A G E _ N A M E } _ $ { C P A C K _ P A C K A G E _ V E R S I O N } - $ { C P A C K _ D E B I A N _ P A C K A G E _ R E L E A S E } _ $ { C P A C K _ D E B I A N _ P A C K A G E _ A R C H I T E C T U R E } . d e b " )
else ( )
cmake_policy ( PUSH )
cmake_policy ( SET CMP0010 NEW )
if ( NOT CPACK_DEBIAN_FILE_NAME MATCHES ".*\\.deb" )
cmake_policy ( POP )
message ( FATAL_ERROR "'${CPACK_DEBIAN_FILE_NAME}' is not a valid DEB package file name as it must end with '.deb'!" )
endif ( )
cmake_policy ( POP )
set ( CPACK_OUTPUT_FILE_NAME "${CPACK_DEBIAN_FILE_NAME}" )
endif ( )
set ( CPACK_TEMPORARY_PACKAGE_FILE_NAME "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_OUTPUT_FILE_NAME}" )
get_filename_component ( BINARY_DIR "${CPACK_OUTPUT_FILE_PATH}" DIRECTORY )
set ( CPACK_OUTPUT_FILE_PATH "${BINARY_DIR}/${CPACK_OUTPUT_FILE_NAME}" )
endif ( ) # else() back compatibility - don't change the name
2016-05-10 19:31:05 +03:00
2015-04-20 21:48:24 +03:00
# Print out some debug information if we were asked for that
if ( CPACK_DEBIAN_PACKAGE_DEBUG )
2015-11-04 02:16:11 +03:00
message ( "CPackDeb:Debug: CPACK_TOPLEVEL_DIRECTORY = '${CPACK_TOPLEVEL_DIRECTORY}'" )
message ( "CPackDeb:Debug: CPACK_TOPLEVEL_TAG = '${CPACK_TOPLEVEL_TAG}'" )
message ( "CPackDeb:Debug: CPACK_TEMPORARY_DIRECTORY = '${CPACK_TEMPORARY_DIRECTORY}'" )
message ( "CPackDeb:Debug: CPACK_OUTPUT_FILE_NAME = '${CPACK_OUTPUT_FILE_NAME}'" )
message ( "CPackDeb:Debug: CPACK_OUTPUT_FILE_PATH = '${CPACK_OUTPUT_FILE_PATH}'" )
message ( "CPackDeb:Debug: CPACK_PACKAGE_FILE_NAME = '${CPACK_PACKAGE_FILE_NAME}'" )
message ( "CPackDeb:Debug: CPACK_PACKAGE_INSTALL_DIRECTORY = '${CPACK_PACKAGE_INSTALL_DIRECTORY}'" )
message ( "CPackDeb:Debug: CPACK_TEMPORARY_PACKAGE_FILE_NAME = '${CPACK_TEMPORARY_PACKAGE_FILE_NAME}'" )
message ( "CPackDeb:Debug: CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION = '${CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION}'" )
2015-11-04 02:19:58 +03:00
message ( "CPackDeb:Debug: CPACK_DEBIAN_PACKAGE_SOURCE = '${CPACK_DEBIAN_PACKAGE_SOURCE}'" )
2015-04-20 21:48:24 +03:00
endif ( )
2007-08-08 22:18:13 +04:00
2015-04-20 21:48:24 +03:00
# For debian source packages:
# debian/control
# http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-sourcecontrolfiles
# .dsc
# http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-debiansourcecontrolfiles
# Builds-Depends:
#if(NOT CPACK_DEBIAN_PACKAGE_BUILDS_DEPENDS)
# set(CPACK_DEBIAN_PACKAGE_BUILDS_DEPENDS
# "debhelper (>> 5.0.0), libncurses5-dev, tcl8.4"
# )
#endif()
# move variables to parent scope so that they may be used to create debian package
2016-05-10 15:53:19 +03:00
set ( GEN_CPACK_OUTPUT_FILE_NAME "${CPACK_OUTPUT_FILE_NAME}" PARENT_SCOPE )
set ( GEN_CPACK_TEMPORARY_PACKAGE_FILE_NAME "${CPACK_TEMPORARY_PACKAGE_FILE_NAME}" PARENT_SCOPE )
2015-04-20 21:48:24 +03:00
set ( GEN_CPACK_DEBIAN_PACKAGE_NAME "${CPACK_DEBIAN_PACKAGE_NAME}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_VERSION "${CPACK_DEBIAN_PACKAGE_VERSION}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_SECTION "${CPACK_DEBIAN_PACKAGE_SECTION}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_PRIORITY "${CPACK_DEBIAN_PACKAGE_PRIORITY}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_ARCHITECTURE "${CPACK_DEBIAN_PACKAGE_ARCHITECTURE}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_MAINTAINER "${CPACK_DEBIAN_PACKAGE_MAINTAINER}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_DESCRIPTION "${CPACK_DEBIAN_PACKAGE_DESCRIPTION}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_DEPENDS}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_COMPRESSION_TYPE "${CPACK_DEBIAN_COMPRESSION_TYPE}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_RECOMMENDS "${CPACK_DEBIAN_PACKAGE_RECOMMENDS}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_SUGGESTS "${CPACK_DEBIAN_PACKAGE_SUGGESTS}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_HOMEPAGE "${CPACK_DEBIAN_PACKAGE_HOMEPAGE}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_PREDEPENDS "${CPACK_DEBIAN_PACKAGE_PREDEPENDS}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_ENHANCES "${CPACK_DEBIAN_PACKAGE_ENHANCES}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_BREAKS "${CPACK_DEBIAN_PACKAGE_BREAKS}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_CONFLICTS "${CPACK_DEBIAN_PACKAGE_CONFLICTS}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_PROVIDES "${CPACK_DEBIAN_PACKAGE_PROVIDES}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_PACKAGE_REPLACES "${CPACK_DEBIAN_PACKAGE_REPLACES}" PARENT_SCOPE )
2016-05-10 15:17:40 +03:00
set ( GEN_CPACK_DEBIAN_PACKAGE_SHLIBS "${CPACK_DEBIAN_PACKAGE_SHLIBS_LIST}" PARENT_SCOPE )
2015-04-20 21:48:24 +03:00
set ( GEN_CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA}" PARENT_SCOPE )
2015-09-11 21:58:18 +03:00
set ( GEN_CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION
" $ { C P A C K _ D E B I A N _ P A C K A G E _ C O N T R O L _ S T R I C T _ P E R M I S S I O N } " P A R E N T _ S C O P E )
2015-11-04 02:19:58 +03:00
set ( GEN_CPACK_DEBIAN_PACKAGE_SOURCE
" $ { C P A C K _ D E B I A N _ P A C K A G E _ S O U R C E } " P A R E N T _ S C O P E )
2016-05-10 15:25:25 +03:00
set ( GEN_CPACK_DEBIAN_GENERATE_POSTINST "${CPACK_DEBIAN_GENERATE_POSTINST}" PARENT_SCOPE )
set ( GEN_CPACK_DEBIAN_GENERATE_POSTRM "${CPACK_DEBIAN_GENERATE_POSTRM}" PARENT_SCOPE )
2015-04-20 21:48:24 +03:00
set ( GEN_WDIR "${WDIR}" PARENT_SCOPE )
endfunction ( )
cpack_deb_prepare_package_vars ( )