summaryrefslogtreecommitdiff
path: root/dev-libs/mxml/mxml-4.0.2.ebuild
blob: 4725865ea65f521be352f0f78261979fba80f6e4 (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
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit autotools toolchain-funcs

DESCRIPTION="A small XML parsing library that you can use to read XML data files or strings"
HOMEPAGE="
	https://github.com/michaelrsweet/mxml
	https://www.msweet.org/mxml/
"
SRC_URI="https://github.com/michaelrsweet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="Mini-XML"
SLOT="4"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="static-libs test threads"
RESTRICT="!test? ( test )"

BDEPEND="virtual/pkgconfig"

PATCHES=( "${FILESDIR}/${PN}-4.0.2-rename-man-page.patch" )

src_prepare() {
	default

	# Don't hardcode FORTIFY_SOURCE
	sed -e 's/-D_FORTIFY_SOURCE=3//g' -i configure || die
	sed -e 's/-D_FORTIFY_SOURCE=3//g' -i configure.ac || die

	# Don't run always tests
	# Enable verbose compiling
	sed -e '/ALLTARGETS/s/testmxml//g' -e '/.SILENT:/d' -i Makefile.in || die
	eautoconf
}

src_configure() {
	local myeconfargs=(
		AR="$(tc-getAR)"
		$(use_enable static-libs static)
		$(use_enable threads)
		--with-docdir=/usr/share/doc/"${PF}"
		--with-dsoflags="${LDFLAGS}"
		--with-ldflags="${LDFLAGS}"

	)

	econf "${myeconfargs[@]}"
}

src_compile() {
	default
	use test && emake testmxml
}

src_test() {
	emake test
}

src_install() {
	emake DSTROOT="${ED}" install
}