xref: /OK3568_Linux_fs/buildroot/package/tovid/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_TOVID
2	bool "tovid"
3	depends on BR2_USE_MMU # fork()
4	depends on BR2_TOOLCHAIN_HAS_THREADS
5	depends on BR2_INSTALL_LIBSTDCPP
6	depends on BR2_USE_WCHAR
7	depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
8	depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
9	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # mpv
10	depends on BR2_TOOLCHAIN_HAS_ATOMIC # mpv
11	depends on BR2_TOOLCHAIN_HAS_SYNC_4 # mpv
12	depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC # mpv
13	# The below dependencies are runtime dependencies only
14	select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # procps_ng
15	select BR2_PACKAGE_DVDAUTHOR
16	select BR2_PACKAGE_DVDRW_TOOLS
17	select BR2_PACKAGE_FFMPEG
18	select BR2_PACKAGE_IMAGEMAGICK
19	select BR2_PACKAGE_JPEG
20	select BR2_PACKAGE_MJPEGTOOLS
21	select BR2_PACKAGE_MPV
22	select BR2_PACKAGE_PROCPS_NG # pgrep and pkill
23	select BR2_PACKAGE_SOX
24	help
25	  The tovid suite, also known simply as tovid, is a collection
26	  of shell and Python scripts for creating DVDs and
27	  (S)VCDs. It is pronounced "to vid" (because it converts to
28	  video disc formats).
29
30	  http://tovid.wikia.com/wiki/Installing_tovid
31
32comment "tovid needs a toolchain w/ threads, C++, wchar, gcc >= 4.9"
33	depends on BR2_USE_MMU
34	depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
35	depends on BR2_TOOLCHAIN_HAS_ATOMIC
36	depends on BR2_TOOLCHAIN_HAS_SYNC_4
37	depends on !BR2_TOOLCHAIN_HAS_THREADS \
38		|| !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 \
39		|| !BR2_INSTALL_LIBSTDCPP \
40		|| !BR2_USE_WCHAR
41	depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC
42
43comment "tovid depends on python or python3"
44	depends on !BR2_PACKAGE_PYTHON && !BR2_PACKAGE_PYTHON3
45	depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
46	depends on BR2_TOOLCHAIN_HAS_ATOMIC
47	depends on BR2_TOOLCHAIN_HAS_SYNC_4
48	depends on !BR2_TOOLCHAIN_HAS_THREADS || \
49		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
50	depends on !BR2_TOOLCHAIN_EXTERNAL_SYNOPSYS_ARC
51