blob: f9e83c738ed1d54fa1c16ed45c1617993cdccd58 (
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
|
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake desktop xdg
DESCRIPTION="Barcode encoding library supporting over 50 symbologies"
HOMEPAGE="https://www.zint.org.uk/"
SRC_URI="
https://downloads.sourceforge.net/${PN}/${P}-src.tar.gz
"
S="${WORKDIR}/${P}-src"
# see LICENSE
LICENSE="BSD GPL-3+"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64 ~riscv"
IUSE="gui png test"
RESTRICT="!test? ( test )"
DEPEND="
gui? (
dev-qt/qtbase:6[gui,widgets]
dev-qt/qtsvg:6
dev-qt/qttools:6[widgets]
)
png? (
media-libs/libpng:=
)
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DZINT_FRONTEND=ON
-DZINT_QT6=$(usex gui)
-DZINT_TEST=$(usex test)
-DZINT_UNINSTALL=OFF
-DZINT_USE_PNG=$(usex png)
-DZINT_USE_QT=$(usex gui)
)
cmake_src_configure
}
src_test() {
local -x QT_QPA_PLATFORM=offscreen
cmake_src_test -j1 # parallel tests cause failures to each other
}
src_install() {
cmake_src_install
einstalldocs
if use gui; then
domenu zint-qt.desktop
doicon zint-qt.png
fi
}
|