-
Notifications
You must be signed in to change notification settings - Fork 8
/
pkg-config-0.29.2.cmake
101 lines (92 loc) · 4.13 KB
/
pkg-config-0.29.2.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# This file is part of OpenOrienteering.
# Copyright 2020 Kai Pastor
#
# Redistribution and use is allowed according to the terms of the BSD license:
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
set(version 0.29.2)
set(download_hash SHA256=6fc69c01688c9458a57eb9a1664c9aba372ccda420a02bf4429fe610e7e7d591)
set(patch_version ${version}-1)
set(patch_hash SHA256=6ecdd3463718e8922b53fca8d2fd37db4ba178f078b5e3ccd38c1a6efffb94ad)
set(base_url https://snapshot.debian.org/archive/debian/20200421T214331Z/pool/main/p/pkg-config/)
option(USE_SYSTEM_PKG_CONFIG "Use the system pkg-config" ON)
set(test_system_pkg-config [[
if(USE_SYSTEM_PKG_CONFIG)
find_program(PKG_CONFIG_EXECUTABLE NAMES pkg-config ONLY_CMAKE_FIND_ROOT_PATH QUIET)
string(FIND "${PKG_CONFIG_EXECUTABLE}" "${CMAKE_STAGING_PREFIX}/" staging_prefix_start)
if(PKG_CONFIG_EXECUTABLE AND NOT staging_prefix_start EQUAL 0)
message(STATUS "Found pkg-config: ${PKG_CONFIG_EXECUTABLE}")
set(BUILD_CONDITION 0)
endif()
endif()
if(CMAKE_C_COMPILER_ID MATCHES "Clang")
set(extra_flags "-Wno-int-conversion -Wno-unused-value -Wno-unused-function -Wno-tautological-constant-out-of-range-compare -Wno-deprecated-declarations -Wno-return-type" PARENT_SCOPE)
else()
set(extra_flags "" PARENT_SCOPE)
endif()
]])
set(download_pkg-config_diff_cmake "${PROJECT_BINARY_DIR}/download-pkg-config_${patch_version}.diff.cmake")
file(WRITE "${download_pkg-config_diff_cmake}" "
file(DOWNLOAD
\"${base_url}/pkg-config_${patch_version}.diff.gz\"
\"${SUPERBUILD_DOWNLOAD_DIR}/pkg-config_${patch_version}.diff.gz\"
EXPECTED_HASH ${patch_hash}
)")
superbuild_package(
NAME pkg-config
VERSION ${patch_version}
DEPENDS
pkg-config-wrapper
SOURCE
URL ${base_url}pkg-config_${version}.orig.tar.gz
URL_HASH ${download_hash}
PATCH_COMMAND
# Save unchanged m4 files.
${CMAKE_COMMAND} -E tar cf unpatched.tar "glib/m4macros"
COMMAND
"${CMAKE_COMMAND}" -P "${download_pkg-config_diff_cmake}"
COMMAND
gunzip -c "${SUPERBUILD_DOWNLOAD_DIR}/pkg-config_${patch_version}.diff.gz" > "pkg-config_${patch_version}.diff"
COMMAND
patch -N -p1 < "pkg-config_${patch_version}.diff"
COMMAND
# Restore unchanged m4 files, or we will need aclocal.
${CMAKE_COMMAND} -E tar xf unpatched.tar
USING USE_SYSTEM_PKG_CONFIG patch_version extra_flags
BUILD_CONDITION ${test_system_pkg-config}
BUILD [[
CONFIGURE_COMMAND
"${SOURCE_DIR}/configure"
"--prefix=${TOOLCHAIN_DIR}"
"--with-internal-glib"
"--disable-host-tool"
"CFLAGS=${extra_flags}"
INSTALL_COMMAND
"$(MAKE)" install "DESTDIR=${DESTDIR}"
COMMAND
"${CMAKE_COMMAND}" -E copy
"<SOURCE_DIR>/debian/copyright"
"${DESTDIR}${TOOLCHAIN_DIR}/share/doc/pkg-config/copyright"
]]
)