c9dd3dd1c45c4e4640ec61c1696ed8712fc5a435
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / dvdrw-tools / Config.in
1 comment "dvdrw-tools needs a toolchain w/ threads, C++, wchar"
2         depends on BR2_USE_MMU
3         depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
4                 !BR2_USE_WCHAR
5
6 config BR2_PACKAGE_DVDRW_TOOLS
7         bool "dvdrw-tools"
8         depends on BR2_USE_MMU # fork()
9         depends on BR2_TOOLCHAIN_HAS_THREADS
10         depends on BR2_INSTALL_LIBSTDCPP
11         depends on BR2_USE_WCHAR
12         help
13           The dvd+rw-tools are used to master Blu-ray Disc
14           and DVD Disc media, both +RW/+R and -RW/-R. Note:
15           The +RW in the name is a historical artifact. This
16           package contains the widely used growisofs program.
17
18           Buildroot does not support packages with a '+' sign
19           in their name, which explains why it is named
20           dvdrw-tools and not dvd+rw-tools.
21
22           Because dvd+rw-tools does not directly interact with
23           disc media it uses a separate media backend program.
24           The usual backend is mkisofs from the cdrtools package.
25           However, cdrtools is not currently part of buildroot.
26
27           The Linux From Scratch project uses uses xorriso for the
28           media backend and Ubuntu uses cdrkit for the backend.
29           Choose the one which seems most appropriate for your use.
30           NOTE: xorriso does not currently support UDF.
31
32           http://fy.chalmers.se/~appro/linux/DVD+RW/tools
33
34 if BR2_PACKAGE_DVDRW_TOOLS
35 choice
36         prompt "Media Backend"
37         help
38           Choose which media backend program to use.
39
40 config BR2_PACKAGE_DVDRW_TOOLS_CDRKIT_BACKEND
41         bool "cdrkit"
42         depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # cdrkit
43         select BR2_PACKAGE_CDRKIT
44         help
45           Symlink mkisofs to genisoimage from the cdrkit package.
46
47 comment "cdrkit needs a toolchain w/ headers >= 3.0"
48         depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
49
50 config BR2_PACKAGE_DVDRW_TOOLS_XORRISO_BACKEND
51         bool "xorriso"
52         select BR2_PACKAGE_XORRISO
53         help
54           Symlink mkisofs to xorrisofs from the xorriso package.
55
56 endchoice
57 endif