commit:     571831d4df1cfbad54de9892d76232ffc9a23e8f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 12 11:42:42 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec 12 11:42:42 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=571831d4

sci-libs/opencascade: fix build w/ newer freetype

Closes: https://bugs.gentoo.org/939996
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../files/opencascade-7.8.1-freetype-const.patch    | 21 +++++++++++++++++++++
 sci-libs/opencascade/opencascade-7.8.1.ebuild       |  1 +
 2 files changed, 22 insertions(+)

diff --git a/sci-libs/opencascade/files/opencascade-7.8.1-freetype-const.patch 
b/sci-libs/opencascade/files/opencascade-7.8.1-freetype-const.patch
new file mode 100644
index 000000000000..63ac571a407d
--- /dev/null
+++ b/sci-libs/opencascade/files/opencascade-7.8.1-freetype-const.patch
@@ -0,0 +1,21 @@
+https://bugs.gentoo.org/939996
+https://github.com/Open-Cascade-SAS/OCCT/commit/7236e83dcc1e7284e66dc61e612154617ef715d6
+
+From 7236e83dcc1e7284e66dc61e612154617ef715d6 Mon Sep 17 00:00:00 2001
+From: dpasukhi <[email protected]>
+Date: Tue, 27 Aug 2024 11:33:29 +0100
+Subject: [PATCH] 0033808: Coding - FreeType Use unsigned point and contour
+ indexing in `FT_Outline`
+
+Changes to auto instead of specific type
+--- a/src/StdPrs/StdPrs_BRepFont.cxx
++++ b/src/StdPrs/StdPrs_BRepFont.cxx
+@@ -457,7 +457,7 @@ Standard_Boolean StdPrs_BRepFont::renderGlyph (const 
Standard_Utf32Char theChar,
+   for (short aContour = 0, aStartIndex = 0; aContour < anOutline->n_contours; 
++aContour)
+   {
+     const FT_Vector* aPntList = &anOutline->points[aStartIndex];
+-    const char* aTags      = &anOutline->tags[aStartIndex];
++    const auto* aTags      = &anOutline->tags[aStartIndex];
+     const short anEndIndex = anOutline->contours[aContour];
+     const short aPntsNb    = (anEndIndex - aStartIndex) + 1;
+     aStartIndex = anEndIndex + 1;

diff --git a/sci-libs/opencascade/opencascade-7.8.1.ebuild 
b/sci-libs/opencascade/opencascade-7.8.1.ebuild
index 3dd89af46c7c..6c495f2484d2 100644
--- a/sci-libs/opencascade/opencascade-7.8.1.ebuild
+++ b/sci-libs/opencascade/opencascade-7.8.1.ebuild
@@ -112,6 +112,7 @@ PATCHES=(
        "${FILESDIR}/${PN}-7.8.0-tests.patch"
        "${FILESDIR}/${PN}-7.8.0-jemalloc-noexcept.patch"
        "${FILESDIR}/${PN}-7.8.1-vtk_components.patch"
+       "${FILESDIR}/${PN}-7.8.1-freetype-const.patch"
 )
 
 src_unpack() {

Reply via email to