mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-09 00:07:57 +03:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
69 lines
1.6 KiB
Bash
69 lines
1.6 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic toolchain-funcs multilib
|
|
|
|
DESCRIPTION="Simple and small C++ XML parser"
|
|
HOMEPAGE="http://www.grinninglizard.com/tinyxml/index.html"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${PN}_${PV//./_}.tar.gz"
|
|
|
|
LICENSE="ZLIB"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos"
|
|
IUSE="debug doc static-libs +stl"
|
|
|
|
BDEPEND="doc? ( app-text/doxygen )"
|
|
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
DOCS=( "changes.txt" "readme.txt" )
|
|
|
|
src_prepare() {
|
|
local major_v=$(ver_cut 1)
|
|
local minor_v=$(ver_cut 2-3)
|
|
|
|
sed -e "s:@MAJOR_V@:$major_v:" \
|
|
-e "s:@MINOR_V@:$minor_v:" \
|
|
"${FILESDIR}"/Makefile-3 > Makefile || die
|
|
|
|
eapply -p0 "${FILESDIR}"/${PN}-2.6.1-entity.patch
|
|
eapply -p0 "${FILESDIR}"/${PN}.pc.patch
|
|
eapply "${FILESDIR}"/${P}-CVE-2021-42260.patch
|
|
|
|
use debug && append-cppflags -DDEBUG
|
|
use stl && eapply "${FILESDIR}"/${P}-defineSTL.patch
|
|
|
|
sed -e "s:/lib:/$(get_libdir):g" -i tinyxml.pc || die # bug 738948
|
|
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
|
|
|
|
einstalldocs
|
|
|
|
if use doc ; then
|
|
docinto html
|
|
dodoc -r docs/*
|
|
fi
|
|
}
|