media-libs/raylib: new package, add 5.0, 9999

Signed-off-by: Denis Strizhkin <strdenis02@gmail.com>
This commit is contained in:
Denis Strizhkin 2024-05-07 20:22:22 +03:00
parent 4a13a00dde
commit c85edea066
No known key found for this signature in database
GPG Key ID: 4A052F32B7556DAB
4 changed files with 145 additions and 0 deletions

View File

@ -0,0 +1 @@
DIST raylib-5.0.tar.gz 32701105 BLAKE2B ee8ef069cd2a7b91efd1d97e8ed9076620c216fb0bf2eb7517624472d157c2d20919a6c54d7f8160e34c1d1a889f1766f5a94c6577bbb68f779e76a5160229dd SHA512 5956bc1646b99baac6eb1652c4d72e96af874337158672155ba144f131de8a4fd19291a58335a92fcaaa2fc818682f93ff4230af0f815efb8b49f7d2a162e9b0

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>strdenis02@gmail.com</email>
<name>Denis Strizhkin</name>
</maintainer>
<use>
<flag name="system-glfw">Link raylib against system GLFW instead of embedded one</flag>
</use>
<upstream>
<remote-id type="github">raysan5/raylib</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,65 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="A simple and easy-to-use library to learn videogames programming"
HOMEPAGE="https://www.raylib.com/"
LICENSE="ZLIB"
SLOT="0"
IUSE="alsa examples static-libs +system-glfw X wayland"
REQUIRED_USE="|| ( system-glfw || ( X wayland ) )"
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://github.com/raysan5/raylib.git"
inherit git-r3
else
SRC_URI="https://github.com/raysan5/raylib/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/raylib-${PV}"
fi
RDEPEND="
alsa? ( media-libs/alsa-lib )
X? (
virtual/opengl
x11-libs/libX11
x11-libs/libXcursor
x11-libs/libXi
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXxf86vm
)
wayland? (
dev-libs/wayland
media-libs/mesa[wayland]
)
system-glfw? ( >=media-libs/glfw-3.2.1 )
"
DEPEND="${RDEPEND}"
src_configure() {
local mycmakeargs=(
-DBUILD_SHARED_LIBS=$(usex !static-libs ON OFF)
-DUSE_AUDIO=$(usex alsa ON OFF)
-DUSE_EXTERNAL_GLFW=$(usex system-glfw ON OFF)
-DBUILD_EXAMPLES=OFF
)
if use !system-glfw; then
mycmakeargs+=(-DGLFW_BUILD_WAYLAND=$(usex wayland ON OFF))
mycmakeargs+=(-DGLFW_BUILD_X11=$(usex X ON OFF))
fi
cmake_src_configure
}
src_install() {
cmake_src_install
if use examples; then
dodoc -r "${S}"/examples/*
fi
}

View File

@ -0,0 +1,65 @@
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="A simple and easy-to-use library to learn videogames programming"
HOMEPAGE="https://www.raylib.com/"
LICENSE="ZLIB"
SLOT="0"
IUSE="alsa examples static-libs +system-glfw X wayland"
REQUIRED_USE="|| ( system-glfw || ( X wayland ) )"
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://github.com/raysan5/raylib.git"
inherit git-r3
else
SRC_URI="https://github.com/raysan5/raylib/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/raylib-${PV}"
fi
RDEPEND="
alsa? ( media-libs/alsa-lib )
X? (
virtual/opengl
x11-libs/libX11
x11-libs/libXcursor
x11-libs/libXi
x11-libs/libXinerama
x11-libs/libXrandr
x11-libs/libXxf86vm
)
wayland? (
dev-libs/wayland
media-libs/mesa[wayland]
)
system-glfw? ( >=media-libs/glfw-3.2.1 )
"
DEPEND="${RDEPEND}"
src_configure() {
local mycmakeargs=(
-DBUILD_SHARED_LIBS=$(usex !static-libs ON OFF)
-DUSE_AUDIO=$(usex alsa ON OFF)
-DUSE_EXTERNAL_GLFW=$(usex system-glfw ON OFF)
-DBUILD_EXAMPLES=OFF
)
if use !system-glfw; then
mycmakeargs+=(-DGLFW_BUILD_WAYLAND=$(usex wayland ON OFF))
mycmakeargs+=(-DGLFW_BUILD_X11=$(usex X ON OFF))
fi
cmake_src_configure
}
src_install() {
cmake_src_install
if use examples; then
dodoc -r "${S}"/examples/*
fi
}