1config BR2_PACKAGE_CUPS_FILTERS 2 bool "cups-filters" 3 # needs fork() 4 depends on BR2_USE_MMU 5 depends on BR2_INSTALL_LIBSTDCPP # qpdf 6 depends on !BR2_STATIC_LIBS 7 depends on BR2_USE_WCHAR # libglib2, qpdf 8 depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 9 depends on BR2_PACKAGE_CUPS 10 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 11 select BR2_PACKAGE_JPEG 12 select BR2_PACKAGE_FONTCONFIG 13 select BR2_PACKAGE_FREETYPE 14 select BR2_PACKAGE_LCMS2 15 select BR2_PACKAGE_LIBGLIB2 16 select BR2_PACKAGE_QPDF 17 help 18 This project provides backends, filters, and other software 19 that was once part of the core CUPS distribution but is no 20 longer maintained by Apple Inc. In addition it contains 21 additional filters and software developed independently of 22 Apple, especially filters for the PDF-centric printing 23 workflow introduced by OpenPrinting and a daemon to browse 24 Bonjour broadcasts of remote CUPS printers to make these 25 printers available locally and to provide backward 26 compatibility to the old CUPS broadcasting and browsing of 27 CUPS 1.5.x and older. From CUPS 1.6.0 on, this package is 28 required for using printer drivers with CUPS under Linux. 29 With CUPS 1.5.x and earlier this package can be used 30 optionally to switch over to PDF-based printing. 31 32 http://www.linuxfoundation.org/collaborate/workgroups/openprinting/cups-filters 33 34comment "cups-filters needs a toolchain w/ wchar, C++, threads and dynamic library, gcc >= 4.8" 35 depends on BR2_USE_MMU 36 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 37 !BR2_USE_WCHAR || BR2_STATIC_LIBS || \ 38 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 39