Skip to content

Commit

Permalink
Add openjpeg2 2.3.1-1
Browse files Browse the repository at this point in the history
  • Loading branch information
dg0yt committed Dec 15, 2019
1 parent bb7dec7 commit 9a10955
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gdal-3.0.2+dfsg.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ superbuild_package(
libjpeg
liblzma
libpng
openjpeg2
pcre3
proj
sqlite3
Expand Down Expand Up @@ -138,6 +139,9 @@ superbuild_package(
$<$<NOT:$<BOOL:@ANDROID@>>:
"--with-libz=${LIBZ_DIR}"
>
"--with-openjpeg"
"OPENJPEG_CFLAGS=-I${CMAKE_STAGING_PREFIX}/include/openjpeg2"
"OPENJPEG_LIBS=-lopenjp2"
"--with-png=${CMAKE_STAGING_PREFIX}"
"--with-proj=${CMAKE_STAGING_PREFIX}"
"--with-sqlite3=${SQLITE3_DIR}"
Expand Down
92 changes: 92 additions & 0 deletions openjpeg2-2.3.1.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# This file is part of OpenOrienteering.

# Copyright 2019 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 2.3.1)
set(download_hash SHA256=69d39843a25f1a482e1b568fd042eb34837ffc0d708ab7717edeb52e592ecbeb)
set(patch_version ${version}-1)
set(patch_hash SHA256=ae77564e1fb581fbed5a6bc09e6948de018f0c457f6b7c9d34721985d236c9fe)
set(base_url https://snapshot.debian.org/archive/debian/20191008T150147Z/pool/main/o/openjpeg2/)

option(USE_SYSTEM_OPENJPEG "Use the system OpenJPEG if possible" ON)

set(test_system_openjpeg2 [[
if(${USE_SYSTEM_OPENJPEG})
enable_language(C)
find_package(OpenJPEG CONFIG QUIET)
string(FIND "${OPENJPEG_CMAKE_DIR}" "${CMAKE_STAGING_PREFIX}/" staging_prefix_start)
if(OPENJPEG_LIBRARIES AND NOT staging_prefix_start EQUAL 0)
message(STATUS "Found ${SYSTEM_NAME} OpenJPEG: ${OPENJPEG_LIBRARIES}")
set(BUILD_CONDITION 0)
endif()
endif()
]])

superbuild_package(
NAME openjpeg2-patches
VERSION ${patch_version}

SOURCE
URL ${base_url}openjpeg2_${patch_version}.debian.tar.xz
URL_HASH ${patch_hash}
)

superbuild_package(
NAME openjpeg2
VERSION ${patch_version}
DEPENDS
source:openjpeg2-patches-${patch_version}
curl
libpng
tiff
zlib
SOURCE
URL ${base_url}openjpeg2_${version}.orig.tar.xz
URL_HASH ${download_hash}
PATCH_COMMAND
"${CMAKE_COMMAND}"
-Dpackage=openjpeg2-patches-${patch_version}
-P "${APPLY_PATCHES_SERIES}"

USING USE_SYSTEM_OPENJPEG patch_version version
BUILD_CONDITION ${test_system_openjpeg2}
BUILD [[
CMAKE_ARGS
"-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}"
"-DOPENJPEG_INSTALL_DATA_DIR=share/openjpeg2"
"-DOPENJPEG_INSTALL_INCLUDE_DIR=include/openjpeg2"
"-DOPENJPEG_INSTALL_DOC_DIR=share/doc/openjpeg2"
"-DOPENJPEG_INSTALL_PACKAGE_DIR=lib/cmake/OpenJPEG-${version}"
INSTALL_COMMAND
"${CMAKE_COMMAND}" --build . --target install/strip/fast
COMMAND
"${CMAKE_COMMAND}" -E copy
"<SOURCE_DIR>/../openjpeg2-patches-${patch_version}/copyright"
"${DESTDIR}${CMAKE_STAGING_PREFIX}/share/doc/copyright/openjpeg2-${patch_version}.txt"
]]
)

0 comments on commit 9a10955

Please sign in to comment.