subtitleeditor-0.56.2.ebuild
Загрузить (1,39 КБ)
# 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)
}
| ||