commit: 13a4b56982492f89945255ea51835856cdbc7f15 Author: Suleyman Farajli <suleyman <AT> farajli <DOT> net> AuthorDate: Mon Nov 17 13:59:28 2025 +0000 Commit: Suleyman Farajli <suleyman <AT> farajli <DOT> net> CommitDate: Mon Nov 17 13:59:28 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=13a4b569
dev-nim/opengl: new package, add 1.2.9 Signed-off-by: Suleyman Farajli <suleyman <AT> farajli.net> dev-nim/opengl/Manifest | 1 + dev-nim/opengl/opengl-1.2.9.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/dev-nim/opengl/Manifest b/dev-nim/opengl/Manifest new file mode 100644 index 0000000000..2249d3c528 --- /dev/null +++ b/dev-nim/opengl/Manifest @@ -0,0 +1 @@ +DIST opengl-1.2.9.tar.gz 102551 BLAKE2B 6042c928ca385b41521c7ef1e8e7556971feb50d352d56d0e7c5096af5137c5db2bbe666e5de25fb4d95908e63644ce0086e052f09d2e251849e13e6cdc26989 SHA512 816800885653ebaeaeb0d4b4c3744158dd3bf7a822c84d5a739086f94aa2c8cac387e4a0a6bfd2c88d4f721cde0309502b2a61b62d4a586bac44abf7076ee4b1 diff --git a/dev-nim/opengl/opengl-1.2.9.ebuild b/dev-nim/opengl/opengl-1.2.9.ebuild new file mode 100644 index 0000000000..54dde772a1 --- /dev/null +++ b/dev-nim/opengl/opengl-1.2.9.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit nimble + +DESCRIPTION="x11 wrapper for Nim" +HOMEPAGE="https://github.com/nim-lang/opengl" +SRC_URI="https://github.com/nim-lang/opengl/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" + +SLOT="0" + +KEYWORDS="~amd64" +IUSE="examples" + +DEPEND="dev-nim/x11" + +src_install() { + nimble_src_install + + if use examples; then + dodoc -r examples + fi +}
