* [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl3-ttf/
@ 2025-04-10 7:16 Matt Jolly
0 siblings, 0 replies; 7+ messages in thread
From: Matt Jolly @ 2025-04-10 7:16 UTC (permalink / raw
To: gentoo-commits
commit: 4cfe71688639da2d66c2b0475bae26cbf469bff1
Author: Matt Jolly <kangie <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 9 06:39:40 2025 +0000
Commit: Matt Jolly <kangie <AT> gentoo <DOT> org>
CommitDate: Thu Apr 10 07:09:23 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfe7168
media-libs/sdl3-ttf: new package, add 3.2.2
This package adds USE `plutosvg` when compared with
`media-libs/sdl2-ttf`. This uses `media-libs/plutosvg` to
provide colour emoji support.
Signed-off-by: Matt Jolly <kangie <AT> gentoo.org>
media-libs/sdl3-ttf/Manifest | 1 +
media-libs/sdl3-ttf/metadata.xml | 23 ++++++++++++++++
media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild | 45 +++++++++++++++++++++++++++++++
3 files changed, 69 insertions(+)
diff --git a/media-libs/sdl3-ttf/Manifest b/media-libs/sdl3-ttf/Manifest
new file mode 100644
index 000000000000..1653c6b0fc76
--- /dev/null
+++ b/media-libs/sdl3-ttf/Manifest
@@ -0,0 +1 @@
+DIST sdl3-ttf-3.2.2.tar.gz 1572749 BLAKE2B 04ce84ad0d19375b6f1e4ccaeb54e0c74f732a59adb64b1c45b27bb36ffeb898686bddcb3208b6dd35dbe1950b207d01d7799fae88501261928b64cee369cc70 SHA512 b9adc28d584759b1cc1072d071caad95ade263a1fb24e294d66fc15e132d44bc62925875cb1f1b596089def9b47d7b73f42ffa4e120ee51982f993dc7a7d3bd7
diff --git a/media-libs/sdl3-ttf/metadata.xml b/media-libs/sdl3-ttf/metadata.xml
new file mode 100644
index 000000000000..db4ceaabdfeb
--- /dev/null
+++ b/media-libs/sdl3-ttf/metadata.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>games@gentoo.org</email>
+ <name>Gentoo Games Project</name>
+ </maintainer>
+ <maintainer type="person">
+ <email>kangie@gentoo.org</email>
+ <name>Matt Jolly</name>
+ </maintainer>
+ <longdescription>
+ This library is a wrapper around the FreeType and Harfbuzz libraries,
+ allowing you to use TrueType fonts to render text in SDL applications.
+ </longdescription>
+ <use>
+ <flag name="harfbuzz">Use <pkg>media-libs/harfbuzz</pkg> for enhanced font rendering</flag>
+ <flag name="plutosvg">Use <pkg>media-libs/plutosvg</pkg> for colour emoji support</flag>
+ </use>
+ <upstream>
+ <remote-id type="github">libsdl-org/SDL_ttf</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
new file mode 100644
index 000000000000..a90b3d91dba9
--- /dev/null
+++ b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake-multilib
+
+MY_P="SDL_ttf-release-${PV}"
+DESCRIPTION="Library that allows you to use TrueType fonts in SDL applications"
+HOMEPAGE="https://github.com/libsdl-org/SDL_ttf"
+SRC_URI="https://github.com/libsdl-org/SDL_ttf/archive/refs/tags/release-${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+harfbuzz +plutosvg static-libs X"
+
+# On bumps, check external/ for versions of bundled freetype + harfbuzz
+# to crank up the dep bounds.
+RDEPEND="
+ >=media-libs/libsdl3-3.2.10[${MULTILIB_USEDEP}]
+ >=media-libs/freetype-2.13.2[harfbuzz?,${MULTILIB_USEDEP}]
+ virtual/opengl[${MULTILIB_USEDEP}]
+ harfbuzz? ( >=media-libs/harfbuzz-8.1.1:=[${MULTILIB_USEDEP}] )
+ plutosvg? ( >=media-libs/plutosvg-0.0.6[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}"
+
+multilib_src_configure() {
+ local mycmakeargs=(
+ -DSDLTTF_VENDORED=OFF
+ -DSDLTTF_INSTALL_MAN=ON
+ -DSDLTTF_HARFBUZZ=$(usex harfbuzz)
+ -DSDLTTF_PLUTOSVG=$(usex plutosvg)
+ )
+
+ cmake_src_configure
+}
+
+multilib_src_install_all() {
+ dodoc CHANGES.txt README.md
+
+ rm -rf "${ED}"/usr/share/licenses/ || die
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl3-ttf/
@ 2025-06-18 16:56 Jakov Smolić
0 siblings, 0 replies; 7+ messages in thread
From: Jakov Smolić @ 2025-06-18 16:56 UTC (permalink / raw
To: gentoo-commits
commit: b27782efb38df6b0e994b52d884b2a8859ccaacd
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 18 16:56:13 2025 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Jun 18 16:56:13 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b27782ef
media-libs/sdl3-ttf: Keyword 3.2.2 riscv, #958331
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
index a90b3d91dba9..849a3f916eae 100644
--- a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
+++ b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
IUSE="+harfbuzz +plutosvg static-libs X"
# On bumps, check external/ for versions of bundled freetype + harfbuzz
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl3-ttf/
@ 2025-06-18 19:03 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2025-06-18 19:03 UTC (permalink / raw
To: gentoo-commits
commit: 172876dfc4f1a0df96f08971213f1e3805e2326b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 18 19:02:56 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 18 19:02:56 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=172876df
media-libs/sdl3-ttf: Keyword 3.2.2 arm, #958331
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
index 849a3f916eae..f65fb147bcb7 100644
--- a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
+++ b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="~amd64 ~arm ~riscv"
IUSE="+harfbuzz +plutosvg static-libs X"
# On bumps, check external/ for versions of bundled freetype + harfbuzz
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl3-ttf/
@ 2025-06-18 19:03 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2025-06-18 19:03 UTC (permalink / raw
To: gentoo-commits
commit: 87e7e795c8fd95cd710efd39f840fe0431630726
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 18 19:03:01 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 18 19:03:01 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87e7e795
media-libs/sdl3-ttf: Keyword 3.2.2 arm64, #958331
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
index f65fb147bcb7..f0ad18edb121 100644
--- a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
+++ b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv"
IUSE="+harfbuzz +plutosvg static-libs X"
# On bumps, check external/ for versions of bundled freetype + harfbuzz
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl3-ttf/
@ 2025-07-25 4:46 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2025-07-25 4:46 UTC (permalink / raw
To: gentoo-commits
commit: e09e94c05ee149edf9c4c0958cdabbf8b9b8e306
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 25 04:44:16 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 25 04:44:16 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e09e94c0
media-libs/sdl3-ttf: Keyword 3.2.2 ppc, #958331
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
index f0ad18edb121..398fb79ea413 100644
--- a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
+++ b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv"
IUSE="+harfbuzz +plutosvg static-libs X"
# On bumps, check external/ for versions of bundled freetype + harfbuzz
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl3-ttf/
@ 2025-07-25 4:46 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2025-07-25 4:46 UTC (permalink / raw
To: gentoo-commits
commit: b0f83dc50fef678462a672e856d1291e2e75c559
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 25 04:44:24 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 25 04:44:24 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0f83dc5
media-libs/sdl3-ttf: Keyword 3.2.2 ppc64, #958331
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
index 398fb79ea413..affd9a1bf0ab 100644
--- a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
+++ b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv"
IUSE="+harfbuzz +plutosvg static-libs X"
# On bumps, check external/ for versions of bundled freetype + harfbuzz
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl3-ttf/
@ 2025-07-25 4:46 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2025-07-25 4:46 UTC (permalink / raw
To: gentoo-commits
commit: 57d1b52f7dd61053e3a4294c695562683dccab0d
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 25 04:44:36 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jul 25 04:44:36 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57d1b52f
media-libs/sdl3-ttf: Keyword 3.2.2 x86, #958331
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
index affd9a1bf0ab..7c066bc7c70d 100644
--- a/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
+++ b/media-libs/sdl3-ttf/sdl3-ttf-3.2.2.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${MY_P}"
LICENSE="ZLIB"
SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
IUSE="+harfbuzz +plutosvg static-libs X"
# On bumps, check external/ for versions of bundled freetype + harfbuzz
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2025-07-25 4:47 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-25 4:46 [gentoo-commits] repo/gentoo:master commit in: media-libs/sdl3-ttf/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2025-07-25 4:46 Sam James
2025-07-25 4:46 Sam James
2025-06-18 19:03 Sam James
2025-06-18 19:03 Sam James
2025-06-18 16:56 Jakov Smolić
2025-04-10 7:16 Matt Jolly
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox