blob: 2dd094a0ec60db823ee986bdf8196fae2c05d8e7 (
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 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
GNOME_ORG_MODULE="${PN/pp/++}"
inherit gnome2 meson-multilib
DESCRIPTION="C++ wrapper for the libxml2 XML parser library"
HOMEPAGE="http://libxmlplusplus.sourceforge.net/"
LICENSE="LGPL-2.1"
SLOT="2.6"
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
IUSE="doc test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-libs/libxml2-2.7.7[${MULTILIB_USEDEP}]
>=dev-cpp/glibmm-2.32.0:2[${MULTILIB_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
doc? (
dev-cpp/mm-common
app-doc/doxygen
media-gfx/graphviz
dev-libs/libxslt
)
"
src_prepare() {
default
sed -i \
-e "/install_docdir = /s/'doc'/'gtk-doc'/" \
docs/reference/meson.build || die
sed -i \
-e "/install_tutorialdir = /s/'doc'/'gtk-doc'/" \
docs/manual/meson.build || die
}
multilib_src_configure() {
local emesonargs=(
-Dmaintainer-mode=false
-Dwarnings=min
-Ddist-warnings=max
-Dbuild-deprecated-api=true
$(meson_native_use_bool doc build-documentation)
-Dvalidation=false
-Dbuild-pdf=false
-Dbuild-examples=false
$(meson_use test build-tests)
-Dmsvc14x-parallel-installable=false
)
meson_src_configure
}
|