dev-tcltk/tcl3d: add 1.0.2

Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
Alfredo Tupone
2026-03-06 15:44:44 +01:00
parent 2ec9001df1
commit 63f79d9972
2 changed files with 60 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST tcl3d-0.9.5.7z 1776479 BLAKE2B c6437073a36405cec8ffaece93e70996109de709c1bf8158a01e7fcc6b085e26ab361d30cbf09f0895761c220d83771beca26eff19f167c0c6c7a60b0965aa25 SHA512 deb21a48b672cc804723a4e8e8c01dee5ed706cb30011e59b532f791317a4620ab8363cf2db9aef802397439b515db54c46d2662513131d0771bc577cde17a11
DIST tcl3d-1.0.2.7z 1768024 BLAKE2B f6a4e9968327c9fc3a4463747072a8f5df639d5e8ffb9da0caef9f8af8dd7146b8ab213ed0b34576965e0bae426ec17f1c828b0a6c3ab789e1eb602da60cae13 SHA512 3605667eac34926db562122422547abd9e2d45cc4913fdf621ab54920f8d0718aa87af7d68d94dfce61b8d83ada5d09e2a98a75ae0f8f77a26228fdca90d90f9

View File

@@ -0,0 +1,59 @@
# Copyright 2024-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic cmake unpacker
DESCRIPTION="Tcl bindings to OpenGL and other 3D libraries"
HOMEPAGE="http://www.tcl3d.org"
SRC_URI="https://www.tcl3d.org/download/distributions/${P}.7z"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="sdl truetype"
RDEPEND="dev-lang/tcl:=
dev-lang/tk:0=
x11-libs/libX11
x11-libs/libXrandr
virtual/opengl
virtual/glu
truetype? ( media-libs/ftgl )
sdl? ( media-libs/libsdl )"
DEPEND="${RDEPEND}"
BDEPEND="
dev-lang/swig
$(unpacker_src_uri_depends)
"
src_prepare() {
sed -i \
-e "s|FTGLGlyph|FTGlyph|" \
tcl3dFTGL/swigfiles/ftgl.i \
|| die
cmake_src_prepare
}
src_configure() {
local _TCL_V=( $(echo 'puts [info tclversion]' | tclsh | tr '.' ' ') )
local _TCL_FV="${_TCL_V[0]}.${_TCL_V[1]}"
local tkPath=/usr/$(get_libdir)/tk${_TCL_FV}/include
append-cppflags -I${tkPath}/generic -I${tkPath}/unix \
-I"${BUILD_DIR}" \
$(pkg-config freetype2 --cflags) \
$(pkg-config sdl --cflags)
local mycmakeargs=(
-Wno-dev
-DTCL3D_BUILD_OGL=Yes
-DTCL3D_BUILD_GAUGES=Yes
-DTCL3D_BUILD_GL2PS=Yes
-DTCL3D_BUILD_FTGL=$(usex truetype)
-DTCL3D_BUILD_SDL=$(usex sdl)
)
cmake_src_configure
}