Install this version:
emerge -a =media-libs/blend2d-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =media-libs/blend2d-9999
Or alternatively:
emerge --autounmask-write -a =media-libs/blend2d-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0/$(ver_cut 1-2) |
# 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
}
Manage flags for this package:
euse -i <flag> -p media-libs/blend2d |
euse -E <flag> -p media-libs/blend2d |
euse -D <flag> -p media-libs/blend2d
jit? ( >=dev-libs/asmjit-2025.10.12:= )
jit? ( >=dev-libs/asmjit-2025.10.12:= )