blob: 4e4ad7a349bd7bc230cfbbcd3b7c2b83d1c48012 (
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
|
# Copyright 2021-2025 BaldEagleOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit qmake-utils
DESCRIPTION="Multi-platform helper library for other libraries"
HOMEPAGE="https://www.aquamaniac.de/rdm/"
SRC_URI="https://www.aquamaniac.de/rdm/attachments/download/630/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0/79" # correspond with libgwenhywfar.so version
KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
IUSE="debug gtk libressl qt6 test"
BDEPEND="
sys-devel/gettext
virtual/pkgconfig
"
DEPEND="
dev-libs/libgcrypt:0=
dev-libs/libgpg-error
dev-libs/libxml2:2
libressl? ( dev-libs/libressl:0= )
!libressl? ( dev-libs/openssl:0= )
net-libs/gnutls:=
virtual/libiconv
virtual/libintl
virtual/opengl
gtk? ( x11-libs/gtk+:3 )
qt6? (
dev-qt/qtbase:6[concurrent,dbus,gui,network,opengl,sql,widgets,xml]
virtual/opengl
)
"
RDEPEND="${DEPEND}
gtk? ( !<app-office/gnucash-3.7[aqbanking] )
"
# broken upstream, reported but got no reply
RESTRICT+=" test"
src_configure() {
local myeconfargs=(
--with-docpath="${EPREFIX}/usr/share/doc/${PF}/apidoc"
--with-libxml2-code=yes
$(use_enable debug)
)
local guis=()
use gtk && guis+=( gtk3 )
use qt6 && guis+=( qt5 ) # yes. qt5.
QTPATHS="$(qt6_get_bindir)/qtpaths" \
econf "${myeconfargs[@]}" "--with-guis=${guis[*]}"
}
src_compile() {
emake
}
src_install() {
default
find "${D}" -name '*.la' -type f -delete || die
}
|