mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 16:40:31 -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@
28 lines
1.7 KiB
C++
28 lines
1.7 KiB
C++
--- src/Standalone/deviceconnectiondialog.cpp.orig 2022-02-17 18:43:44 UTC
|
|
+++ src/Standalone/deviceconnectiondialog.cpp
|
|
@@ -110,11 +110,10 @@ void DetectAlertGlassDirty(SDIScannerDriver* driver, S
|
|
#endif
|
|
QString arg2(TranslationString::GetString().translation_str.A_UI_006);
|
|
QString arg3(TranslationString::GetString().translation_str.VERSION_003);
|
|
- QString executable = exeapp + " " + arg1 + " " + "\"" + arg2 + "\"" + " " + arg3 + " " + "A_UI_006" + " " + std::to_string( 1).c_str();
|
|
dir_name = dir_name + "A_UI_006";
|
|
if(!tmpdir.exists(dir_name.c_str())){
|
|
if(!tmpdir.exists(dir_name.c_str())) tmpdir.mkdir(dir_name.c_str());
|
|
- if(!QProcess::startDetached(executable)){
|
|
+ if(!QProcess::startDetached(exeapp, {arg1, arg2, arg3, "A_UI_006", std::to_string( 1).c_str()})){
|
|
qCritical() << "Cannot start program";
|
|
}
|
|
}
|
|
@@ -129,11 +128,10 @@ void DetectAlertGlassDirty(SDIScannerDriver* driver, S
|
|
#endif
|
|
QString arg2(TranslationString::GetString().translation_str.A_UNIT_008);
|
|
QString arg3(TranslationString::GetString().translation_str.VERSION_003);
|
|
- QString executable = exeapp + " " + arg1 + " " + "\"" + arg2 + "\"" + " " + arg3 + " " + "A_UNIT_008" + " " + std::to_string( 2).c_str();
|
|
dir_name = dir_name + "A_UNIT_008";
|
|
if(!tmpdir.exists(dir_name.c_str())){
|
|
if(!tmpdir.exists(dir_name.c_str())) tmpdir.mkdir(dir_name.c_str());
|
|
- if(!QProcess::startDetached(executable)){
|
|
+ if(!QProcess::startDetached(exeapp, {arg1, arg2, arg3, "A_UNIT_008", std::to_string( 2).c_str()})){
|
|
qCritical() << "Cannot start program";
|
|
}
|
|
}
|