mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-10 00:10:19 +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>
65 lines
1.3 KiB
Bash
65 lines
1.3 KiB
Bash
# Copyright 2015-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="8"
|
|
|
|
inherit cmake
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/nemtrif/utfcpp"
|
|
EGIT_SUBMODULES=()
|
|
else
|
|
FTEST_GIT_REVISION="1e14b77c2ab8489386fc7046a8bced696c0fc4d6"
|
|
FTEST_DATE="20211106174116"
|
|
fi
|
|
|
|
DESCRIPTION="UTF-8 C++ library"
|
|
HOMEPAGE="https://github.com/nemtrif/utfcpp"
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
SRC_URI=""
|
|
else
|
|
SRC_URI="https://github.com/nemtrif/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
|
test? ( https://github.com/nemtrif/ftest/archive/${FTEST_GIT_REVISION}.tar.gz -> ftest-${FTEST_DATE}.tar.gz )"
|
|
fi
|
|
|
|
LICENSE="Boost-1.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~sparc x86"
|
|
IUSE="test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
BDEPEND=""
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
src_unpack() {
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
git-r3_src_unpack
|
|
|
|
if use test; then
|
|
git-r3_fetch https://github.com/nemtrif/ftest refs/heads/master
|
|
git-r3_checkout https://github.com/nemtrif/ftest "${WORKDIR}/ftest"
|
|
fi
|
|
else
|
|
default
|
|
|
|
if use test; then
|
|
mv ftest-${FTEST_GIT_REVISION} ftest || die
|
|
fi
|
|
fi
|
|
|
|
rmdir "${S}/extern/ftest" || die
|
|
ln -s ../../ftest "${S}/extern/ftest" || die
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DUTF8_SAMPLES=OFF
|
|
-DUTF8_TESTS=$(usex test ON OFF)
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|