mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 09:30:30 -04:00
This is a port of the Seiko/Epson Epsonscan2 scanner engine and GUI[1]. It provides a complete alternative to sane/xsane with its own scanner engine and GUI. It also provides a sane back-end library (libsane-epsonscan2.so) so that it works with the sane package. There are two parts to this port: - graphics/epsonscan2 - the main scanner engine and GUI that works with (most) USB scanners - graphics/epsonscan2-non-free-plugin - support for Epson's Linux binary that adds network access to scanners and usb access to some particular scanners Please read the file %%PREFIX%%/lib/epsonscan2/Read_me.FreeBSD for notes on how to set this up and use it. [1] https://download.ebz.epson.net/man/linux/epsonscan2_e.html PR: 261891 Reviewed by: (partly) Tatsuki Makino <tatsuki_makino@hotmail.com>, diizzy@
20 lines
1.3 KiB
C++
20 lines
1.3 KiB
C++
--- src/Standalone/commandlinemode.cpp.orig 2021-11-25 00:56:56 UTC
|
|
+++ src/Standalone/commandlinemode.cpp
|
|
@@ -538,7 +538,7 @@ void CommandLineMode::ErrorMessage(SDIError outError)
|
|
}else if(outError == kSDIErrorPaperProtect){
|
|
error_message = "ERROR : A paper jam has occurred. See the documentation for instructions on removing your originals.";
|
|
}else if(outError == kSDIErrorDeviceInBusy){
|
|
- error_message = "kSDIErrorDeviceInBusy";
|
|
+ error_message = "ERROR : kSDIErrorDeviceInBusy";
|
|
}else if(outError == kSDIErrorCoverOpen){
|
|
error_message = "ERROR : ADF or ADF cover is open. Close it and reload the originals.";
|
|
}else if(outError == kSDIErrorTrayClose){
|
|
@@ -559,6 +559,8 @@ void CommandLineMode::ErrorMessage(SDIError outError)
|
|
error_message = "ERROR : Device is not found...";
|
|
}else if(outError == kSDIErrorUserAuthEnabled){
|
|
error_message = "ERROR : Scanning from Epson Scan 2 is not allowed because the authentication function for the scanner is enabled.";
|
|
+ }else if(outError == kSDIErrorInvalidResponse){
|
|
+ error_message = "ERROR : kSDIErrorInvalidResponse";
|
|
}else {
|
|
error_message = "ERROR : An unexpected error occurred. Epson Scan 2 will close.";
|
|
}
|