mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-16 14:29:05 -07:00
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 <ionen@gentoo.org>
This commit is contained in:
81
media-video/dvdstyler/dvdstyler-3.2.1-r3.ebuild
Normal file
81
media-video/dvdstyler/dvdstyler-3.2.1-r3.ebuild
Normal file
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user