epson-yazici
This commit is contained in:
parent
9f3d45664f
commit
2bd1f7d200
|
@ -0,0 +1,75 @@
|
|||
diff --git a/src/filter.c b/src/filter.c
|
||||
index d13f10e..105eae9 100755
|
||||
--- a/src/filter.c
|
||||
+++ b/src/filter.c
|
||||
@@ -40,6 +40,8 @@
|
||||
#include "epson-escpr-api.h"
|
||||
#include "epson-escpr-services.h"
|
||||
#include "epson-escpr-mem.h"
|
||||
+#include "epson-escpr-services.h"
|
||||
+//#include "epson-escpage.h"
|
||||
|
||||
#include "err.h"
|
||||
#include "mem.h"
|
||||
@@ -48,6 +50,11 @@
|
||||
#include "libprtX.h"
|
||||
#include "optBase.h"
|
||||
#include "linux_cmn.h"
|
||||
+#include "xfifo.h"
|
||||
+
|
||||
+extern EPS_ERR_CODE SetupJobAttrib (const EPS_JOB_ATTRIB*);
|
||||
+extern EPS_ERR_CODE SendStartJob ();
|
||||
+extern EPS_ERR_CODE PrintBand (const EPS_UINT8*, EPS_UINT32, EPS_UINT32*);
|
||||
|
||||
#define WIDTH_BYTES(bits) (((bits) + 31) / 32 * 4)
|
||||
|
||||
@@ -431,7 +438,7 @@ main (int argc, char *argv[])
|
||||
}
|
||||
|
||||
printJob.jobStatus = EPS_STATUS_ESTABLISHED;
|
||||
- int printHeight = 0;
|
||||
+ EPS_UINT32 printHeight = 0;
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
print_area_x = printJob.printableAreaWidth;
|
||||
@@ -605,7 +612,7 @@ main (int argc, char *argv[])
|
||||
memcpy(rever_buf + k*3, startpage + pos + (bandBmp.widthBytes - 6) - k*3, 3);
|
||||
}
|
||||
}
|
||||
- PrintBand (rever_buf, bandBmp.widthBytes, &printHeight);
|
||||
+ PrintBand ((const EPS_UINT8 *)rever_buf, bandBmp.widthBytes, &printHeight);
|
||||
pos -= bandBmp.widthBytes;
|
||||
}
|
||||
|
||||
@@ -898,7 +905,7 @@ set_pips_parameter (filter_option_t *filter_opt_p, EPS_OPT *printOpt)
|
||||
|
||||
/* Get number of pages */
|
||||
char page_num;
|
||||
- read (STDIN_FILENO, &page_num, 1);
|
||||
+ (void)read (STDIN_FILENO, &page_num, 1);
|
||||
debug_msg("total pages = %d\n", page_num);
|
||||
|
||||
/* Others */
|
||||
@@ -949,7 +956,7 @@ EPS_INT32 print_spool_fnc(void* hParam, const EPS_UINT8* pBuf, EPS_UINT32 cbBuf)
|
||||
|
||||
// fwrite (pBuf, cbBuf, 1, outfp);
|
||||
|
||||
- XFIFOWrite(context, pBuf, cbBuf);
|
||||
+ XFIFOWrite(context, (char *)pBuf, cbBuf);
|
||||
|
||||
return 1;
|
||||
}
|
||||
diff --git a/src/mem.c b/src/mem.c
|
||||
index 4b4b118..420eaf5 100755
|
||||
--- a/src/mem.c
|
||||
+++ b/src/mem.c
|
||||
@@ -24,6 +24,7 @@
|
||||
|
||||
#include <stdlib.h>
|
||||
#include "mem.h"
|
||||
+#include "err.h"
|
||||
|
||||
void *
|
||||
mem_malloc (unsigned int size, bool_t crit)
|
||||
--
|
||||
2.15.1
|
|
@ -0,0 +1,26 @@
|
|||
# Tanım: Linux için Epson Mürekkep Püskürtmeli Yazıcı Sürücüsü 2 (ESC/P-R)
|
||||
# URL: http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX
|
||||
# Paketçi: Cihan_Alkan
|
||||
# Gerekler: cups ghostscript imagescan
|
||||
# Grup: sürücü
|
||||
|
||||
isim=epson-inkjet-printer-escpr2
|
||||
surum=1.0.17
|
||||
devir=1
|
||||
|
||||
kaynak=(https://download3.ebz.epson.net/dsc/f/03/00/07/40/95/bdb3928f99c2dcc486a29a5c91f470682166e998/epson-inkjet-printer-escpr2-1.0.17-1lsb3.2.src.rpm
|
||||
bug_x86_64.patch)
|
||||
|
||||
derle() {
|
||||
tar xvf "$isim-$surum-$devir"lsb3.2.tar.gz
|
||||
|
||||
cd "$isim-$surum"
|
||||
|
||||
patch -p1 -i "${SRC}/bug_x86_64.patch"
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--with-cupsfilterdir=/usr/lib/cups/filter \
|
||||
--with-cupsppddir=/usr/share/ppd
|
||||
make
|
||||
make DESTDIR="$PKG" install
|
||||
}
|
Loading…
Reference in New Issue