forked from Lainports/freebsd-ports
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@
11 lines
564 B
C++
11 lines
564 B
C++
--- src/Standalone/initdeviceselectcombobox.cpp.orig 2022-01-21 22:27:00 UTC
|
|
+++ src/Standalone/initdeviceselectcombobox.cpp
|
|
@@ -80,7 +80,7 @@ void InitDeviceSelectCombobox::add_manu_ip()
|
|
int i = this->count();
|
|
int dev_index = DeviceList::device_list.size();
|
|
while(i <= list_size){
|
|
- this->CreateDisplayName("Network Scanner", device->ipAddress, i, dev_index);
|
|
+ this->CreateDisplayName((char *)"Network Scanner", device->ipAddress, i, dev_index);
|
|
++device;
|
|
i++;
|
|
dev_index++;
|