summaryrefslogtreecommitdiff
path: root/media-video/subtitleeditor
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-24 19:21:09 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-04-24 19:21:09 +0000
commit00ae7917936dcce4c0ff3c6dc8ada15ee24ff8af (patch)
treec48373593348d5561fd150d741470a67929ed0c9 /media-video/subtitleeditor
parent518a9802b3c051064c58d593f5222a61fae2e644 (diff)
downloadbaldeagleos-repo-00ae7917936dcce4c0ff3c6dc8ada15ee24ff8af.tar.gz
baldeagleos-repo-00ae7917936dcce4c0ff3c6dc8ada15ee24ff8af.tar.xz
baldeagleos-repo-00ae7917936dcce4c0ff3c6dc8ada15ee24ff8af.zip
Adding metadata
Diffstat (limited to 'media-video/subtitleeditor')
-rw-r--r--media-video/subtitleeditor/Manifest1
-rw-r--r--media-video/subtitleeditor/subtitleeditor-0.56.2.ebuild58
2 files changed, 59 insertions, 0 deletions
diff --git a/media-video/subtitleeditor/Manifest b/media-video/subtitleeditor/Manifest
index 27d5d93fd2ab..6db00781f89c 100644
--- a/media-video/subtitleeditor/Manifest
+++ b/media-video/subtitleeditor/Manifest
@@ -1 +1,2 @@
DIST subtitleeditor-0.55.0.tar.gz 1351342 BLAKE2B 235325cd4a7e195d1bc1784db36acf0e2089730413ffe08167b450f56bdc33556cc195a02e0eb3e27eaf594aea9ec8eecfb4ae830ead9ac5c0ab299faccd14de SHA512 7bb9bc102b6cffb305b1e0e606362c509b33af3c6172b85a88b2dcc75cade7389c7e5f03fdf368433a9aea03bb7a2099c4901e2c8c0c485feeaf714a69cae1d2
+DIST subtitleeditor-0.56.2.tar.gz 1633351 BLAKE2B 9fd4731ee9197a2e9d66370424d36883f2458d9e7d743ed1ab4ce31b88b5bdfd98b7e8798bbe69fb7caa7eff930feb786f1c74b5957409a9d6f74e339dce09d2 SHA512 f25e6f5be5756a32f4e87a72e4a746f121a2e995e3983f7d0320756c27d225796057b9f63485708d87f9c87350ca14cb9fa8432f26d58af5f59ad51b7505503e
diff --git a/media-video/subtitleeditor/subtitleeditor-0.56.2.ebuild b/media-video/subtitleeditor/subtitleeditor-0.56.2.ebuild
new file mode 100644
index 000000000000..953950177966
--- /dev/null
+++ b/media-video/subtitleeditor/subtitleeditor-0.56.2.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+GNOME2_EAUTORECONF="yes"
+GNOME2_LA_PUNT="yes"
+inherit flag-o-matic gnome2
+
+DESCRIPTION="GTK+3 subtitle editing tool"
+HOMEPAGE="https://subtitleeditor.github.io/subtitleeditor/"
+SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug nls wayland X"
+# opengl would mix gtk+:2 and :3 which is not possible
+
+RDEPEND="
+ >=app-text/enchant-2.2.0:2
+ app-text/iso-codes
+ >=dev-cpp/cairomm-1.12:0
+ >=dev-cpp/glibmm-2.46:2
+ >=dev-cpp/gtkmm-3.18:3.0
+ >=dev-cpp/libxmlpp-2.40:2.6
+ dev-libs/glib:2
+ >=dev-libs/libsigc++-2.6:2
+ media-libs/gst-plugins-base:1.0[X?,pango]
+ media-libs/gst-plugins-good:1.0
+ media-libs/gstreamer:1.0
+ media-plugins/gst-plugins-meta:1.0
+ x11-libs/gtk+:3[wayland?,X?]
+ nls? ( virtual/libintl )
+"
+# opengl? (
+# >=dev-cpp/gtkglextmm-1.2.0-r2:1.0
+# virtual/opengl )
+# pango needed for text overlay
+DEPEND="${RDEPEND}"
+BDEPEND="
+ >=dev-util/intltool-0.40
+ virtual/pkgconfig
+"
+
+src_configure() {
+ # Avoid using --enable-debug as it mocks with CXXFLAGS and LDFLAGS
+ use debug && append-cxxflags -DDEBUG
+
+ use wayland || append-flags -DGENTOO_GTK_HIDE_WAYLAND
+ use X || append-flags -DGENTOO_GTK_HIDE_X11
+
+ gnome2_src_configure \
+ --disable-debug \
+ --disable-gl \
+ $(use_enable nls)
+# $(use_enable opengl gl)
+}