mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-10 23:52:59 -04:00
Closes: https://bugs.gentoo.org/883193 Signed-off-by: Henri Gasc <gasc@eurecom.fr> This sould also solve possible issues regarding glew
34 lines
670 B
Bash
34 lines
670 B
Bash
# Copyright 2021-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Game and tools oriented refactored version of GLU tesselator"
|
|
|
|
HOMEPAGE="https://gitlab.eurecom.fr/gasc/libtess2"
|
|
SRC_URI="https://gitlab.eurecom.fr/gasc/libtess2/-/archive/v${PV}/libtess2-v${PV}.tar.bz2"
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
>=media-libs/glew-2.2.0
|
|
>=media-libs/glfw-3.0.0
|
|
>=media-libs/glu-9.0.2"
|
|
BDEPEND="
|
|
${DEPEND}
|
|
>=dev-util/premake-5.0.0_alpha16"
|
|
RDEPEND=""
|
|
|
|
src_compile() {
|
|
emake clean build
|
|
}
|
|
|
|
src_install() {
|
|
echo ${D}
|
|
emake DESTDIR="${D}/usr" install
|
|
}
|