Install this version:
emerge -a =media-gfx/KTX-Software-4.3.2
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =media-gfx/KTX-Software-4.3.2
Or alternatively:
emerge --autounmask-write -a =media-gfx/KTX-Software-4.3.2
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 4.3.2 | 8 | ~amd64 | 0 |
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake flag-o-matic
DESCRIPTION="KTX (Khronos Texture) Library and Tools"
HOMEPAGE="https://github.com/KhronosGroup/KTX-Software"
LICENSE="Apache-2.0"
SLOT="0"
IUSE=""
SRC_URI="https://github.com/KhronosGroup/KTX-Software/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
RDEPEND="
"
DEPEND="
${RDEPEND}
"
BDEPEND="
app-shells/bash
"
PATCHES=(
"${FILESDIR}/${P}-remove-O3.patch"
"${FILESDIR}/${P}-remove-Werror.patch"
)
src_configure() {
# basisu_kernels_sse.cpp has a #error if any of those are set
append-cxxflags $(test-flags-CXX -mno-avx)
append-cxxflags $(test-flags-CXX -mno-avx2)
append-cxxflags $(test-flags-CXX -mno-avx512f)
local mycmakeargs=(
-DKTX_VERSION=${PV}
-DKTX_FEATURE_TESTS=OFF
-DBUILD_SHARED_LIBS=OFF # https://github.com/KhronosGroup/KTX-Software/issues/935
-DCMAKE_CXX_STANDARD=14 # https://github.com/KhronosGroup/KTX-Software/issues/1172
)
cmake_src_configure
}
src_install() {
cmake_src_install
}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | KTX-Software-4.3.2.tar.gz | 252429885 bytes | https://github.com/KhronosGroup/KTX-Software/archive/refs/tags/v4.3.2.tar.gz |