sane-project-backends/tools
Peter Marschall b4c6cbeb1f spelling fixes for tools 2020-08-29 09:18:04 +02:00
..
hotplug spelling fixes for tools 2020-08-29 09:18:04 +02:00
hotplug-ng Clean up .gitignore file content 2016-06-27 22:40:20 +09:00
openbsd Remove double quotes, use curly braces where appropriate, and fix 2020-03-25 20:15:37 +00:00
.gitignore Clean up .gitignore file content 2016-06-27 22:40:20 +09:00
Makefile.am Merge branch 'ci-tweaks' into 'master' 2019-08-12 09:16:37 +00:00
README .editorconfig: trim trailing blank lines 2017-05-29 21:14:30 +09:00
RenSaneDlls.cmd .editorconfig: trim trailing whitespace 2017-05-29 21:14:29 +09:00
check-po.awk spelling fixes for tools 2020-08-29 09:18:04 +02:00
check-usb-chip.c spelling fixes for tools 2020-08-29 09:18:04 +02:00
create-changelog.sh Adjust ChangeLog trailer comment to match Makefile.am comment 2019-08-26 21:53:09 +09:00
create-release.sh CI: Add a scripted release process 2019-07-30 22:40:11 +09:00
epson2usb.pl .editorconfig: trim trailing blank lines 2017-05-29 21:14:30 +09:00
gamma4scanimage.c Changed bug in gamm4scanimage: When shadow==0 and highlight!=maxin then 2003-09-29 20:32:48 +00:00
libtool-get-dll-ext spelling fixes for tools 2020-08-29 09:18:04 +02:00
mustek600iin-off.c Used #include "../include/sane/...". 2001-05-13 18:44:13 +00:00
sane-backends.pc.in Fix pkg-config file syntax 2010-04-26 21:13:44 +02:00
sane-config.in Update mailing lists addresses to new location 2018-04-18 21:36:00 +09:00
sane-desc.c spelling fixes for tools 2020-08-29 09:18:04 +02:00
sane-find-scanner.c Fix libusb related [-Werror=deprecated-declarations] warnings 2019-09-28 17:46:22 +09:00
style-check.sh style-check: Ignore patch files 2019-06-01 14:41:32 +03:00
umax_pp.c spelling fixes for umax_pp backend 2020-08-29 09:18:03 +02:00
update-upstreams.sh Remove dependency on external resources during CI. Fixes #178 2019-12-02 20:43:51 +09:00
xerox .editorconfig: trim trailing whitespace 2017-05-29 21:14:29 +09:00

README

2006-05-10

This directory contains various tools that may be useful:

 hotplug/:
        Linux hotplug script and an automatically generated config file
        (libsane.usermap) used to change the permissions on the libusb "device
        nodes" in /proc/bus/usb/ when a scanner is plugged in. For newer Linux
        kernels, you may need to use udev instead.  Please read the README file
        in this directory for instructions.

 hotplug-ng/:
        Linux hotplug-ng script and an automatically generated config file
        (libsane.db) used to change the permissions on the libusb "device nodes"
        in /proc/bus/usb/ when a scanner is plugged in. For newer Linux kernels,
        you may need to use udev instead.  Please read the README file in this
        directory for instructions.

 udev/:
	Contains a automatically generated udev rules file. udev now replaces
	hotplug and provides all the functionalities of hotplug. libusb 0.1.12
	or newer is necessary.

 openbsd/:
 	Contains example scripts for hotplugd(8) for USB scanners accessed via
	libusb.

 sane-find-scanner:
        Attempts to find a SCSI scanner attached to your system.
        Invoke with "sane-find-scanner -h" to get command-line
        syntax. More details can be found in the man page
        sane-find-scanner(1).

 xerox:
        A simple script to make photocopies ("xeroxing").  In
        the script, you may need to adjust the device name
        assigned to variable DEV and the resolution assigned
        to variable RES as well as the paper with and height
        (variables WIDTH and HEIGHT, respectively.

 mustek600iin-off:
        Allows you to turn off a Mustek 600 II N scanner.
        Use "make mustek600iin-off" to compile.

 umax_pp:
	Command line utility to scan on UMAX astra 1220P,
	1600P and 2000P, without using the backend. So that
	scanner protocol can be tested directly.

 gamma4scanimage: Creates a gamma table in the format expected by scanimage.
	You can define a gamma value, shadow and highlight.
	Take a look at manual page gamma4scanimage for further information.

 RenSaneDlls.cmd: Convert backend-DLL-filenames according to 8.3 naming
        convention necessary for DLLs on OS/2.

Maybe useful for SANE developers:

 sane-config:
        Show SANE version, linker flags etc. Might be useful for
        frontend developers.

 sane-desc:
        Generate SANE webpages (and ASCII lists) from backend .desc files.
        Run "sane-desc --help" for details. The default lists are generated
        in doc/Makefile.

 check-po.awk:
        Print untranslated and fuzzy messages and their line numbers in the
        source code and po file. Example:
           tools/check-po.awk po/de.po
        You may need to adjust the path of gawk in the first line of the
        script. Alternatively, run it via gawk's -f option, like so:
           gawk -f tools/check-po.awk po/de.po
        More documentation is in the script itself.