Skip to content

Commit 9a10955

Browse files
committed
Add openjpeg2 2.3.1-1
1 parent bb7dec7 commit 9a10955

File tree

2 files changed

+96
-0
lines changed

2 files changed

+96
-0
lines changed

gdal-3.0.2+dfsg.cmake

+4
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ superbuild_package(
9696
libjpeg
9797
liblzma
9898
libpng
99+
openjpeg2
99100
pcre3
100101
proj
101102
sqlite3
@@ -138,6 +139,9 @@ superbuild_package(
138139
$<$<NOT:$<BOOL:@ANDROID@>>:
139140
"--with-libz=${LIBZ_DIR}"
140141
>
142+
"--with-openjpeg"
143+
"OPENJPEG_CFLAGS=-I${CMAKE_STAGING_PREFIX}/include/openjpeg2"
144+
"OPENJPEG_LIBS=-lopenjp2"
141145
"--with-png=${CMAKE_STAGING_PREFIX}"
142146
"--with-proj=${CMAKE_STAGING_PREFIX}"
143147
"--with-sqlite3=${SQLITE3_DIR}"

openjpeg2-2.3.1.cmake

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
# This file is part of OpenOrienteering.
2+
3+
# Copyright 2019 Kai Pastor
4+
#
5+
# Redistribution and use is allowed according to the terms of the BSD license:
6+
#
7+
# Redistribution and use in source and binary forms, with or without
8+
# modification, are permitted provided that the following conditions
9+
# are met:
10+
#
11+
# 1. Redistributions of source code must retain the copyright
12+
# notice, this list of conditions and the following disclaimer.
13+
# 2. Redistributions in binary form must reproduce the copyright
14+
# notice, this list of conditions and the following disclaimer in the
15+
# documentation and/or other materials provided with the distribution.
16+
# 3. The name of the author may not be used to endorse or promote products
17+
# derived from this software without specific prior written permission.
18+
#
19+
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20+
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21+
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22+
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24+
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25+
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26+
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27+
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28+
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29+
30+
set(version 2.3.1)
31+
set(download_hash SHA256=69d39843a25f1a482e1b568fd042eb34837ffc0d708ab7717edeb52e592ecbeb)
32+
set(patch_version ${version}-1)
33+
set(patch_hash SHA256=ae77564e1fb581fbed5a6bc09e6948de018f0c457f6b7c9d34721985d236c9fe)
34+
set(base_url https://snapshot.debian.org/archive/debian/20191008T150147Z/pool/main/o/openjpeg2/)
35+
36+
option(USE_SYSTEM_OPENJPEG "Use the system OpenJPEG if possible" ON)
37+
38+
set(test_system_openjpeg2 [[
39+
if(${USE_SYSTEM_OPENJPEG})
40+
enable_language(C)
41+
find_package(OpenJPEG CONFIG QUIET)
42+
string(FIND "${OPENJPEG_CMAKE_DIR}" "${CMAKE_STAGING_PREFIX}/" staging_prefix_start)
43+
if(OPENJPEG_LIBRARIES AND NOT staging_prefix_start EQUAL 0)
44+
message(STATUS "Found ${SYSTEM_NAME} OpenJPEG: ${OPENJPEG_LIBRARIES}")
45+
set(BUILD_CONDITION 0)
46+
endif()
47+
endif()
48+
]])
49+
50+
superbuild_package(
51+
NAME openjpeg2-patches
52+
VERSION ${patch_version}
53+
54+
SOURCE
55+
URL ${base_url}openjpeg2_${patch_version}.debian.tar.xz
56+
URL_HASH ${patch_hash}
57+
)
58+
59+
superbuild_package(
60+
NAME openjpeg2
61+
VERSION ${patch_version}
62+
DEPENDS
63+
source:openjpeg2-patches-${patch_version}
64+
curl
65+
libpng
66+
tiff
67+
zlib
68+
SOURCE
69+
URL ${base_url}openjpeg2_${version}.orig.tar.xz
70+
URL_HASH ${download_hash}
71+
PATCH_COMMAND
72+
"${CMAKE_COMMAND}"
73+
-Dpackage=openjpeg2-patches-${patch_version}
74+
-P "${APPLY_PATCHES_SERIES}"
75+
76+
USING USE_SYSTEM_OPENJPEG patch_version version
77+
BUILD_CONDITION ${test_system_openjpeg2}
78+
BUILD [[
79+
CMAKE_ARGS
80+
"-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}"
81+
"-DOPENJPEG_INSTALL_DATA_DIR=share/openjpeg2"
82+
"-DOPENJPEG_INSTALL_INCLUDE_DIR=include/openjpeg2"
83+
"-DOPENJPEG_INSTALL_DOC_DIR=share/doc/openjpeg2"
84+
"-DOPENJPEG_INSTALL_PACKAGE_DIR=lib/cmake/OpenJPEG-${version}"
85+
INSTALL_COMMAND
86+
"${CMAKE_COMMAND}" --build . --target install/strip/fast
87+
COMMAND
88+
"${CMAKE_COMMAND}" -E copy
89+
"<SOURCE_DIR>/../openjpeg2-patches-${patch_version}/copyright"
90+
"${DESTDIR}${CMAKE_STAGING_PREFIX}/share/doc/copyright/openjpeg2-${patch_version}.txt"
91+
]]
92+
)

0 commit comments

Comments
 (0)