blob: 967e3d3de44b65eda949b63b08c36be1c9dbdd10 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic toolchain-funcs eutils multilib versionator
DESCRIPTION="Simple and small C++ XML parser"
HOMEPAGE="http://www.grinninglizard.com/tinyxml/index.html"
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV//./_}.tar.gz"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sparc x86 ~x64-macos ~x86-macos"
IUSE="debug doc static-libs +stl"
RDEPEND=""
DEPEND="doc? ( app-doc/doxygen )"
S="${WORKDIR}/${PN}"
src_prepare() {
local major_v=$(get_major_version)
local minor_v=$(get_version_component_range 2-3)
sed -e "s:@MAJOR_V@:$major_v:" \
-e "s:@MINOR_V@:$minor_v:" \
"${FILESDIR}"/Makefile-3 > Makefile || die
epatch "${FILESDIR}"/${PN}-2.6.1-entity.patch
epatch "${FILESDIR}"/${PN}.pc.patch
use debug && append-cppflags -DDEBUG
use stl && epatch "${FILESDIR}"/${P}-defineSTL.patch
if use stl; then
sed -e "s/Cflags: -I\${includedir}/Cflags: -I\${includedir} -DTIXML_USE_STL=YES/g" -i tinyxml.pc || die
fi
if ! use static-libs; then
sed -e "/^all:/s/\$(name).a //" -i Makefile || die
fi
tc-export AR CXX RANLIB
[[ ${CHOST} == *-darwin* ]] && export LIBDIR="${EPREFIX}"/usr/$(get_libdir)
eapply_user
}
src_install() {
dolib.so *$(get_libname)*
insinto /usr/include
doins *.h
insinto /usr/share/pkgconfig
doins tinyxml.pc
dodoc {changes,readme}.txt
use doc && dohtml -r docs/*
}
|