1config BR2_PACKAGE_HPLIP 2 bool "hplip" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_PACKAGE_CUPS 5 depends on BR2_TOOLCHAIN_HAS_THREADS # libusb 6 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb 7 depends on !BR2_STATIC_LIBS # libdl 8 select BR2_PACKAGE_LIBUSB 9 select BR2_PACKAGE_JPEG 10 help 11 HP Linux Imaging and Printing (HPLIP) 12 HPLIP is an HP-developed solution for printing, scanning, and 13 faxing with HP inkjet and laser based printers in Linux. The 14 HPLIP project provides printing support for 2,211 printer 15 models, including Deskjet, Officejet, Photosmart, PSC 16 (Print Scan Copy), Business Inkjet, LaserJet, Edgeline MFP, 17 and LaserJet MFP. 18 19 http://hplipopensource.com/ 20 21comment "hplip needs a toolchain w/ C++, threads, dynamic library, gcc >= 4.9" 22 depends on BR2_PACKAGE_CUPS 23 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ 24 BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 25