You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

388 lines
15 KiB

  1. #
  2. # Copyright (C) 2006-2016 OpenWrt.org
  3. # Copyright (C) 2017-2019 Luiz Angelo Daros de Luca <luizluca@gmail.com>
  4. #
  5. # This is free software, licensed under the GNU General Public License v2.
  6. # See /LICENSE for more information.
  7. #
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=sane-backends
  10. PKG_VERSION:=1.0.28
  11. PKG_RELEASE:=2
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=https://gitlab.com/sane-project/backends/uploads/9e718daff347826f4cfe21126c8d5091/
  14. PKG_HASH:=31260f3f72d82ac1661c62c5a4468410b89fb2b4a811dabbfcc0350c1346de03
  15. PKG_MAINTAINER:=Luiz Angelo Daros de Luca <luizluca@gmail.com>
  16. PKG_LICENSE:=GPL-2.0 GPL-2.0-or-later
  17. PKG_LICENSE_FILES:=COPYING LICENSE
  18. PKG_CPE_ID:=cpe:/a:sane-backends_project:sane-backends
  19. PKG_INSTALL:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. SANE_BACKENDS:=
  22. define Package/sane-backends/Default
  23. TITLE:=Scanner Access Now Easy
  24. URL:=http://www.sane-project.org/
  25. endef
  26. define Package/sane-backends/Default/description
  27. SANE (Scanner Access Now Easy) is a universal scanner interface.
  28. endef
  29. define Package/sane-backends
  30. $(call Package/sane-backends/Default)
  31. SECTION:=utils
  32. CATEGORY:=Utilities
  33. TITLE+= (drivers)
  34. DEPENDS:=+ALL:sane-backends-all
  35. endef
  36. define Package/sane-backends/description
  37. $(call Package/sane-backends/Default/description)
  38. .
  39. This
  40. endef
  41. define Package/sane-backends/config
  42. menu "Select SANE backends"
  43. depends on PACKAGE_sane-backends
  44. config PACKAGE_sane-backends-all
  45. depends on PACKAGE_sane-backends
  46. prompt "Include all SANE backends (sane-backends-all)"
  47. comment "Backends"
  48. $(foreach backend,$(SANE_BACKENDS), \
  49. $(eval \
  50. $(call Package/Default)
  51. $(call Package/sane-$(backend))
  52. )\
  53. config PACKAGE_sane-$(backend)
  54. prompt "$(TITLE)"
  55. $(foreach config_dep,\
  56. $(filter @%,
  57. $(foreach v, $(DEPENDS), $(if $(findstring :,$v),,$v))
  58. ),\
  59. depends on $(strip $(subst @,,$(config_dep)))
  60. )
  61. )
  62. endmenu
  63. endef
  64. # returns conditional dependency on sane backend
  65. # 1: backend name
  66. #
  67. # If there is no config deps on $(1), returns +sane-$(1).
  68. # Otherwise, +(CONFIG1&&CONFIG2&&..):sane-$(1)
  69. define SaneBackendDependency
  70. $(eval \
  71. $(call Package/Default)
  72. $(call Package/sane-$(1))
  73. FILTER_CONFIG:=$$(strip \
  74. $$(foreach config_dep, \
  75. $$(filter @%, \
  76. $$(foreach v, \
  77. $$(DEPENDS), \
  78. $$(if $$(findstring :,$$v),,$$v) \
  79. ) \
  80. ), \
  81. $$(subst @,,$$(config_dep)) \
  82. ) \
  83. )
  84. ifneq (,$$(FILTER_CONFIG))
  85. FILTER_CONFIG:=($$(subst $$(space),&&,$$(FILTER_CONFIG))):
  86. endif
  87. ) \
  88. +$(FILTER_CONFIG)sane-$(1)
  89. endef
  90. define Package/sane-backends-all
  91. $(call Package/sane-backends/Default)
  92. SECTION:=utils
  93. CATEGORY:=Utilities
  94. TITLE+= (all backends)
  95. DEPENDS:=$(foreach backend,$(SANE_BACKENDS),$(strip $(call SaneBackendDependency,$(backend))))
  96. HIDDEN:=1
  97. endef
  98. define Package/sane-backends-all/description
  99. $(call Package/sane-backends/Default/description)
  100. .
  101. Metapackage for selecting all SANE Backends
  102. endef
  103. define Package/sane-daemon
  104. $(call Package/sane-backends/Default)
  105. SECTION:=utils
  106. CATEGORY:=Utilities
  107. DEPENDS:=+libsane
  108. TITLE+= (network daemon)
  109. USERID:=saned:scanner
  110. endef
  111. define Package/sane-daemon/description
  112. $(call Package/sane-backends/Default/description)
  113. This package contains the SANE daemon.
  114. endef
  115. # Run hotplug to grant access to existing scanners
  116. define Package/sane-daemon/postinst
  117. #!/bin/sh
  118. udevtrigger
  119. endef
  120. define Package/libsane
  121. $(call Package/sane-backends/Default)
  122. SECTION:=libs
  123. CATEGORY:=Libraries
  124. TITLE+= (libraries)
  125. endef
  126. define Package/libsane/description
  127. $(call Package/sane-backends/Default/description)
  128. This package contains the SANE shared libraries.
  129. endef
  130. define Package/sane-frontends
  131. $(call Package/sane-backends/Default)
  132. SECTION:=utils
  133. CATEGORY:=Utilities
  134. DEPENDS:=+libsane +libjpeg +libpng
  135. TITLE+= (frontends)
  136. endef
  137. define Package/sane-frontends/description
  138. $(call Package/sane-backends/Default/description)
  139. This package contains the SANE frontends.
  140. endef
  141. CONFIGURE_ARGS+= \
  142. --enable-shared \
  143. --enable-static \
  144. --disable-preload \
  145. --without-snmp \
  146. --disable-avahi \
  147. --disable-locking \
  148. # ./configure does not even try to detect mmap if crosscompiling
  149. CONFIGURE_VARS+= \
  150. ac_cv_func_mmap_fixed_mapped="yes" \
  151. define Build/Configure
  152. mkdir -p $(PKG_BUILD_DIR)/backend/.libs
  153. $(Build/Configure/Default)
  154. endef
  155. define Build/Install
  156. $(call Build/Install/Default)
  157. mkdir -p $(PKG_INSTALL_DIR)/usr/share/sane
  158. $(foreach file, $(filter-out %/unsupported.desc ,$(wildcard $(PKG_BUILD_DIR)/doc/descriptions/*.desc)),
  159. sed -rn -e '/^:usbid[[:blank:]]+"?0x(....)"?[[:blank:]]+"?0x(....)"?.*/{s//\1 \2/;p}' $(file) | \
  160. sort -u > $(PKG_INSTALL_DIR)/usr/share/sane/$(basename $(notdir $(file))).usbid; \
  161. awk '{ print $$$$2 > "$(PKG_INSTALL_DIR)/usr/share/sane/"$$$$1"-$(basename $(notdir $(file))).usbid" }' \
  162. $(PKG_INSTALL_DIR)/usr/share/sane/$(basename $(notdir $(file))).usbid ;
  163. )
  164. endef
  165. define Package/libsane/install
  166. $(INSTALL_DIR) $(1)/usr/lib/sane/
  167. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsane.so.* $(1)/usr/lib/
  168. $(CP) $(PKG_INSTALL_DIR)/usr/lib/sane/libsane-dll.so.* $(1)/usr/lib/sane/
  169. $(INSTALL_DIR) $(1)/etc/sane.d/dll.d
  170. $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/sane.d/dll.conf $(1)/etc/sane.d/
  171. chmod 0644 $(1)/etc/sane.d/dll.conf
  172. endef
  173. define Package/libsane/conffiles
  174. /etc/sane.d/dll.conf
  175. endef
  176. define Package/sane-daemon/install
  177. $(INSTALL_DIR) $(1)/etc/sane.d
  178. $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/sane.d/saned.conf $(1)/etc/sane.d/
  179. chmod 0644 $(1)/etc/sane.d/saned.conf
  180. $(INSTALL_DIR) $(1)/usr/sbin
  181. $(INSTALL_BIN) ./files/saned.sbin $(1)/usr/sbin/saned
  182. $(INSTALL_DIR) $(1)/usr/lib/sane/
  183. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/saned $(1)/usr/lib/sane/saned
  184. $(INSTALL_DIR) $(1)/etc/xinetd.d
  185. $(INSTALL_CONF) ./files/saned.xinetd $(1)/etc/xinetd.d/sane-port
  186. $(INSTALL_DIR) $(1)/etc/hotplug.d/usb/
  187. $(INSTALL_BIN) ./files/saned.hotplug $(1)/etc/hotplug.d/usb/20-saned
  188. endef
  189. define Package/sane-daemon/conffiles
  190. /etc/sane.d/saned.conf
  191. /etc/xinetd.d/sane-port
  192. endef
  193. define Package/sane-frontends/install
  194. $(INSTALL_DIR) $(1)/usr/bin
  195. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
  196. endef
  197. define Package/sane-backends-all/install
  198. /bin/true
  199. endef
  200. define Build/InstallDev
  201. $(INSTALL_DIR) $(1)/usr/include
  202. $(CP) $(PKG_INSTALL_DIR)/usr/include/sane $(1)/usr/include/
  203. $(INSTALL_DIR) $(1)/usr/lib
  204. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsane.{a,so*} $(1)/usr/lib/
  205. $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
  206. $(CP) $(PKG_BUILD_DIR)/tools/sane-backends.pc $(1)/usr/lib/pkgconfig/
  207. endef
  208. # 1: short name
  209. # 2: description
  210. # 3: dependencies on other packages
  211. define SaneBackend
  212. SANE_BACKENDS+= $(1)
  213. define Package/sane-$(1)
  214. $(call Package/sane-backends/Default)
  215. TITLE:=SANE backend (sane-$(1)) for $(2)
  216. DEPENDS+= +libsane $(3)
  217. HIDDEN:=1
  218. endef
  219. define Package/sane-$(1)/description
  220. $(call Package/sane-backends/Default/description)
  221. .
  222. This package contains the SANE backend for $(2).
  223. endef
  224. define Package/sane-$(1)/install
  225. if [ -f "$(PKG_INSTALL_DIR)/etc/sane.d/$(1).conf" ]; then \
  226. $(INSTALL_DIR) $$(1)/etc/sane.d ; \
  227. $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/sane.d/$(1).conf $$(1)/etc/sane.d/ ; \
  228. chmod 0644 $$(1)/etc/sane.d/$(1).conf ; \
  229. fi ; \
  230. $(INSTALL_DIR) $$(1)/usr/lib/sane ; \
  231. $(CP) $(PKG_INSTALL_DIR)/usr/lib/sane/libsane-$(1).so.* $$(1)/usr/lib/sane/ ; \
  232. if [ -d "$(PKG_INSTALL_DIR)/usr/share/sane/$(1)" ]; then \
  233. $(INSTALL_DIR) $$(1)/usr/share/sane/ ; \
  234. $(CP) -a $(PKG_INSTALL_DIR)/usr/share/sane/$(1) $$(1)/usr/share/sane/ ; \
  235. fi ; \
  236. if [ -s "$(PKG_INSTALL_DIR)/usr/share/sane/$(1).usbid" ]; then \
  237. $(INSTALL_DIR) $$(1)/usr/share/sane/ ; \
  238. $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/sane/????-$(1).usbid $$(1)/usr/share/sane/ ; \
  239. fi
  240. endef
  241. define Package/sane-$(1)/conffiles
  242. /etc/sane.d/$(1).conf
  243. endef
  244. $$(eval $$(call BuildPackage,sane-$(1)))
  245. endef
  246. $(eval $(call BuildPackage,libsane))
  247. $(eval $(call BuildPackage,sane-daemon))
  248. $(eval $(call SaneBackend,abaton,Abaton flatbed scanners))
  249. $(eval $(call SaneBackend,agfafocus,AGFA Focus flatbed scanners))
  250. $(eval $(call SaneBackend,apple,Apple flatbed scanners))
  251. $(eval $(call SaneBackend,artec,Artec flatbed scanners))
  252. $(eval $(call SaneBackend,artec_eplus48u,Artec E+ 48U and re-badged models,+libusb-1.0))
  253. $(eval $(call SaneBackend,as6e,Artec AS6E parallel port interface scanner))
  254. $(eval $(call SaneBackend,avision,Avision and Avision OEM scanners and possibly more flatbed and film scanners,+libusb-1.0))
  255. $(eval $(call SaneBackend,bh,Bell+Howell Copiscan II series document scanners))
  256. $(eval $(call SaneBackend,canon,Canon SCSI scanners,+libusb-1.0))
  257. $(eval $(call SaneBackend,canon630u,the Canon 630u USB flatbed scanner,+libusb-1.0))
  258. $(eval $(call SaneBackend,canon_dr,Canon DR-series scanners,+libusb-1.0))
  259. # Depends on libieee1284
  260. #$(eval $(call SaneBackend,canon_pp,Canon CanoScan Parallel Port flatbed scanners,+libieee1284))
  261. $(eval $(call SaneBackend,cardscan,Corex CardScan usb scanners,+libusb-1.0))
  262. $(eval $(call SaneBackend,coolscan,Nikon film-scanners,+libusb-1.0))
  263. $(eval $(call SaneBackend,coolscan2,Nikon Coolscan film scanners,+libusb-1.0))
  264. $(eval $(call SaneBackend,coolscan3,Nikon Coolscan film scanners,+libusb-1.0))
  265. $(eval $(call SaneBackend,dc210,Kodak DC210 Digital Camera,+libjpeg))
  266. $(eval $(call SaneBackend,dc240,Kodak DC240 Digital Camera,+libjpeg))
  267. $(eval $(call SaneBackend,dc25,Kodak DC20/DC25 Digital Cameras))
  268. $(eval $(call SaneBackend,dell1600n_net,Dell 1600n,+libtiff +libjpeg))
  269. $(eval $(call SaneBackend,dmc,Polaroid Digital Microscope Camera))
  270. $(eval $(call SaneBackend,epjitsu,Epson-based Fujitsu USB scanners,+libusb-1.0))
  271. $(eval $(call SaneBackend,epson,EPSON scanners,+libusb-1.0))
  272. $(eval $(call SaneBackend,epsonds,EPSON scanners,+libjpeg +libusb-1.0)) ####
  273. $(eval $(call SaneBackend,epson2,EPSON scanners,+libusb-1.0))
  274. $(eval $(call SaneBackend,fujitsu,Fujitsu flatbed and ADF scanners,+libusb-1.0))
  275. $(eval $(call SaneBackend,genesys,GL646 GL841 GL843 GL847 and GL124 based USB flatbed scanners,+libstdcpp +libusb-1.0))
  276. $(eval $(call SaneBackend,gphoto2,digital cameras supported by gphoto2,+libjpeg +libgphoto2))
  277. $(eval $(call SaneBackend,gt68xx,GT-68XX based USB flatbed scanners,+libusb-1.0))
  278. $(eval $(call SaneBackend,hp,HP ScanJet scanners,+libusb-1.0))
  279. $(eval $(call SaneBackend,hp3500,Hewlett-Packard ScanJet 3500 series scanners,+libusb-1.0))
  280. $(eval $(call SaneBackend,hp3900,RTS8822 chipset based scanners,+libtiff +libusb-1.0))
  281. $(eval $(call SaneBackend,hp4200,Hewlett-Packard 4200 scanners,+libusb-1.0))
  282. $(eval $(call SaneBackend,hp5400,Hewlett-Packard 54XX scanners,+libusb-1.0))
  283. $(eval $(call SaneBackend,hp5590,Hewlett-Packard 4500C/4570C/5500C/5550C/5590/7650 Workgroup/Document scanners,+libusb-1.0))
  284. $(eval $(call SaneBackend,hpljm1005,Hewlett-Packard LaserJet M1005 MFP Scanner,+libusb-1.0))
  285. # Depends on libieee1284
  286. #$(eval $(call SaneBackend,hpsj5s,HP ScanJet 5S sheet-fed scanner,+libieee1284))
  287. $(eval $(call SaneBackend,hs2p,Ricoh SCSI flatbed/ADF scanners))
  288. $(eval $(call SaneBackend,ibm,IBM and Ricoh SCSI flatbed scanners))
  289. $(eval $(call SaneBackend,kodak,big Kodak flatbed and ADF scanners,+libusb-1.0))
  290. $(eval $(call SaneBackend,kodakaio,Kodak aio printer / scanners,+libusb-1.0))
  291. $(eval $(call SaneBackend,kvs1025,Panasonic KV-S102xC USB ADF scanners,+libusb-1.0))
  292. $(eval $(call SaneBackend,kvs20xx,Panasonic KV-S20xxC USB/SCSI ADF scanners,+libusb-1.0))
  293. # https://gitlab.com/sane-project/backends/issues/153
  294. #$(eval $(call SaneBackend,kvs40xx,Panasonic KV-S40xxC USB/SCSI ADF scanners,+libpthread +libusb-1.0))
  295. $(eval $(call SaneBackend,leo,LEO Technologies scanners))
  296. $(eval $(call SaneBackend,lexmark,Lexmark X1100/X1200 Series scanners,+libusb-1.0))
  297. $(eval $(call SaneBackend,ma1509,Mustek BearPaw 1200F USB scanner,+libusb-1.0))
  298. $(eval $(call SaneBackend,magicolor,KONICA MINOLTA magicolor scanners,+libusb-1.0))
  299. $(eval $(call SaneBackend,matsushita,Panasonic KV-SS high speed scanners))
  300. $(eval $(call SaneBackend,microtek,Microtek scanners))
  301. $(eval $(call SaneBackend,microtek2,Microtek scanners with SCSI-2 command set))
  302. $(eval $(call SaneBackend,mustek,Mustek SCSI flatbed scanners and some other devices))
  303. # Depends on libieee1284
  304. #$(eval $(call SaneBackend,mustek_pp,Mustek parallel port flatbed scanners,+libieee1284))
  305. $(eval $(call SaneBackend,mustek_usb,Mustek USB flatbed scanners,+libusb-1.0))
  306. # https://gitlab.com/sane-project/backends/issues/153
  307. #$(eval $(call SaneBackend,mustek_usb2,SQ113 based USB flatbed scanners,+libpthread +libusb-1.0))
  308. $(eval $(call SaneBackend,nec,NEC scanners))
  309. $(eval $(call SaneBackend,net,network backend))
  310. $(eval $(call SaneBackend,niash,scanners based on the NIASH chipset,+libusb-1.0))
  311. $(eval $(call SaneBackend,p5,the Primax PagePartner))
  312. $(eval $(call SaneBackend,pie,PIE Devcom and AdLib SCSI flatbed scanners))
  313. $(eval $(call SaneBackend,pieusb,PIE Devcom and AdLib SCSI flatbed scanners,+libusb-1.0))
  314. # requires sys/scanio.h
  315. #$(eval $(call SaneBackend,pint,))
  316. $(eval $(call SaneBackend,pixma,Canon Multi-Function Printers and CanoScan Scanners,+libusb-1.0 +libjpeg))
  317. $(eval $(call SaneBackend,plustek,LM983[1/2/3] based USB flatbed scanners,+libusb-1.0))
  318. $(eval $(call SaneBackend,plustek_pp,Plustek parallel port flatbed scanners))
  319. $(eval $(call SaneBackend,qcam,Connectix QuickCam cameras,@(TARGET_x86||TARGET_x86_64)))
  320. $(eval $(call SaneBackend,ricoh,Ricoh flatbed scanners))
  321. $(eval $(call SaneBackend,ricoh2,Ricoh2 flatbed scanners,+libusb-1.0))
  322. $(eval $(call SaneBackend,rts8891,rts8891 based scanners,+libusb-1.0))
  323. $(eval $(call SaneBackend,s9036,Siemens 9036 flatbed scanners))
  324. $(eval $(call SaneBackend,sceptre,SCEPTRE scanners))
  325. $(eval $(call SaneBackend,sharp,SHARP scanners))
  326. $(eval $(call SaneBackend,sm3600,Microtek scanners with M011 USB chip,+libusb-1.0))
  327. $(eval $(call SaneBackend,sm3840,Microtek scanners with SCAN08 USB chip,+libusb-1.0))
  328. $(eval $(call SaneBackend,snapscan,AGFA SnapScan flatbed scanners,+libusb-1.0))
  329. $(eval $(call SaneBackend,sp15c,Fujitsu ScanPartner 15C flatbed scanner))
  330. $(eval $(call SaneBackend,st400,Siemens ST/Highscan flatbed scanners))
  331. $(eval $(call SaneBackend,stv680,STV680 cameras,+libusb-1.0))
  332. $(eval $(call SaneBackend,tamarack,Tamarack flatbed scanners))
  333. $(eval $(call SaneBackend,teco1,TECO / RELISYS scanners))
  334. $(eval $(call SaneBackend,teco2,TECO / RELISYS scanners))
  335. $(eval $(call SaneBackend,teco3,TECO / RELISYS scanners))
  336. $(eval $(call SaneBackend,test,testing frontends))
  337. $(eval $(call SaneBackend,u12,Plustek USB flatbed scanners based on older parport designs,+libusb-1.0))
  338. $(eval $(call SaneBackend,umax,UMAX scanners,+libusb-1.0))
  339. $(eval $(call SaneBackend,umax1220u,the UMAX Astra 1220U and similar scanners,+libusb-1.0))
  340. $(eval $(call SaneBackend,umax_pp,Umax Astra parallel port flatbed scanners))
  341. $(eval $(call SaneBackend,v4l,Video for Linux API,+libv4l +libjpeg +libusb-1.0))
  342. $(eval $(call SaneBackend,xerox_mfp,Xerox Phaser 3200MFP device,+libjpeg +libusb-1.0))
  343. $(eval $(call BuildPackage,sane-backends))
  344. $(eval $(call BuildPackage,sane-backends-all))
  345. $(eval $(call BuildPackage,sane-frontends))