mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
Also add subslot dependency on dev-libs/asmjit and update 9999. Closes: https://bugs.gentoo.org/970929 Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
39 lines
861 B
Bash
39 lines
861 B
Bash
# Copyright 2022-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
inherit cmake
|
|
|
|
DESCRIPTION="2D vector graphics library powered by a JIT compiler."
|
|
HOMEPAGE="https://blend2d.com/"
|
|
if [[ ${PV} == 9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/${PN}/${PN}"
|
|
else
|
|
SRC_URI="https://blend2d.com/download/${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
S="${WORKDIR}/${PN}"
|
|
fi
|
|
|
|
LICENSE="ZLIB"
|
|
SLOT="0/$(ver_cut 1-2)"
|
|
IUSE="+jit test"
|
|
RESTRICT="!test? ( test )"
|
|
|
|
RDEPEND="jit? ( >=dev-libs/asmjit-2025.10.12:= )"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
DOCS=( README.md CONTRIBUTING.md )
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-0.21.2-avoid-adding-O2-to-cflags-gentoo-bug-943226.patch"
|
|
)
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DBLEND2D_NO_JIT=$(usex !jit)
|
|
-DBLEND2D_TEST=$(usex test)
|
|
-DBLEND2D_EXTERNAL_ASMJIT=ON
|
|
)
|
|
cmake_src_configure
|
|
}
|