Diff noad-0.8.8 with a noad-0.8.8-r1

/usr/portage/media-video/noad/noad-0.8.8-r1.ebuild 2025-07-29 16:22:14.912457734 +0300
1
# Copyright 2021-2024 Gentoo Authors
1
# Copyright 2021-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit autotools
6
inherit autotools ffmpeg-compat
7 7

  
8 8
DESCRIPTION="Mark commercial breaks in VDR recordings"
9 9
HOMEPAGE="https://github.com/madmartin/noad"
......
15 15
IUSE="+ffmpeg imagemagick libmpeg2"
16 16
REQUIRED_USE="|| ( ffmpeg libmpeg2 )"
17 17

  
18
# <ffmpeg-5 dep for bug #834408, https://github.com/madmartin/noad/issues/2
19 18
DEPEND="
20 19
	libmpeg2? ( media-libs/libmpeg2 )
21
	ffmpeg? ( <media-video/ffmpeg-5:= )
20
	ffmpeg? ( media-video/ffmpeg-compat:4= )
22 21
	imagemagick? ( media-gfx/imagemagick:= )"
23 22
RDEPEND="${DEPEND}"
24 23
BDEPEND="virtual/pkgconfig"
......
29 28
}
30 29

  
31 30
src_configure() {
31
	# bug #834408, https://github.com/madmartin/noad/issues/2
32
	ffmpeg_compat_setup 4
33

  
32 34
	econf \
33 35
		$(usev imagemagick --with-magick) \
34 36
		$(usev !ffmpeg --without-ffmpeg) \
Thank you!