mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 11:58:43 -04:00
41 lines
797 B
Bash
41 lines
797 B
Bash
# Copyright 2022 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"
|
|
|
|
inherit cmake-multilib
|
|
|
|
RESTRICT="mirror"
|
|
|
|
LICENSE="LGPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="x86 amd64 arm arm64"
|
|
|
|
PATCHES=(
|
|
${FILESDIR}/glbinding-fix-install.patch
|
|
)
|
|
|
|
src_configure(){
|
|
mycmakeargs=(
|
|
-DOPTION_BUILD_TOOLS=OFF
|
|
-DOPTION_BUILD_EXAMPLES=OFF
|
|
-DINSTALL_LIB=$(get_libdir)
|
|
-DINSTALL_SHARED=$(get_libdir)
|
|
-DOPTION_BUILD_WITH_LTO=$(usex lto ON OFF)
|
|
)
|
|
|
|
cmake-multilib_src_configure
|
|
}
|
|
|
|
src_install(){
|
|
cmake-multilib_src_install
|
|
# remove conflict files with libglvnd
|
|
rm ${D}/usr/include/KHR/khrplatform.h
|
|
}
|