From c2d99ef0752b76d1aa8b6dc619bacd08e6014651 Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Sun, 16 Mar 2025 21:24:50 -0400 Subject: [PATCH] media-video/dvdstyler: use ffmpeg-compat There seem to be patches going around to fix this with ffmpeg-7, but not going to look into testing these myself. The app-cdr/dvdisaster dependency seem to be a bigger problem than this though. I haven't looked too closely but it seems broken with modern compilers and still depends on gtk+:2. Signed-off-by: Ionen Wolkens --- .../dvdstyler/dvdstyler-3.2.1-r3.ebuild | 81 +++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 media-video/dvdstyler/dvdstyler-3.2.1-r3.ebuild diff --git a/media-video/dvdstyler/dvdstyler-3.2.1-r3.ebuild b/media-video/dvdstyler/dvdstyler-3.2.1-r3.ebuild new file mode 100644 index 0000000000000..3e7453c4d4200 --- /dev/null +++ b/media-video/dvdstyler/dvdstyler-3.2.1-r3.ebuild @@ -0,0 +1,81 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_P=${P/dvds/DVDS} +WX_GTK_VER=3.2-gtk3 + +inherit ffmpeg-compat wxwidgets + +DESCRIPTION="A cross-platform free DVD authoring application" +HOMEPAGE="https://www.dvdstyler.org/" +SRC_URI="https://downloads.sourceforge.net/${PN}/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug +udev" + +DEPEND=" + app-cdr/cdrtools + >=app-cdr/dvd+rw-tools-7.1 + media-libs/libexif:= + media-libs/libjpeg-turbo:= + >=media-libs/wxsvg-1.5.23:= + >=media-video/dvdauthor-0.7.1 + media-video/ffmpeg-compat:6=[encode(+)] + >=media-video/xine-ui-0.99.7 + x11-libs/wxGTK:${WX_GTK_VER}=[gstreamer,X] + sys-apps/dbus + udev? ( >=virtual/libudev-215:= ) +" +RDEPEND="${DEPEND} + >=app-cdr/dvdisaster-0.72.4 + media-video/mjpegtools +" +BDEPEND=" + app-arch/zip + app-text/xmlto + sys-devel/gettext + app-alternatives/yacc + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}"/ffmpeg5.patch + "${FILESDIR}"/wx30.patch + "${FILESDIR}"/wx32.patch +) + +src_prepare() { + default + + # disable obsolete GNOME 2.x libraries wrt #508854 + sed -i -e '/PKG_CONFIG/s:libgnomeui-2.0:dIsAbLeAuToMaGiC&:' configure || die + # rmdir: failed to remove `tempfoobar': Directory not empty + sed -i -e '/rmdir "$$t"/d' docs/Makefile.in || die + # fix underlinking wrt #367863 + sed -i -e 's:@LIBS@:& -ljpeg:' wxVillaLib/Makefile.in || die + # silence desktop-file-validate QA check + sed -i \ + -e '/Icon/s:.png::' -e '/^Encoding/d' -e '/Categories/s:Application;::' \ + data/dvdstyler.desktop || die +} + +src_configure() { + # TODO: fix with >=ffmpeg-7 then drop compat + ffmpeg_compat_setup 6 + ffmpeg_compat_add_flags + + setup-wxwidgets unicode + econf \ + $(use_enable debug) \ + --with-wx-config="${WX_CONFIG}" +} + +src_install() { + default + rm "${ED}"/usr/share/doc/${PF}/{COPYING*,INSTALL*} || die +}