blob: 94a9e84142a347b3811f57c1d00d978a69b1f915 (
plain)
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="PoDoFo is a C++ library to work with the PDF file format"
HOMEPAGE="https://github.com/podofo/podofo"
# testsuite resources require separate download. Reported at https://github.com/podofo/podofo/issues/102
SRC_URI="https://github.com/podofo/podofo/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
test? (
https://github.com/podofo/podofo-resources/archive/4afe5c3fdb543a4347681b2e52252f1b10f12f24.tar.gz
-> podofo-0.10.1-test-resources.tar.gz
)
"
LICENSE="LGPL-2+ tools? ( GPL-2+ )"
SLOT="0/2"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
IUSE="idn jpeg tiff png fontconfig test tools"
RESTRICT="!test? ( test )"
RDEPEND="
idn? ( net-dns/libidn:= )
dev-libs/openssl:=
fontconfig? ( media-libs/fontconfig:= )
media-libs/freetype:2=
jpeg? ( media-libs/libjpeg-turbo:= )
png? ( media-libs/libpng:= )
dev-libs/libxml2
tiff? ( media-libs/tiff:= )
sys-libs/zlib:="
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
test? ( fontconfig? ( media-fonts/liberation-fonts ) )
"
src_prepare() {
cmake_src_prepare
if use test; then
rmdir extern/resources || die
mv "${WORKDIR}"/podofo-resources-4afe5c3fdb543a4347681b2e52252f1b10f12f24 extern/resources || die
fi
}
src_configure() {
local mycmakeargs=(
-DPODOFO_BUILD_TEST=$(usex test ON OFF)
-DPODOFO_BUILD_TOOLS=$(usex tools ON OFF)
$(cmake_use_find_package idn Libidn)
$(cmake_use_find_package jpeg JPEG)
$(cmake_use_find_package tiff TIFF)
$(cmake_use_find_package png PNG)
$(cmake_use_find_package fontconfig Fontconfig)
)
cmake_src_configure
}
src_test() {
local CMAKE_SKIP_TESTS=(
$(usev !png 'TestImage3')
$(usev !jpeg 'TestImage2 TestImage4 TestImage5')
# relies on finding arial font
$(usev !fontconfig 'testLoadEncrypedFilePdfMemDocument testLoadEncrypedFilePdfParser testCyclicTree testNestedArrayTree testEmptyKidsTree testNestedArrayTree testCreateDelete')
)
cmake_src_test
}
|