blob: 0dd011dd547ded83a68a247e2bb91e22cf20ed10 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DESCRIPTION="Rendering engine for MathML documents"
HOMEPAGE="http://helm.cs.unibo.it/mml-widget/"
SRC_URI="http://helm.cs.unibo.it/mml-widget/sources/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 sparc x86"
IUSE="gtk mathml svg t1lib"
RDEPEND="
>=dev-libs/glib-2.2.1:2
>=dev-libs/popt-1.7
>=dev-libs/libxml2-2.6.7:2
gtk? (
>=media-libs/t1lib-5:5
>=x11-libs/gtk+-2.2.1:2
x11-libs/pango
x11-libs/pangox-compat
)
mathml? ( media-fonts/texcm-ttf )
t1lib? ( >=media-libs/t1lib-5:5 )
"
DEPEND="${RDEPEND}
dev-libs/libxslt
virtual/pkgconfig
"
DOCS=( ANNOUNCEMENT AUTHORS BUGS ChangeLog CONTRIBUTORS HISTORY NEWS README TODO )
PATCHES=(
"${FILESDIR}"/${P}-gcc43.patch
"${FILESDIR}"/${P}-gcc44.patch
"${FILESDIR}"/${P}-cond-t1.patch
# Fix building against libxml2[icu], bug #356095
"${FILESDIR}"/${P}-fix-template.patch
# Fix building with gold, bug #369117; requires eautoreconf
"${FILESDIR}"/${P}-underlinking.patch
"${FILESDIR}"/${P}-gcc47.patch
"${FILESDIR}"/${P}-gcc6.patch
# Fix building against GCC 7, bug #639448
"${FILESDIR}"/${P}-gcc7.patch
)
src_prepare() {
default
# m4 macros from upstream git, required for eautoreconf
if [[ ! -d ac-helpers ]]; then
mkdir ac-helpers || die "mkdir failed"
cp "${FILESDIR}"/binreloc.m4 ac-helpers || die "cp failed"
fi
sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die
AT_M4DIR=ac-helpers eautoreconf
}
src_configure() {
# --disable-popt will build only the library and not the frontend
# TFM is needed for SVG, default value is 2
econf $(use_enable gtk) \
$(use_enable svg) \
$(use_with t1lib) \
--with-popt \
--enable-libxml2 \
--enable-libxml2-reader \
--enable-ps \
--enable-tfm=2 \
--enable-builder-cache \
--enable-breaks \
--enable-boxml \
--disable-gmetadom \
--disable-static
}
src_install() {
default
find "${D}" -name '*.la' -delete || die
}
|