View | Details | Raw Unified | Return to bug 203637 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (+2 lines)
Lines 3-8 Link Here
3
PORTNAME=	epson-inkjet-printer-escpr
3
PORTNAME=	epson-inkjet-printer-escpr
4
PORTVERSION=	1.6.0
4
PORTVERSION=	1.6.0
5
DISTVERSIONSUFFIX=	-1lsb3.2
5
DISTVERSIONSUFFIX=	-1lsb3.2
6
PORTREVISION=	1
6
CATEGORIES=	print
7
CATEGORIES=	print
7
MASTER_SITES=	LOCAL/hrs
8
MASTER_SITES=	LOCAL/hrs
8
9
Lines 20-25 Link Here
20
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
21
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
21
GNU_CONFIGURE=	yes
22
GNU_CONFIGURE=	yes
22
INSTALL_TARGET=	install-strip
23
INSTALL_TARGET=	install-strip
24
SUB_FILES=	pkg-message
23
PORTDOCS=	AUTHORS COPYING NEWS README README.ja
25
PORTDOCS=	AUTHORS COPYING NEWS README README.ja
24
26
25
OPTIONS_DEFINE=	DOCS
27
OPTIONS_DEFINE=	DOCS
(-)files/patch-src-filter.c (+8 lines)
Lines 8-10 Link Here
8
 #include "epson-escpr-services.h"
8
 #include "epson-escpr-services.h"
9
 #include "epson-escpr-mem.h"
9
 #include "epson-escpr-mem.h"
10
 
10
 
11
@@ -45,6 +46,7 @@
12
 #include "libprtX.h"
13
 #include "optBase.h"
14
 #include "linux_cmn.h"
15
+#include "xfifo.h"
16
 
17
 #define WIDTH_BYTES(bits) (((bits) + 31) / 32 * 4)
18
 
(-)files/pkg-message.in (+23 lines)
Line 0 Link Here
1
2
Examples to add printer for EP-803AW
3
4
# The printer connected with USB cable (using ulpt0)
5
6
chown :cups /dev/ulpt0
7
chmod g+rw /dev/ulpt0
8
lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -d ' '`" -v 'usb:/dev/ulpt0' -D 'EPSON EP-803AW (ulpt0)' -E
9
10
# The printer connected with USB cable (using unlpt0)
11
12
chown :cups /dev/unlpt0
13
chmod g+rw /dev/unlpt0
14
lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -d ' '`" -v 'usb:/dev/unlpt0' -D 'EPSON EP-803AW (unlpt0)' -E
15
16
# The printer joined network (using LPD port)
17
18
lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -d ' '`" -v 'lpd://192.0.2.100:515/PASSTHRU' -D 'EPSON EP-803AW (LPR)' -E
19
20
# The printer joined network (using port 9100)
21
22
lpadmin -p EPSON_EP-803AW -m "`lpinfo --make-and-model 'EPSON EP-803A' -m | cut -f 1 -d ' '`" -v 'socket://192.0.2.100:9100' -D 'EPSON EP-803AW (RAW)' -E
23

Return to bug 203637