x11-libs/glbinding: make pkgcheck happy

This commit is contained in:
blackteahamburger 2024-08-17 22:02:50 +08:00 committed by 梁永祥
parent 582c88784b
commit 36ba23a932
2 changed files with 7 additions and 8 deletions

View File

@ -1 +1 @@
DIST v3.3.0.tar.gz 1909691 BLAKE2B 63ce77a56df1fcbd122420e7adde8f4537d769dc8d5b2621382a7368e0f99211ee4b38f82bc4fb76262ac0a72ff1deeeff52e71e27716c3ebb445b953534ab59 SHA512 4e43dc9c25f7f11bcdad7aacc90512fc1a8b6c804ee96093e453068768b198894188a699e163b24954d624d7d25bb7a4db620b80bf71007f1e600a6b710a9e4d
DIST glbinding-3.3.0.tar.gz 1909691 BLAKE2B 63ce77a56df1fcbd122420e7adde8f4537d769dc8d5b2621382a7368e0f99211ee4b38f82bc4fb76262ac0a72ff1deeeff52e71e27716c3ebb445b953534ab59 SHA512 4e43dc9c25f7f11bcdad7aacc90512fc1a8b6c804ee96093e453068768b198894188a699e163b24954d624d7d25bb7a4db620b80bf71007f1e600a6b710a9e4d

View File

@ -1,22 +1,21 @@
# Copyright 2022 Gentoo Authors
# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A C++ binding for the OpenGL API"
HOMEPAGE="https://glbinding.org/"
SRC_URI="https://github.com/cginternals/glbinding/archive/refs/tags/v${PV}.tar.gz"
IUSE="lto"
SRC_URI="https://github.com/cginternals/glbinding/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
inherit cmake-multilib
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="x86 amd64 arm arm64"
KEYWORDS="amd64 arm arm64 x86"
IUSE="lto"
PATCHES=(
${FILESDIR}/glbinding-fix-install.patch
"${FILESDIR}"/glbinding-fix-install.patch
)
src_configure(){
@ -34,5 +33,5 @@ src_configure(){
src_install(){
cmake-multilib_src_install
# remove conflict files with libglvnd
rm ${D}/usr/include/KHR/khrplatform.h
rm "${D}"/usr/include/KHR/khrplatform.h
}