blob: 8bccefc0be858e2759d195bb717594ccee94c1f3 (
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
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
inherit python-r1 qmake-utils
DESCRIPTION="Hex editor library, Qt application written in C++ with Python bindings"
HOMEPAGE="https://github.com/Simsys/qhexedit2/"
SRC_URI="https://github.com/Simsys/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~riscv ~x86"
IUSE="doc +gui python"
REQUIRED_USE="
python? ( ${PYTHON_REQUIRED_USE} )
"
PATCHES=(
"${FILESDIR}/${PN}-0.8.10-pyqt6.patch"
)
RDEPEND="
dev-qt/qtbase:6[gui,widgets]
media-libs/libglvnd
python? (
${PYTHON_DEPS}
$(python_gen_cond_dep '
>=dev-python/pyqt6-6.8.0[gui,widgets,${PYTHON_USEDEP}]
>=dev-python/pyqt6-sip-13.5:=[${PYTHON_USEDEP}]
')
)
"
DEPEND="${RDEPEND}"
BDEPEND="
python? (
$(python_gen_cond_dep '
>=dev-python/pyqt-builder-1.10[${PYTHON_USEDEP}]
>=dev-python/sip-5:=[${PYTHON_USEDEP}]
')
)
"
src_configure() {
QHEXEDIT_DESTDIR="${S}" eqmake6 src/qhexedit.pro
if use gui; then
pushd example || die "can't pushd example"
eqmake6 qhexedit.pro
fi
}
src_compile() {
emake
use gui && emake -C example
if use python; then
export PATH="$(qt6_get_bindir):${PATH}"
python_build() {
pushd "${S}" || die
sip-build || die
popd || die
}
python_foreach_impl run_in_build_dir python_build
fi
}
src_test() {
pushd test || die "can't pushd test"
mkdir logs || die "can't create logs dir"
eqmake6 chunks.pro
emake
./chunks || die "test run failed"
grep -q "^NOK" logs/Summary.log && die "test failed"
}
src_install() {
doheader src/*.h
dolib.so libqhexedit.so*
if use python; then
python_install() {
pushd "${S}"/build || die
emake INSTALL_ROOT="${D}" install
popd || die
}
python_foreach_impl run_in_build_dir python_install
fi
if use gui; then
dobin example/qhexedit
insinto /usr/share/${PN}/
doins example/translations/*.qm
fi
if use doc; then
dodoc -r doc/html
dodoc doc/release.txt
fi
}
|