CPackDeb.cmake 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024
  1. #.rst:
  2. # CPackDeb
  3. # --------
  4. #
  5. # The built in (binary) CPack Deb generator (Unix only)
  6. #
  7. # Variables specific to CPack Debian (DEB) generator
  8. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  9. #
  10. # CPackDeb may be used to create Deb package using :module:`CPack`.
  11. # CPackDeb is a :module:`CPack` generator thus it uses the ``CPACK_XXX``
  12. # variables used by :module:`CPack`.
  13. #
  14. # CPackDeb generator should work on any Linux host but it will produce
  15. # better deb package when Debian specific tools ``dpkg-xxx`` are usable on
  16. # the build system.
  17. #
  18. # CPackDeb has specific features which are controlled by the specifics
  19. # :code:`CPACK_DEBIAN_XXX` variables.
  20. #
  21. # :code:`CPACK_DEBIAN_<COMPONENT>_XXXX` variables may be used in order to have
  22. # **component** specific values. Note however that ``<COMPONENT>`` refers to
  23. # the **grouping name** written in upper case. It may be either a component name
  24. # or a component GROUP name.
  25. #
  26. # Here are some CPackDeb wiki resources that are here for historic reasons and
  27. # are no longer maintained but may still prove useful:
  28. #
  29. # - https://cmake.org/Wiki/CMake:CPackConfiguration
  30. # - https://cmake.org/Wiki/CMake:CPackPackageGenerators#DEB_.28UNIX_only.29
  31. #
  32. # List of CPackRPM specific variables:
  33. #
  34. # .. variable:: CPACK_DEB_PACKAGE_COMPONENT
  35. #
  36. # Enable component packaging for CPackRPM
  37. #
  38. # * Mandatory : NO
  39. # * Default : OFF
  40. #
  41. # If enabled (ON) multiple packages are generated. By default a single package
  42. # containing files of all components is generated.
  43. #
  44. # .. variable:: CPACK_DEBIAN_PACKAGE_NAME
  45. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_NAME
  46. #
  47. # Set Package control field (variable is automatically transformed to lower
  48. # case).
  49. #
  50. # * Mandatory : YES
  51. # * Default :
  52. #
  53. # - :variable:`CPACK_PACKAGE_NAME` for non-component based
  54. # installations
  55. # - :variable:`CPACK_DEBIAN_PACKAGE_NAME` suffixed with -<COMPONENT>
  56. # for component-based installations.
  57. #
  58. # See https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Source
  59. #
  60. # .. variable:: CPACK_DEBIAN_FILE_NAME
  61. # CPACK_DEBIAN_<COMPONENT>_FILE_NAME
  62. #
  63. # Package file name.
  64. #
  65. # * Mandatory : YES
  66. # * Default : ``<CPACK_PACKAGE_FILE_NAME>[-<component>].deb``
  67. #
  68. # This may be set to ``DEB-DEFAULT`` to allow CPackDeb to generate package file
  69. # name by itself in deb format::
  70. #
  71. # <PackageName>_<VersionNumber>-<DebianRevisionNumber>_<DebianArchitecture>.deb
  72. #
  73. # Alternatively provided package file name must end with ``.deb`` suffix.
  74. #
  75. # .. note::
  76. #
  77. # Preferred setting of this variable is ``DEB-DEFAULT`` but for backward
  78. # compatibility with CPackDeb in CMake prior to version 3.6 this feature
  79. # is disabled by default.
  80. #
  81. # .. note::
  82. #
  83. # By using non default filenames duplicate names may occur. Duplicate files
  84. # get overwritten and it is up to the packager to set the variables in a
  85. # manner that will prevent such errors.
  86. #
  87. # .. variable:: CPACK_DEBIAN_PACKAGE_VERSION
  88. #
  89. # The Debian package version
  90. #
  91. # * Mandatory : YES
  92. # * Default : :variable:`CPACK_PACKAGE_VERSION`
  93. #
  94. # .. variable:: CPACK_DEBIAN_PACKAGE_RELEASE
  95. #
  96. # The Debian package release - Debian revision number.
  97. #
  98. # * Mandatory : YES
  99. # * Default : 1
  100. #
  101. # This is the numbering of the DEB package itself, i.e. the version of the
  102. # packaging and not the version of the content (see
  103. # :variable:`CPACK_DEBIAN_PACKAGE_VERSION`). One may change the default value
  104. # if the previous packaging was buggy and/or you want to put here a fancy Linux
  105. # distro specific numbering.
  106. #
  107. # .. variable:: CPACK_DEBIAN_PACKAGE_ARCHITECTURE
  108. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_ARCHITECTURE
  109. #
  110. # The Debian package architecture
  111. #
  112. # * Mandatory : YES
  113. # * Default : Output of :code:`dpkg --print-architecture` (or :code:`i386`
  114. # if :code:`dpkg` is not found)
  115. #
  116. # .. variable:: CPACK_DEBIAN_PACKAGE_DEPENDS
  117. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_DEPENDS
  118. #
  119. # Sets the Debian dependencies of this package.
  120. #
  121. # * Mandatory : NO
  122. # * Default :
  123. #
  124. # - An empty string for non-component based installations
  125. # - :variable:`CPACK_DEBIAN_PACKAGE_DEPENDS` for component-based
  126. # installations.
  127. #
  128. # .. note::
  129. #
  130. # If :variable:`CPACK_DEBIAN_PACKAGE_SHLIBDEPS` or
  131. # more specifically :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_SHLIBDEPS`
  132. # is set for this component, the discovered dependencies will be appended
  133. # to :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_DEPENDS` instead of
  134. # :variable:`CPACK_DEBIAN_PACKAGE_DEPENDS`. If
  135. # :variable:`CPACK_DEBIAN_<COMPONENT>_PACKAGE_DEPENDS` is an empty string,
  136. # only the automatically discovered dependencies will be set for this
  137. # component.
  138. #
  139. # Example::
  140. #
  141. # set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.3.1-6), libc6 (< 2.4)")
  142. #
  143. # .. variable:: CPACK_DEBIAN_ENABLE_COMPONENT_DEPENDS
  144. #
  145. # Sets inter component dependencies if listed with
  146. # :variable:`CPACK_COMPONENT_<compName>_DEPENDS` variables.
  147. #
  148. # * Mandatory : NO
  149. # * Default : -
  150. #
  151. # .. variable:: CPACK_DEBIAN_PACKAGE_MAINTAINER
  152. #
  153. # The Debian package maintainer
  154. #
  155. # * Mandatory : YES
  156. # * Default : :code:`CPACK_PACKAGE_CONTACT`
  157. #
  158. # .. variable:: CPACK_DEBIAN_PACKAGE_DESCRIPTION
  159. # CPACK_COMPONENT_<COMPONENT>_DESCRIPTION
  160. #
  161. # The Debian package description
  162. #
  163. # * Mandatory : YES
  164. # * Default :
  165. #
  166. # - :variable:`CPACK_DEBIAN_PACKAGE_DESCRIPTION` if set or
  167. # - :variable:`CPACK_PACKAGE_DESCRIPTION_SUMMARY`
  168. #
  169. #
  170. # .. variable:: CPACK_DEBIAN_PACKAGE_SECTION
  171. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_SECTION
  172. #
  173. # Set Section control field e.g. admin, devel, doc, ...
  174. #
  175. # * Mandatory : YES
  176. # * Default : "devel"
  177. #
  178. # See https://www.debian.org/doc/debian-policy/ch-archive.html#s-subsections
  179. #
  180. # .. variable:: CPACK_DEBIAN_COMPRESSION_TYPE
  181. #
  182. # The compression used for creating the Debian package.
  183. #
  184. # * Mandatory : YES
  185. # * Default : "gzip"
  186. #
  187. # Possible values are:
  188. #
  189. # - lzma
  190. # - xz
  191. # - bzip2
  192. # - gzip
  193. #
  194. # .. variable:: CPACK_DEBIAN_PACKAGE_PRIORITY
  195. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_PRIORITY
  196. #
  197. # Set Priority control field e.g. required, important, standard, optional,
  198. # extra
  199. #
  200. # * Mandatory : YES
  201. # * Default : "optional"
  202. #
  203. # See https://www.debian.org/doc/debian-policy/ch-archive.html#s-priorities
  204. #
  205. # .. variable:: CPACK_DEBIAN_PACKAGE_HOMEPAGE
  206. #
  207. # The URL of the web site for this package, preferably (when applicable) the
  208. # site from which the original source can be obtained and any additional
  209. # upstream documentation or information may be found.
  210. #
  211. # * Mandatory : NO
  212. # * Default : -
  213. #
  214. # .. note::
  215. #
  216. # The content of this field is a simple URL without any surrounding
  217. # characters such as <>.
  218. #
  219. # .. variable:: CPACK_DEBIAN_PACKAGE_SHLIBDEPS
  220. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_SHLIBDEPS
  221. #
  222. # May be set to ON in order to use :code:`dpkg-shlibdeps` to generate
  223. # better package dependency list.
  224. #
  225. # * Mandatory : NO
  226. # * Default :
  227. #
  228. # - :variable:`CPACK_DEBIAN_PACKAGE_SHLIBDEPS` if set or
  229. # - OFF
  230. #
  231. # .. note::
  232. #
  233. # You may need set :variable:`CMAKE_INSTALL_RPATH` to an appropriate value
  234. # if you use this feature, because if you don't :code:`dpkg-shlibdeps`
  235. # may fail to find your own shared libs.
  236. # See https://cmake.org/Wiki/CMake_RPATH_handling.
  237. #
  238. # .. variable:: CPACK_DEBIAN_PACKAGE_DEBUG
  239. #
  240. # May be set when invoking cpack in order to trace debug information
  241. # during CPackDeb run.
  242. #
  243. # * Mandatory : NO
  244. # * Default : -
  245. #
  246. # .. variable:: CPACK_DEBIAN_PACKAGE_PREDEPENDS
  247. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_PREDEPENDS
  248. #
  249. # Sets the `Pre-Depends` field of the Debian package.
  250. # Like :variable:`Depends <CPACK_DEBIAN_PACKAGE_DEPENDS>`, except that it
  251. # also forces :code:`dpkg` to complete installation of the packages named
  252. # before even starting the installation of the package which declares the
  253. # pre-dependency.
  254. #
  255. # * Mandatory : NO
  256. # * Default :
  257. #
  258. # - An empty string for non-component based installations
  259. # - :variable:`CPACK_DEBIAN_PACKAGE_PREDEPENDS` for component-based
  260. # installations.
  261. #
  262. # See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
  263. #
  264. # .. variable:: CPACK_DEBIAN_PACKAGE_ENHANCES
  265. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_ENHANCES
  266. #
  267. # Sets the `Enhances` field of the Debian package.
  268. # Similar to :variable:`Suggests <CPACK_DEBIAN_PACKAGE_SUGGESTS>` but works
  269. # in the opposite direction: declares that a package can enhance the
  270. # functionality of another package.
  271. #
  272. # * Mandatory : NO
  273. # * Default :
  274. #
  275. # - An empty string for non-component based installations
  276. # - :variable:`CPACK_DEBIAN_PACKAGE_ENHANCES` for component-based
  277. # installations.
  278. #
  279. # See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
  280. #
  281. # .. variable:: CPACK_DEBIAN_PACKAGE_BREAKS
  282. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_BREAKS
  283. #
  284. # Sets the `Breaks` field of the Debian package.
  285. # When a binary package (P) declares that it breaks other packages (B),
  286. # :code:`dpkg` will not allow the package (P) which declares `Breaks` be
  287. # **unpacked** unless the packages that will be broken (B) are deconfigured
  288. # first.
  289. # As long as the package (P) is configured, the previously deconfigured
  290. # packages (B) cannot be reconfigured again.
  291. #
  292. # * Mandatory : NO
  293. # * Default :
  294. #
  295. # - An empty string for non-component based installations
  296. # - :variable:`CPACK_DEBIAN_PACKAGE_BREAKS` for component-based
  297. # installations.
  298. #
  299. # See https://www.debian.org/doc/debian-policy/ch-relationships.html#s-breaks
  300. #
  301. # .. variable:: CPACK_DEBIAN_PACKAGE_CONFLICTS
  302. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_CONFLICTS
  303. #
  304. # Sets the `Conflicts` field of the Debian package.
  305. # When one binary package declares a conflict with another using a `Conflicts`
  306. # field, :code:`dpkg` will not allow them to be unpacked on the system at
  307. # the same time.
  308. #
  309. # * Mandatory : NO
  310. # * Default :
  311. #
  312. # - An empty string for non-component based installations
  313. # - :variable:`CPACK_DEBIAN_PACKAGE_CONFLICTS` for component-based
  314. # installations.
  315. #
  316. # See https://www.debian.org/doc/debian-policy/ch-relationships.html#s-conflicts
  317. #
  318. # .. note::
  319. #
  320. # This is a stronger restriction than
  321. # :variable:`Breaks <CPACK_DEBIAN_PACKAGE_BREAKS>`, which prevents the
  322. # broken package from being configured while the breaking package is in
  323. # the "Unpacked" state but allows both packages to be unpacked at the same
  324. # time.
  325. #
  326. # .. variable:: CPACK_DEBIAN_PACKAGE_PROVIDES
  327. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_PROVIDES
  328. #
  329. # Sets the `Provides` field of the Debian package.
  330. # A virtual package is one which appears in the `Provides` control field of
  331. # another package.
  332. #
  333. # * Mandatory : NO
  334. # * Default :
  335. #
  336. # - An empty string for non-component based installations
  337. # - :variable:`CPACK_DEBIAN_PACKAGE_PROVIDES` for component-based
  338. # installations.
  339. #
  340. # See https://www.debian.org/doc/debian-policy/ch-relationships.html#s-virtual
  341. #
  342. # .. variable:: CPACK_DEBIAN_PACKAGE_REPLACES
  343. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_REPLACES
  344. #
  345. # Sets the `Replaces` field of the Debian package.
  346. # Packages can declare in their control file that they should overwrite
  347. # files in certain other packages, or completely replace other packages.
  348. #
  349. # * Mandatory : NO
  350. # * Default :
  351. #
  352. # - An empty string for non-component based installations
  353. # - :variable:`CPACK_DEBIAN_PACKAGE_REPLACES` for component-based
  354. # installations.
  355. #
  356. # See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
  357. #
  358. # .. variable:: CPACK_DEBIAN_PACKAGE_RECOMMENDS
  359. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_RECOMMENDS
  360. #
  361. # Sets the `Recommends` field of the Debian package.
  362. # Allows packages to declare a strong, but not absolute, dependency on other
  363. # packages.
  364. #
  365. # * Mandatory : NO
  366. # * Default :
  367. #
  368. # - An empty string for non-component based installations
  369. # - :variable:`CPACK_DEBIAN_PACKAGE_RECOMMENDS` for component-based
  370. # installations.
  371. #
  372. # See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
  373. #
  374. # .. variable:: CPACK_DEBIAN_PACKAGE_SUGGESTS
  375. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_SUGGESTS
  376. #
  377. # Sets the `Suggests` field of the Debian package.
  378. # Allows packages to declare a suggested package install grouping.
  379. #
  380. # * Mandatory : NO
  381. # * Default :
  382. #
  383. # - An empty string for non-component based installations
  384. # - :variable:`CPACK_DEBIAN_PACKAGE_SUGGESTS` for component-based
  385. # installations.
  386. #
  387. # See http://www.debian.org/doc/debian-policy/ch-relationships.html#s-binarydeps
  388. #
  389. # .. variable:: CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS
  390. #
  391. # * Mandatory : NO
  392. # * Default : OFF
  393. #
  394. # Allows to generate shlibs control file automatically. Compatibility is defined by
  395. # :variable:`CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS_POLICY` variable value.
  396. #
  397. # .. note::
  398. #
  399. # Libraries are only considered if they have both library name and version
  400. # set. This can be done by setting SOVERSION property with
  401. # :command:`set_target_properties` command.
  402. #
  403. # .. variable:: CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS_POLICY
  404. #
  405. # Compatibility policy for auto-generated shlibs control file.
  406. #
  407. # * Mandatory : NO
  408. # * Default : "="
  409. #
  410. # Defines compatibility policy for auto-generated shlibs control file.
  411. # Possible values: "=", ">="
  412. #
  413. # See https://www.debian.org/doc/debian-policy/ch-sharedlibs.html#s-sharedlibs-shlibdeps
  414. #
  415. # .. variable:: CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
  416. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_CONTROL_EXTRA
  417. #
  418. # This variable allow advanced user to add custom script to the
  419. # control.tar.gz.
  420. # Typical usage is for conffiles, postinst, postrm, prerm.
  421. #
  422. # * Mandatory : NO
  423. # * Default : -
  424. #
  425. # Usage::
  426. #
  427. # set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
  428. # "${CMAKE_CURRENT_SOURCE_DIR/prerm;${CMAKE_CURRENT_SOURCE_DIR}/postrm")
  429. #
  430. # .. note::
  431. #
  432. # The original permissions of the files will be used in the final
  433. # package unless the variable
  434. # :variable:`CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION` is set.
  435. # In particular, the scripts should have the proper executable
  436. # flag prior to the generation of the package.
  437. #
  438. # .. variable:: CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION
  439. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_CONTROL_STRICT_PERMISSION
  440. #
  441. # This variable indicates if the Debian policy on control files should be
  442. # strictly followed.
  443. #
  444. # * Mandatory : NO
  445. # * Default : FALSE
  446. #
  447. # Usage::
  448. #
  449. # set(CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION TRUE)
  450. #
  451. # .. note::
  452. #
  453. # This overrides the permissions on the original files, following the rules
  454. # set by Debian policy
  455. # https://www.debian.org/doc/debian-policy/ch-files.html#s-permissions-owners
  456. #
  457. # .. variable:: CPACK_DEBIAN_PACKAGE_SOURCE
  458. # CPACK_DEBIAN_<COMPONENT>_PACKAGE_SOURCE
  459. #
  460. # Sets the ``Source`` field of the binary Debian package.
  461. # When the binary package name is not the same as the source package name
  462. # (in particular when several components/binaries are generated from one
  463. # source) the source from which the binary has been generated should be
  464. # indicated with the field ``Source``.
  465. #
  466. # * Mandatory : NO
  467. # * Default :
  468. #
  469. # - An empty string for non-component based installations
  470. # - :variable:`CPACK_DEBIAN_PACKAGE_SOURCE` for component-based
  471. # installations.
  472. #
  473. # See https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Source
  474. #
  475. # .. note::
  476. #
  477. # This value is not interpreted. It is possible to pass an optional
  478. # revision number of the referenced source package as well.
  479. #=============================================================================
  480. # Copyright 2007-2009 Kitware, Inc.
  481. # Copyright 2007-2009 Mathieu Malaterre <mathieu.malaterre@gmail.com>
  482. # Copyright 2014-2016 Alexander Smorkalov <alexander.smorkalov@itseez.com>
  483. # Copyright 2014-2016 Roman Donchenko <roman.donchenko@itseez.com>
  484. # Copyright 2014-2016 Roman Kharitonov <roman.kharitonov@itseez.com>
  485. # Copyright 2014-2016 Ilya Lavrenov <ilya.lavrenov@itseez.com>
  486. #
  487. # Distributed under the OSI-approved BSD License (the "License");
  488. # see accompanying file Copyright.txt for details.
  489. #
  490. # This software is distributed WITHOUT ANY WARRANTY; without even the
  491. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  492. # See the License for more information.
  493. #=============================================================================
  494. # (To distribute this file outside of CMake, substitute the full
  495. # License text for the above reference.)
  496. # CPack script for creating Debian package
  497. # Author: Mathieu Malaterre
  498. #
  499. # http://wiki.debian.org/HowToPackageForDebian
  500. if(CMAKE_BINARY_DIR)
  501. message(FATAL_ERROR "CPackDeb.cmake may only be used by CPack internally.")
  502. endif()
  503. if(NOT UNIX)
  504. message(FATAL_ERROR "CPackDeb.cmake may only be used under UNIX.")
  505. endif()
  506. function(cpack_deb_variable_fallback OUTPUT_VAR_NAME)
  507. set(FALLBACK_VAR_NAMES ${ARGN})
  508. foreach(variable_name IN LISTS FALLBACK_VAR_NAMES)
  509. if(${variable_name})
  510. set(${OUTPUT_VAR_NAME} "${${variable_name}}" PARENT_SCOPE)
  511. break()
  512. endif()
  513. endforeach()
  514. endfunction()
  515. function(get_component_package_name var component)
  516. string(TOUPPER "${component}" component_upcase)
  517. if(CPACK_DEBIAN_${component_upcase}_PACKAGE_NAME)
  518. string(TOLOWER "${CPACK_DEBIAN_${component_upcase}_PACKAGE_NAME}" package_name)
  519. else()
  520. string(TOLOWER "${CPACK_DEBIAN_PACKAGE_NAME}-${component}" package_name)
  521. endif()
  522. set("${var}" "${package_name}" PARENT_SCOPE)
  523. endfunction()
  524. #extract library name and version for given shared object
  525. function(extract_so_info shared_object libname version)
  526. if(READELF_EXECUTABLE)
  527. execute_process(COMMAND "${READELF_EXECUTABLE}" -d "${shared_object}"
  528. WORKING_DIRECTORY "${CPACK_TEMPORARY_DIRECTORY}"
  529. RESULT_VARIABLE result
  530. OUTPUT_VARIABLE output
  531. ERROR_QUIET
  532. OUTPUT_STRIP_TRAILING_WHITESPACE)
  533. if(result EQUAL 0)
  534. string(REGEX MATCH "\\(SONAME\\)[^\n]*\\[([^\n]+)\\.so\\.([^\n]*)\\]" soname "${output}")
  535. set(${libname} "${CMAKE_MATCH_1}" PARENT_SCOPE)
  536. set(${version} "${CMAKE_MATCH_2}" PARENT_SCOPE)
  537. else()
  538. message(WARNING "Error running readelf for \"${shared_object}\"")
  539. endif()
  540. else()
  541. message(FATAL_ERROR "Readelf utility is not available.")
  542. endif()
  543. endfunction()
  544. function(cpack_deb_prepare_package_vars)
  545. # CPACK_DEBIAN_PACKAGE_SHLIBDEPS
  546. # If specify OFF, only user depends are used
  547. if(NOT DEFINED CPACK_DEBIAN_PACKAGE_SHLIBDEPS)
  548. set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS OFF)
  549. endif()
  550. set(WDIR "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_PACKAGE_FILE_NAME}${CPACK_DEB_PACKAGE_COMPONENT_PART_PATH}")
  551. # per component automatic discover: some of the component might not have
  552. # binaries.
  553. if(CPACK_DEB_PACKAGE_COMPONENT)
  554. string(TOUPPER "${CPACK_DEB_PACKAGE_COMPONENT}" _local_component_name)
  555. set(_component_shlibdeps_var "CPACK_DEBIAN_${_local_component_name}_PACKAGE_SHLIBDEPS")
  556. # if set, overrides the global configuration
  557. if(DEFINED ${_component_shlibdeps_var})
  558. set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS "${${_component_shlibdeps_var}}")
  559. if(CPACK_DEBIAN_PACKAGE_DEBUG)
  560. message("CPackDeb Debug: component '${CPACK_DEB_PACKAGE_COMPONENT}' dpkg-shlibdeps set to ${CPACK_DEBIAN_PACKAGE_SHLIBDEPS}")
  561. endif()
  562. endif()
  563. endif()
  564. if(CPACK_DEBIAN_PACKAGE_SHLIBDEPS OR CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS)
  565. # Generating binary list - Get type of all install files
  566. cmake_policy(PUSH)
  567. # Tell file(GLOB_RECURSE) not to follow directory symlinks
  568. # even if the project does not set this policy to NEW.
  569. cmake_policy(SET CMP0009 NEW)
  570. file(GLOB_RECURSE FILE_PATHS_ LIST_DIRECTORIES false RELATIVE "${WDIR}" "${WDIR}/*")
  571. cmake_policy(POP)
  572. # get file info so that we can determine if file is executable or not
  573. unset(CPACK_DEB_INSTALL_FILES)
  574. foreach(FILE_ IN LISTS FILE_PATHS_)
  575. execute_process(COMMAND file "./${FILE_}"
  576. WORKING_DIRECTORY "${WDIR}"
  577. OUTPUT_VARIABLE INSTALL_FILE_)
  578. list(APPEND CPACK_DEB_INSTALL_FILES "${INSTALL_FILE_}")
  579. endforeach()
  580. # Only dynamically linked ELF files are included
  581. # Extract only file name infront of ":"
  582. foreach(_FILE IN LISTS CPACK_DEB_INSTALL_FILES)
  583. if(_FILE MATCHES "ELF.*dynamically linked")
  584. string(REGEX MATCH "(^.*):" _FILE_NAME "${_FILE}")
  585. list(APPEND CPACK_DEB_BINARY_FILES "${CMAKE_MATCH_1}")
  586. set(CONTAINS_EXECUTABLE_FILES_ TRUE)
  587. endif()
  588. if(_FILE MATCHES "ELF.*shared object")
  589. string(REGEX MATCH "(^.*):" _FILE_NAME "${_FILE}")
  590. list(APPEND CPACK_DEB_SHARED_OBJECT_FILES "${CMAKE_MATCH_1}")
  591. endif()
  592. endforeach()
  593. endif()
  594. if(CPACK_DEBIAN_PACKAGE_SHLIBDEPS)
  595. # dpkg-shlibdeps is a Debian utility for generating dependency list
  596. find_program(SHLIBDEPS_EXECUTABLE dpkg-shlibdeps)
  597. if(SHLIBDEPS_EXECUTABLE)
  598. # Check version of the dpkg-shlibdeps tool using CPackRPM method
  599. execute_process(COMMAND env LC_ALL=C ${SHLIBDEPS_EXECUTABLE} --version
  600. OUTPUT_VARIABLE _TMP_VERSION
  601. ERROR_QUIET
  602. OUTPUT_STRIP_TRAILING_WHITESPACE)
  603. if(_TMP_VERSION MATCHES "dpkg-shlibdeps version ([0-9]+\\.[0-9]+\\.[0-9]+)")
  604. set(SHLIBDEPS_EXECUTABLE_VERSION "${CMAKE_MATCH_1}")
  605. else()
  606. set(SHLIBDEPS_EXECUTABLE_VERSION "")
  607. endif()
  608. if(CPACK_DEBIAN_PACKAGE_DEBUG)
  609. message("CPackDeb Debug: dpkg-shlibdeps --version output is '${_TMP_VERSION}'")
  610. message("CPackDeb Debug: dpkg-shlibdeps version is <${SHLIBDEPS_EXECUTABLE_VERSION}>")
  611. endif()
  612. if(CONTAINS_EXECUTABLE_FILES_)
  613. message("CPackDeb: - Generating dependency list")
  614. # Create blank control file for running dpkg-shlibdeps
  615. # There might be some other way to invoke dpkg-shlibdeps without creating this file
  616. # but standard debian package should not have anything that can collide with this file or directory
  617. file(MAKE_DIRECTORY ${CPACK_TEMPORARY_DIRECTORY}/debian)
  618. file(WRITE ${CPACK_TEMPORARY_DIRECTORY}/debian/control "")
  619. # Create a DEBIAN directory so that dpkg-shlibdeps can find the package dir when resolving $ORIGIN.
  620. file(MAKE_DIRECTORY "${CPACK_TEMPORARY_DIRECTORY}/DEBIAN")
  621. # Add --ignore-missing-info if the tool supports it
  622. execute_process(COMMAND env LC_ALL=C ${SHLIBDEPS_EXECUTABLE} --help
  623. OUTPUT_VARIABLE _TMP_HELP
  624. ERROR_QUIET
  625. OUTPUT_STRIP_TRAILING_WHITESPACE)
  626. if(_TMP_HELP MATCHES "--ignore-missing-info")
  627. set(IGNORE_MISSING_INFO_FLAG "--ignore-missing-info")
  628. endif()
  629. # Execute dpkg-shlibdeps
  630. # --ignore-missing-info : allow dpkg-shlibdeps to run even if some libs do not belong to a package
  631. # -O : print to STDOUT
  632. execute_process(COMMAND ${SHLIBDEPS_EXECUTABLE} ${IGNORE_MISSING_INFO_FLAG} -O ${CPACK_DEB_BINARY_FILES}
  633. WORKING_DIRECTORY "${CPACK_TEMPORARY_DIRECTORY}"
  634. OUTPUT_VARIABLE SHLIBDEPS_OUTPUT
  635. RESULT_VARIABLE SHLIBDEPS_RESULT
  636. ERROR_VARIABLE SHLIBDEPS_ERROR
  637. OUTPUT_STRIP_TRAILING_WHITESPACE )
  638. if(CPACK_DEBIAN_PACKAGE_DEBUG)
  639. # dpkg-shlibdeps will throw some warnings if some input files are not binary
  640. message( "CPackDeb Debug: dpkg-shlibdeps warnings \n${SHLIBDEPS_ERROR}")
  641. endif()
  642. if(NOT SHLIBDEPS_RESULT EQUAL 0)
  643. message (FATAL_ERROR "CPackDeb: dpkg-shlibdeps: '${SHLIBDEPS_ERROR}';\n"
  644. "executed command: '${SHLIBDEPS_EXECUTABLE} ${IGNORE_MISSING_INFO_FLAG} -O ${CPACK_DEB_BINARY_FILES}';\n"
  645. "found files: '${INSTALL_FILE_}';\n"
  646. "files info: '${CPACK_DEB_INSTALL_FILES}';\n"
  647. "binary files: '${CPACK_DEB_BINARY_FILES}'")
  648. endif()
  649. #Get rid of prefix generated by dpkg-shlibdeps
  650. string(REGEX REPLACE "^.*Depends=" "" CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS "${SHLIBDEPS_OUTPUT}")
  651. if(CPACK_DEBIAN_PACKAGE_DEBUG)
  652. message("CPackDeb Debug: Found dependency: ${CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS} from output ${SHLIBDEPS_OUTPUT}")
  653. endif()
  654. # Remove blank control file
  655. # Might not be safe if package actual contain file or directory named debian
  656. file(REMOVE_RECURSE "${CPACK_TEMPORARY_DIRECTORY}/debian")
  657. # remove temporary directory that was created only for dpkg-shlibdeps execution
  658. file(REMOVE_RECURSE "${CPACK_TEMPORARY_DIRECTORY}/DEBIAN")
  659. else()
  660. if(CPACK_DEBIAN_PACKAGE_DEBUG)
  661. message(AUTHOR_WARNING "CPackDeb Debug: Using only user-provided depends because package does not contain executable files that link to shared libraries.")
  662. endif()
  663. endif()
  664. else()
  665. message("CPackDeb: Using only user-provided dependencies because dpkg-shlibdeps is not found.")
  666. endif()
  667. else()
  668. if(CPACK_DEBIAN_PACKAGE_DEBUG)
  669. message("CPackDeb Debug: Using only user-provided dependencies")
  670. endif()
  671. endif()
  672. # Let's define the control file found in debian package:
  673. # Binary package:
  674. # http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-binarycontrolfiles
  675. # DEBIAN/control
  676. # debian policy enforce lower case for package name
  677. # Package: (mandatory)
  678. if(NOT CPACK_DEBIAN_PACKAGE_NAME)
  679. string(TOLOWER "${CPACK_PACKAGE_NAME}" CPACK_DEBIAN_PACKAGE_NAME)
  680. endif()
  681. # Version: (mandatory)
  682. if(NOT CPACK_DEBIAN_PACKAGE_VERSION)
  683. if(NOT CPACK_PACKAGE_VERSION)
  684. message(FATAL_ERROR "CPackDeb: Debian package requires a package version")
  685. endif()
  686. set(CPACK_DEBIAN_PACKAGE_VERSION ${CPACK_PACKAGE_VERSION})
  687. endif()
  688. # Architecture: (mandatory)
  689. if(CPACK_DEB_PACKAGE_COMPONENT AND CPACK_DEBIAN_${_local_component_name}_PACKAGE_ARCHITECTURE)
  690. set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE "${CPACK_DEBIAN_${_local_component_name}_PACKAGE_ARCHITECTURE}")
  691. elseif(NOT CPACK_DEBIAN_PACKAGE_ARCHITECTURE)
  692. # There is no such thing as i686 architecture on debian, you should use i386 instead
  693. # $ dpkg --print-architecture
  694. find_program(DPKG_CMD dpkg)
  695. if(NOT DPKG_CMD)
  696. message(STATUS "CPackDeb: Can not find dpkg in your path, default to i386.")
  697. set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE i386)
  698. endif()
  699. execute_process(COMMAND "${DPKG_CMD}" --print-architecture
  700. OUTPUT_VARIABLE CPACK_DEBIAN_PACKAGE_ARCHITECTURE
  701. OUTPUT_STRIP_TRAILING_WHITESPACE
  702. )
  703. endif()
  704. # Source: (optional)
  705. # in case several packages are constructed from a unique source
  706. # (multipackaging), the source may be indicated as well.
  707. # The source might contain a version if the generated package
  708. # version is different from the source version
  709. if(NOT CPACK_DEBIAN_PACKAGE_SOURCE)
  710. set(CPACK_DEBIAN_PACKAGE_SOURCE "")
  711. endif()
  712. # have a look at get_property(result GLOBAL PROPERTY ENABLED_FEATURES),
  713. # this returns the successful find_package() calls, maybe this can help
  714. # Depends:
  715. # You should set: DEBIAN_PACKAGE_DEPENDS
  716. # TODO: automate 'objdump -p | grep NEEDED'
  717. # if per-component variable, overrides the global CPACK_DEBIAN_PACKAGE_${variable_type_}
  718. # automatic dependency discovery will be performed afterwards.
  719. if(CPACK_DEB_PACKAGE_COMPONENT)
  720. foreach(value_type_ DEPENDS RECOMMENDS SUGGESTS PREDEPENDS ENHANCES BREAKS CONFLICTS PROVIDES REPLACES SOURCE SECTION PRIORITY NAME)
  721. set(_component_var "CPACK_DEBIAN_${_local_component_name}_PACKAGE_${value_type_}")
  722. # if set, overrides the global variable
  723. if(DEFINED ${_component_var})
  724. set(CPACK_DEBIAN_PACKAGE_${value_type_} "${${_component_var}}")
  725. if(CPACK_DEBIAN_PACKAGE_DEBUG)
  726. message("CPackDeb Debug: component '${_local_component_name}' ${value_type_} "
  727. "value set to '${CPACK_DEBIAN_PACKAGE_${value_type_}}'")
  728. endif()
  729. endif()
  730. endforeach()
  731. if(CPACK_DEBIAN_ENABLE_COMPONENT_DEPENDS)
  732. set(COMPONENT_DEPENDS "")
  733. foreach (_PACK ${CPACK_COMPONENT_${_local_component_name}_DEPENDS})
  734. get_component_package_name(_PACK_NAME "${_PACK}")
  735. if(COMPONENT_DEPENDS)
  736. set(COMPONENT_DEPENDS "${_PACK_NAME} (= ${CPACK_DEBIAN_PACKAGE_VERSION}), ${COMPONENT_DEPENDS}")
  737. else()
  738. set(COMPONENT_DEPENDS "${_PACK_NAME} (= ${CPACK_DEBIAN_PACKAGE_VERSION})")
  739. endif()
  740. endforeach()
  741. if(COMPONENT_DEPENDS)
  742. if(CPACK_DEBIAN_PACKAGE_DEPENDS)
  743. set(CPACK_DEBIAN_PACKAGE_DEPENDS "${COMPONENT_DEPENDS}, ${CPACK_DEBIAN_PACKAGE_DEPENDS}")
  744. else()
  745. set(CPACK_DEBIAN_PACKAGE_DEPENDS "${COMPONENT_DEPENDS}")
  746. endif()
  747. endif()
  748. endif()
  749. endif()
  750. # at this point, the CPACK_DEBIAN_PACKAGE_DEPENDS is properly set
  751. # to the minimal dependency of the package
  752. # Append automatically discovered dependencies .
  753. if(NOT "${CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS}" STREQUAL "")
  754. if (CPACK_DEBIAN_PACKAGE_DEPENDS)
  755. set (CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_DEPENDS}, ${CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS}")
  756. else ()
  757. set (CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_AUTO_DEPENDS}")
  758. endif ()
  759. endif()
  760. if(NOT CPACK_DEBIAN_PACKAGE_DEPENDS)
  761. message(STATUS "CPACK_DEBIAN_PACKAGE_DEPENDS not set, the package will have no dependencies.")
  762. endif()
  763. # Maintainer: (mandatory)
  764. if(NOT CPACK_DEBIAN_PACKAGE_MAINTAINER)
  765. if(NOT CPACK_PACKAGE_CONTACT)
  766. message(FATAL_ERROR "CPackDeb: Debian package requires a maintainer for a package, set CPACK_PACKAGE_CONTACT or CPACK_DEBIAN_PACKAGE_MAINTAINER")
  767. endif()
  768. set(CPACK_DEBIAN_PACKAGE_MAINTAINER ${CPACK_PACKAGE_CONTACT})
  769. endif()
  770. # Description: (mandatory)
  771. if(NOT CPACK_DEB_PACKAGE_COMPONENT)
  772. if(NOT CPACK_DEBIAN_PACKAGE_DESCRIPTION)
  773. if(NOT CPACK_PACKAGE_DESCRIPTION_SUMMARY)
  774. message(FATAL_ERROR "CPackDeb: Debian package requires a summary for a package, set CPACK_PACKAGE_DESCRIPTION_SUMMARY or CPACK_DEBIAN_PACKAGE_DESCRIPTION")
  775. endif()
  776. set(CPACK_DEBIAN_PACKAGE_DESCRIPTION ${CPACK_PACKAGE_DESCRIPTION_SUMMARY})
  777. endif()
  778. else()
  779. set(component_description_var CPACK_COMPONENT_${_local_component_name}_DESCRIPTION)
  780. # component description overrides package description
  781. if(${component_description_var})
  782. set(CPACK_DEBIAN_PACKAGE_DESCRIPTION ${${component_description_var}})
  783. elseif(NOT CPACK_DEBIAN_PACKAGE_DESCRIPTION)
  784. if(NOT CPACK_PACKAGE_DESCRIPTION_SUMMARY)
  785. 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}")
  786. endif()
  787. set(CPACK_DEBIAN_PACKAGE_DESCRIPTION ${CPACK_PACKAGE_DESCRIPTION_SUMMARY})
  788. endif()
  789. endif()
  790. # Section: (recommended)
  791. if(NOT CPACK_DEBIAN_PACKAGE_SECTION)
  792. set(CPACK_DEBIAN_PACKAGE_SECTION "devel")
  793. endif()
  794. # Priority: (recommended)
  795. if(NOT CPACK_DEBIAN_PACKAGE_PRIORITY)
  796. set(CPACK_DEBIAN_PACKAGE_PRIORITY "optional")
  797. endif()
  798. # Compression: (recommended)
  799. if(NOT CPACK_DEBIAN_COMPRESSION_TYPE)
  800. set(CPACK_DEBIAN_COMPRESSION_TYPE "gzip")
  801. endif()
  802. # Recommends:
  803. # You should set: CPACK_DEBIAN_PACKAGE_RECOMMENDS
  804. # Suggests:
  805. # You should set: CPACK_DEBIAN_PACKAGE_SUGGESTS
  806. # CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
  807. # This variable allow advanced user to add custom script to the control.tar.gz (inside the .deb archive)
  808. # Typical examples are:
  809. # - conffiles
  810. # - postinst
  811. # - postrm
  812. # - prerm
  813. # Usage:
  814. # set(CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
  815. # "${CMAKE_CURRENT_SOURCE_DIR/prerm;${CMAKE_CURRENT_SOURCE_DIR}/postrm")
  816. # Are we packaging components ?
  817. if(CPACK_DEB_PACKAGE_COMPONENT)
  818. # override values with per component version if set
  819. foreach(VAR_NAME_ "PACKAGE_CONTROL_EXTRA" "PACKAGE_CONTROL_STRICT_PERMISSION")
  820. if(CPACK_DEBIAN_${_local_component_name}_${VAR_NAME_})
  821. set(CPACK_DEBIAN_${VAR_NAME_} "${CPACK_DEBIAN_${_local_component_name}_${VAR_NAME_}}")
  822. endif()
  823. endforeach()
  824. get_component_package_name(CPACK_DEBIAN_PACKAGE_NAME ${_local_component_name})
  825. endif()
  826. set(CPACK_DEBIAN_PACKAGE_SHLIBS_LIST "")
  827. if (NOT CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS_POLICY)
  828. set(CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS_POLICY "=")
  829. endif()
  830. find_program(READELF_EXECUTABLE NAMES readelf)
  831. if(CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS)
  832. if(READELF_EXECUTABLE)
  833. foreach(_FILE IN LISTS CPACK_DEB_SHARED_OBJECT_FILES)
  834. extract_so_info("${_FILE}" libname soversion)
  835. if(libname AND soversion)
  836. list(APPEND CPACK_DEBIAN_PACKAGE_SHLIBS_LIST
  837. "${libname} ${soversion} ${CPACK_DEBIAN_PACKAGE_NAME} (${CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS_POLICY} ${CPACK_PACKAGE_VERSION})")
  838. else()
  839. message(AUTHOR_WARNING "Shared library '${_FILE}' is missing soname or soversion. Library will not be added to DEBIAN/shlibs control file.")
  840. endif()
  841. endforeach()
  842. if (CPACK_DEBIAN_PACKAGE_SHLIBS_LIST)
  843. string(REPLACE ";" "\n" CPACK_DEBIAN_PACKAGE_SHLIBS_LIST "${CPACK_DEBIAN_PACKAGE_SHLIBS_LIST}")
  844. endif()
  845. else()
  846. message(FATAL_ERROR "Readelf utility is not available. CPACK_DEBIAN_PACKAGE_GENERATE_SHLIBS option is not available.")
  847. endif()
  848. endif()
  849. # add ldconfig call in default postrm and postint
  850. set(CPACK_ADD_LDCONFIG_CALL 0)
  851. foreach(_FILE ${CPACK_DEB_SHARED_OBJECT_FILES})
  852. get_filename_component(_DIR ${_FILE} DIRECTORY)
  853. # all files in CPACK_DEB_SHARED_OBJECT_FILES have dot at the beginning
  854. if(_DIR STREQUAL "./lib" OR _DIR STREQUAL "./usr/lib")
  855. set(CPACK_ADD_LDCONFIG_CALL 1)
  856. endif()
  857. endforeach()
  858. if(CPACK_ADD_LDCONFIG_CALL)
  859. set(CPACK_DEBIAN_GENERATE_POSTINST 1)
  860. set(CPACK_DEBIAN_GENERATE_POSTRM 1)
  861. foreach(f ${PACKAGE_CONTROL_EXTRA})
  862. get_filename_component(n "${f}" NAME)
  863. if("${n}" STREQUAL "postinst")
  864. set(CPACK_DEBIAN_GENERATE_POSTINST 0)
  865. endif()
  866. if("${n}" STREQUAL "postrm")
  867. set(CPACK_DEBIAN_GENERATE_POSTRM 0)
  868. endif()
  869. endforeach()
  870. else()
  871. set(CPACK_DEBIAN_GENERATE_POSTINST 0)
  872. set(CPACK_DEBIAN_GENERATE_POSTRM 0)
  873. endif()
  874. if(NOT CPACK_DEBIAN_PACKAGE_RELEASE)
  875. set(CPACK_DEBIAN_PACKAGE_RELEASE 1)
  876. endif()
  877. cpack_deb_variable_fallback("CPACK_DEBIAN_FILE_NAME"
  878. "CPACK_DEBIAN_${_local_component_name}_FILE_NAME"
  879. "CPACK_DEBIAN_FILE_NAME")
  880. if(CPACK_DEBIAN_FILE_NAME)
  881. if(CPACK_DEBIAN_FILE_NAME STREQUAL "DEB-DEFAULT")
  882. # Patch package file name to be in corrent debian format:
  883. # <foo>_<VersionNumber>-<DebianRevisionNumber>_<DebianArchitecture>.deb
  884. set(CPACK_OUTPUT_FILE_NAME
  885. "${CPACK_DEBIAN_PACKAGE_NAME}_${CPACK_PACKAGE_VERSION}-${CPACK_DEBIAN_PACKAGE_RELEASE}_${CPACK_DEBIAN_PACKAGE_ARCHITECTURE}.deb")
  886. else()
  887. cmake_policy(PUSH)
  888. cmake_policy(SET CMP0010 NEW)
  889. if(NOT CPACK_DEBIAN_FILE_NAME MATCHES ".*\\.deb")
  890. cmake_policy(POP)
  891. message(FATAL_ERROR "'${CPACK_DEBIAN_FILE_NAME}' is not a valid DEB package file name as it must end with '.deb'!")
  892. endif()
  893. cmake_policy(POP)
  894. set(CPACK_OUTPUT_FILE_NAME "${CPACK_DEBIAN_FILE_NAME}")
  895. endif()
  896. set(CPACK_TEMPORARY_PACKAGE_FILE_NAME "${CPACK_TOPLEVEL_DIRECTORY}/${CPACK_OUTPUT_FILE_NAME}")
  897. get_filename_component(BINARY_DIR "${CPACK_OUTPUT_FILE_PATH}" DIRECTORY)
  898. set(CPACK_OUTPUT_FILE_PATH "${BINARY_DIR}/${CPACK_OUTPUT_FILE_NAME}")
  899. endif() # else() back compatibility - don't change the name
  900. # Print out some debug information if we were asked for that
  901. if(CPACK_DEBIAN_PACKAGE_DEBUG)
  902. message("CPackDeb:Debug: CPACK_TOPLEVEL_DIRECTORY = '${CPACK_TOPLEVEL_DIRECTORY}'")
  903. message("CPackDeb:Debug: CPACK_TOPLEVEL_TAG = '${CPACK_TOPLEVEL_TAG}'")
  904. message("CPackDeb:Debug: CPACK_TEMPORARY_DIRECTORY = '${CPACK_TEMPORARY_DIRECTORY}'")
  905. message("CPackDeb:Debug: CPACK_OUTPUT_FILE_NAME = '${CPACK_OUTPUT_FILE_NAME}'")
  906. message("CPackDeb:Debug: CPACK_OUTPUT_FILE_PATH = '${CPACK_OUTPUT_FILE_PATH}'")
  907. message("CPackDeb:Debug: CPACK_PACKAGE_FILE_NAME = '${CPACK_PACKAGE_FILE_NAME}'")
  908. message("CPackDeb:Debug: CPACK_PACKAGE_INSTALL_DIRECTORY = '${CPACK_PACKAGE_INSTALL_DIRECTORY}'")
  909. message("CPackDeb:Debug: CPACK_TEMPORARY_PACKAGE_FILE_NAME = '${CPACK_TEMPORARY_PACKAGE_FILE_NAME}'")
  910. message("CPackDeb:Debug: CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION = '${CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION}'")
  911. message("CPackDeb:Debug: CPACK_DEBIAN_PACKAGE_SOURCE = '${CPACK_DEBIAN_PACKAGE_SOURCE}'")
  912. endif()
  913. # For debian source packages:
  914. # debian/control
  915. # http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-sourcecontrolfiles
  916. # .dsc
  917. # http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-debiansourcecontrolfiles
  918. # Builds-Depends:
  919. #if(NOT CPACK_DEBIAN_PACKAGE_BUILDS_DEPENDS)
  920. # set(CPACK_DEBIAN_PACKAGE_BUILDS_DEPENDS
  921. # "debhelper (>> 5.0.0), libncurses5-dev, tcl8.4"
  922. # )
  923. #endif()
  924. # move variables to parent scope so that they may be used to create debian package
  925. set(GEN_CPACK_OUTPUT_FILE_NAME "${CPACK_OUTPUT_FILE_NAME}" PARENT_SCOPE)
  926. set(GEN_CPACK_TEMPORARY_PACKAGE_FILE_NAME "${CPACK_TEMPORARY_PACKAGE_FILE_NAME}" PARENT_SCOPE)
  927. set(GEN_CPACK_DEBIAN_PACKAGE_NAME "${CPACK_DEBIAN_PACKAGE_NAME}" PARENT_SCOPE)
  928. set(GEN_CPACK_DEBIAN_PACKAGE_VERSION "${CPACK_DEBIAN_PACKAGE_VERSION}" PARENT_SCOPE)
  929. set(GEN_CPACK_DEBIAN_PACKAGE_SECTION "${CPACK_DEBIAN_PACKAGE_SECTION}" PARENT_SCOPE)
  930. set(GEN_CPACK_DEBIAN_PACKAGE_PRIORITY "${CPACK_DEBIAN_PACKAGE_PRIORITY}" PARENT_SCOPE)
  931. set(GEN_CPACK_DEBIAN_PACKAGE_ARCHITECTURE "${CPACK_DEBIAN_PACKAGE_ARCHITECTURE}" PARENT_SCOPE)
  932. set(GEN_CPACK_DEBIAN_PACKAGE_MAINTAINER "${CPACK_DEBIAN_PACKAGE_MAINTAINER}" PARENT_SCOPE)
  933. set(GEN_CPACK_DEBIAN_PACKAGE_DESCRIPTION "${CPACK_DEBIAN_PACKAGE_DESCRIPTION}" PARENT_SCOPE)
  934. set(GEN_CPACK_DEBIAN_PACKAGE_DEPENDS "${CPACK_DEBIAN_PACKAGE_DEPENDS}" PARENT_SCOPE)
  935. set(GEN_CPACK_DEBIAN_COMPRESSION_TYPE "${CPACK_DEBIAN_COMPRESSION_TYPE}" PARENT_SCOPE)
  936. set(GEN_CPACK_DEBIAN_PACKAGE_RECOMMENDS "${CPACK_DEBIAN_PACKAGE_RECOMMENDS}" PARENT_SCOPE)
  937. set(GEN_CPACK_DEBIAN_PACKAGE_SUGGESTS "${CPACK_DEBIAN_PACKAGE_SUGGESTS}" PARENT_SCOPE)
  938. set(GEN_CPACK_DEBIAN_PACKAGE_HOMEPAGE "${CPACK_DEBIAN_PACKAGE_HOMEPAGE}" PARENT_SCOPE)
  939. set(GEN_CPACK_DEBIAN_PACKAGE_PREDEPENDS "${CPACK_DEBIAN_PACKAGE_PREDEPENDS}" PARENT_SCOPE)
  940. set(GEN_CPACK_DEBIAN_PACKAGE_ENHANCES "${CPACK_DEBIAN_PACKAGE_ENHANCES}" PARENT_SCOPE)
  941. set(GEN_CPACK_DEBIAN_PACKAGE_BREAKS "${CPACK_DEBIAN_PACKAGE_BREAKS}" PARENT_SCOPE)
  942. set(GEN_CPACK_DEBIAN_PACKAGE_CONFLICTS "${CPACK_DEBIAN_PACKAGE_CONFLICTS}" PARENT_SCOPE)
  943. set(GEN_CPACK_DEBIAN_PACKAGE_PROVIDES "${CPACK_DEBIAN_PACKAGE_PROVIDES}" PARENT_SCOPE)
  944. set(GEN_CPACK_DEBIAN_PACKAGE_REPLACES "${CPACK_DEBIAN_PACKAGE_REPLACES}" PARENT_SCOPE)
  945. set(GEN_CPACK_DEBIAN_PACKAGE_SHLIBS "${CPACK_DEBIAN_PACKAGE_SHLIBS_LIST}" PARENT_SCOPE)
  946. set(GEN_CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA "${CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA}" PARENT_SCOPE)
  947. set(GEN_CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION
  948. "${CPACK_DEBIAN_PACKAGE_CONTROL_STRICT_PERMISSION}" PARENT_SCOPE)
  949. set(GEN_CPACK_DEBIAN_PACKAGE_SOURCE
  950. "${CPACK_DEBIAN_PACKAGE_SOURCE}" PARENT_SCOPE)
  951. set(GEN_CPACK_DEBIAN_GENERATE_POSTINST "${CPACK_DEBIAN_GENERATE_POSTINST}" PARENT_SCOPE)
  952. set(GEN_CPACK_DEBIAN_GENERATE_POSTRM "${CPACK_DEBIAN_GENERATE_POSTRM}" PARENT_SCOPE)
  953. set(GEN_WDIR "${WDIR}" PARENT_SCOPE)
  954. endfunction()
  955. cpack_deb_prepare_package_vars()