Merge branch 'f16' into f17
This commit is contained in:
commit
4b65dbfac2
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,3 +8,4 @@ gutenprint-5.2.4.tar.bz2
|
|||||||
gutenprint-5.2.5.tar.bz2
|
gutenprint-5.2.5.tar.bz2
|
||||||
gutenprint-5.2.6.tar.bz2
|
gutenprint-5.2.6.tar.bz2
|
||||||
/gutenprint-5.2.7.tar.bz2
|
/gutenprint-5.2.7.tar.bz2
|
||||||
|
/gutenprint-5.2.8.tar.bz2
|
||||||
|
225
gutenprint-5.2.8-soname.patch
Normal file
225
gutenprint-5.2.8-soname.patch
Normal file
@ -0,0 +1,225 @@
|
|||||||
|
diff -up gutenprint-5.2.8/configure.ac.soname gutenprint-5.2.8/configure.ac
|
||||||
|
--- gutenprint-5.2.8/configure.ac.soname 2012-06-12 13:21:46.683739168 +0200
|
||||||
|
+++ gutenprint-5.2.8/configure.ac 2012-06-12 13:21:46.685739141 +0200
|
||||||
|
@@ -39,8 +39,8 @@ pushdef([GUTENPRINT_MAJOR_VERSION],
|
||||||
|
pushdef([GUTENPRINT_MINOR_VERSION], [2])
|
||||||
|
pushdef([GUTENPRINT_MICRO_VERSION], [8])
|
||||||
|
pushdef([GUTENPRINT_EXTRA_VERSION], [])
|
||||||
|
-pushdef([GUTENPRINT_CURRENT_INTERFACE], [3])
|
||||||
|
-pushdef([GUTENPRINT_INTERFACE_AGE], [0])
|
||||||
|
+pushdef([GUTENPRINT_CURRENT_INTERFACE], [2])
|
||||||
|
+pushdef([GUTENPRINT_INTERFACE_AGE], [9])
|
||||||
|
pushdef([GUTENPRINT_BINARY_AGE], [0])
|
||||||
|
pushdef([GUTENPRINTUI2_CURRENT_INTERFACE], [1])
|
||||||
|
pushdef([GUTENPRINTUI2_INTERFACE_AGE], [0])
|
||||||
|
diff -up gutenprint-5.2.8/include/gutenprint/vars.h.soname gutenprint-5.2.8/include/gutenprint/vars.h
|
||||||
|
--- gutenprint-5.2.8/include/gutenprint/vars.h.soname 2012-06-12 13:24:04.387834146 +0200
|
||||||
|
+++ gutenprint-5.2.8/include/gutenprint/vars.h 2012-06-12 13:24:04.403833925 +0200
|
||||||
|
@@ -438,14 +438,6 @@ extern void *stp_get_errdata(const stp_v
|
||||||
|
*/
|
||||||
|
extern void stp_merge_printvars(stp_vars_t *user, const stp_vars_t *print);
|
||||||
|
|
||||||
|
-/**
|
||||||
|
- * Copy settings from one vars object to another, not modifying anything
|
||||||
|
- * unset in the source.
|
||||||
|
- * @param to the destination vars.
|
||||||
|
- * @param from the vars to merge into user.
|
||||||
|
- */
|
||||||
|
-extern void stp_copy_vars_from(stp_vars_t *to, const stp_vars_t *from);
|
||||||
|
-
|
||||||
|
|
||||||
|
/****************************************************************
|
||||||
|
* *
|
||||||
|
diff -up gutenprint-5.2.8/src/cups/rastertoprinter.c.soname gutenprint-5.2.8/src/cups/rastertoprinter.c
|
||||||
|
--- gutenprint-5.2.8/src/cups/rastertoprinter.c.soname 2012-06-12 13:17:29.971291187 +0200
|
||||||
|
+++ gutenprint-5.2.8/src/cups/rastertoprinter.c 2012-06-12 13:23:05.687646188 +0200
|
||||||
|
@@ -134,7 +134,7 @@ static const char *save_file_name = NULL
|
||||||
|
static const char *load_file_name = NULL;
|
||||||
|
#endif /* ENABLE_CUPS_LOAD_SAVE_OPTIONS */
|
||||||
|
|
||||||
|
-extern void stpi_vars_print_error(const stp_vars_t *v, const char *prefix);
|
||||||
|
+extern void stpi_vars_print_error(const stp_vars_t *v);
|
||||||
|
|
||||||
|
static void
|
||||||
|
set_string_parameter(stp_vars_t *v, const char *name, const char *val)
|
||||||
|
@@ -248,7 +248,6 @@ print_debug_block(const stp_vars_t *v, c
|
||||||
|
fprintf(stderr, "DEBUG: Gutenprint: cupsRowFeed = %d\n", cups->header.cupsRowFeed);
|
||||||
|
fprintf(stderr, "DEBUG: Gutenprint: cupsRowStep = %d\n", cups->header.cupsRowStep);
|
||||||
|
fprintf(stderr, "DEBUG: Gutenprint: shrink page to fit %d\n", cups->shrink_to_fit);
|
||||||
|
- stpi_vars_print_error(v, "DEBUG");
|
||||||
|
fprintf(stderr, "DEBUG: Gutenprint: End page data\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -1048,8 +1047,6 @@ load_options(const char *load_name)
|
||||||
|
if (! suppress_messages)
|
||||||
|
fprintf(stderr, "DEBUG: Gutenprint: loading options from %s\n",
|
||||||
|
load_file_name);
|
||||||
|
- if (! suppress_messages)
|
||||||
|
- stpi_vars_print_error(settings, "DEBUG");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
@@ -1343,11 +1340,6 @@ main(int argc, /* I - Number of comm
|
||||||
|
save_file_name = NULL;
|
||||||
|
}
|
||||||
|
#endif /* ENABLE_CUPS_LOAD_SAVE_OPTIONS */
|
||||||
|
- if (! suppress_messages)
|
||||||
|
- {
|
||||||
|
- fprintf(stderr, "DEBUG: Gutenprint: Interim page settings:\n");
|
||||||
|
- stpi_vars_print_error(v, "DEBUG");
|
||||||
|
- }
|
||||||
|
stp_merge_printvars(v, stp_printer_get_defaults(printer));
|
||||||
|
stp_set_int_parameter(v, "PageNumber", cups.page);
|
||||||
|
cups.row = 0;
|
||||||
|
diff -up gutenprint-5.2.8/src/main/gutenprint-internal.h.soname gutenprint-5.2.8/src/main/gutenprint-internal.h
|
||||||
|
--- gutenprint-5.2.8/src/main/gutenprint-internal.h.soname 2012-06-12 13:06:53.000000000 +0200
|
||||||
|
+++ gutenprint-5.2.8/src/main/gutenprint-internal.h 2012-06-12 13:10:45.127894676 +0200
|
||||||
|
@@ -53,7 +53,7 @@ extern "C" {
|
||||||
|
extern void stpi_init_paper(void);
|
||||||
|
extern void stpi_init_dither(void);
|
||||||
|
extern void stpi_init_printer(void);
|
||||||
|
-extern void stpi_vars_print_error(const stp_vars_t *v, const char *prefix);
|
||||||
|
+extern void stpi_vars_print_error(const stp_vars_t *v);
|
||||||
|
#define BUFFER_FLAG_FLIP_X 0x1
|
||||||
|
#define BUFFER_FLAG_FLIP_Y 0x2
|
||||||
|
extern stp_image_t* stpi_buffer_image(stp_image_t* image, unsigned int flags);
|
||||||
|
@@ -71,7 +71,7 @@ do \
|
||||||
|
stp_erprintf("\nERROR: ***Gutenprint %s assertion %s failed!" \
|
||||||
|
" file %s, line %d. %s\n", PACKAGE_VERSION, \
|
||||||
|
#x, __FILE__, __LINE__, "Please report this bug!"); \
|
||||||
|
- if ((v)) stpi_vars_print_error((v), "ERROR"); \
|
||||||
|
+ if ((v)) stpi_vars_print_error((v)); \
|
||||||
|
stp_abort(); \
|
||||||
|
} \
|
||||||
|
} while (0)
|
||||||
|
diff -up gutenprint-5.2.8/src/main/print-vars.c.soname gutenprint-5.2.8/src/main/print-vars.c
|
||||||
|
--- gutenprint-5.2.8/src/main/print-vars.c.soname 2012-02-04 20:17:29.000000000 +0100
|
||||||
|
+++ gutenprint-5.2.8/src/main/print-vars.c 2012-06-12 13:22:34.965071211 +0200
|
||||||
|
@@ -1454,7 +1454,7 @@ stp_vars_copy(stp_vars_t *vd, const stp_
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
-stpi_vars_print_error(const stp_vars_t *v, const char *prefix)
|
||||||
|
+stpi_vars_print_error(const stp_vars_t *v)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
char *cptr;
|
||||||
|
@@ -1470,13 +1470,13 @@ stpi_vars_print_error(const stp_vars_t *
|
||||||
|
"Dimension",
|
||||||
|
"(Inactive)"
|
||||||
|
};
|
||||||
|
- stp_erprintf("%s: Gutenprint: === BEGIN GUTENPRINT SETTINGS ===\n", prefix);
|
||||||
|
- stp_erprintf("%s: Gutenprint: Driver: %s\n", prefix, stp_get_driver(v));
|
||||||
|
- stp_erprintf("%s: Gutenprint: L: %d T: %d W: %d H: %d\n", prefix, stp_get_left(v),
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: === BEGIN GUTENPRINT SETTINGS ===\n");
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: Driver: %s\n", stp_get_driver(v));
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: L: %d T: %d W: %d H: %d\n", stp_get_left(v),
|
||||||
|
stp_get_top(v), stp_get_width(v), stp_get_height(v));
|
||||||
|
- stp_erprintf("%s: Gutenprint: Page: %dx%d\n", prefix, stp_get_page_width(v),
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: Page: %dx%d\n", stp_get_page_width(v),
|
||||||
|
stp_get_page_height(v));
|
||||||
|
- stp_erprintf("%s: Gutenprint: Conversion: %s\n", prefix, stp_get_color_conversion(v));
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: Conversion: %s\n", stp_get_color_conversion(v));
|
||||||
|
for (i = 0; i < STP_PARAMETER_TYPE_INVALID; i++)
|
||||||
|
{
|
||||||
|
const stp_list_item_t *item =
|
||||||
|
@@ -1496,7 +1496,7 @@ stpi_vars_print_error(const stp_vars_t *
|
||||||
|
*cptr = ' ';
|
||||||
|
cptr++;
|
||||||
|
}
|
||||||
|
- stp_erprintf("%s: Gutenprint: (%s) (%i) (%s) [%s]\n", prefix,
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: (%s) (%i) (%s) [%s]\n",
|
||||||
|
val->name, val->active, data_types[val->typ],
|
||||||
|
crep ? crep : "NULL");
|
||||||
|
if (crep)
|
||||||
|
@@ -1508,7 +1508,7 @@ stpi_vars_print_error(const stp_vars_t *
|
||||||
|
case STP_PARAMETER_TYPE_FILE:
|
||||||
|
case STP_PARAMETER_TYPE_RAW:
|
||||||
|
crep = stp_rawtoxmlstr(&(val->value.rval));
|
||||||
|
- stp_erprintf("%s: Gutenprint: (%s) (%i) (%s) [%s]\n", prefix,
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: (%s) (%i) (%s) [%s]\n",
|
||||||
|
val->name, val->active, data_types[val->typ],
|
||||||
|
crep ? crep : "NULL");
|
||||||
|
if (crep)
|
||||||
|
@@ -1517,12 +1517,12 @@ stpi_vars_print_error(const stp_vars_t *
|
||||||
|
case STP_PARAMETER_TYPE_INT:
|
||||||
|
case STP_PARAMETER_TYPE_DIMENSION:
|
||||||
|
case STP_PARAMETER_TYPE_BOOLEAN:
|
||||||
|
- stp_erprintf("%s: Gutenprint: (%s) (%i) (%s) [%d]\n", prefix,
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: (%s) (%i) (%s) [%d]\n",
|
||||||
|
val->name, val->active, data_types[val->typ],
|
||||||
|
val->value.ival);
|
||||||
|
break;
|
||||||
|
case STP_PARAMETER_TYPE_DOUBLE:
|
||||||
|
- stp_erprintf("%s: Gutenprint: (%s) (%i) (%s) [%f]\n", prefix,
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: (%s) (%i) (%s) [%f]\n",
|
||||||
|
val->name, val->active, data_types[val->typ],
|
||||||
|
val->value.dval);
|
||||||
|
break;
|
||||||
|
@@ -1532,7 +1532,7 @@ stpi_vars_print_error(const stp_vars_t *
|
||||||
|
item = stp_list_item_next(item);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
- stp_erprintf("%s: Gutenprint: === END GUTENPRINT SETTINGS ===\n", prefix);
|
||||||
|
+ stp_erprintf("ERROR: Gutenprint: === END GUTENPRINT SETTINGS ===\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
@@ -1882,57 +1882,6 @@ stp_parameter_list_append(stp_parameter_
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
-void
|
||||||
|
-stp_copy_vars_from(stp_vars_t *to, const stp_vars_t *from)
|
||||||
|
-{
|
||||||
|
- int i;
|
||||||
|
- if (!from || !to)
|
||||||
|
- return;
|
||||||
|
- for (i = 0; i < STP_PARAMETER_TYPE_INVALID; i++)
|
||||||
|
- {
|
||||||
|
- const stp_list_item_t *item =
|
||||||
|
- stp_list_get_start((const stp_list_t *) from->params[i]);
|
||||||
|
- while (item)
|
||||||
|
- {
|
||||||
|
- const value_t *val = (const value_t *) stp_list_item_get_data(item);
|
||||||
|
- switch (val->typ)
|
||||||
|
- {
|
||||||
|
- case STP_PARAMETER_TYPE_CURVE:
|
||||||
|
- stp_set_curve_parameter(to, val->name, val->value.cval);
|
||||||
|
- break;
|
||||||
|
- case STP_PARAMETER_TYPE_ARRAY:
|
||||||
|
- stp_set_array_parameter(to, val->name, val->value.aval);
|
||||||
|
- break;
|
||||||
|
- case STP_PARAMETER_TYPE_STRING_LIST:
|
||||||
|
- stp_set_string_parameter(to, val->name, val->value.rval.data);
|
||||||
|
- break;
|
||||||
|
- case STP_PARAMETER_TYPE_FILE:
|
||||||
|
- stp_set_file_parameter(to, val->name, val->value.rval.data);
|
||||||
|
- break;
|
||||||
|
- case STP_PARAMETER_TYPE_RAW:
|
||||||
|
- stp_set_raw_parameter(to, val->name, val->value.rval.data,
|
||||||
|
- val->value.rval.bytes);
|
||||||
|
- break;
|
||||||
|
- case STP_PARAMETER_TYPE_INT:
|
||||||
|
- stp_set_int_parameter(to, val->name, val->value.ival);
|
||||||
|
- break;
|
||||||
|
- case STP_PARAMETER_TYPE_DIMENSION:
|
||||||
|
- stp_set_dimension_parameter(to, val->name, val->value.ival);
|
||||||
|
- break;
|
||||||
|
- case STP_PARAMETER_TYPE_BOOLEAN:
|
||||||
|
- stp_set_boolean_parameter(to, val->name, val->value.bval);
|
||||||
|
- break;
|
||||||
|
- case STP_PARAMETER_TYPE_DOUBLE:
|
||||||
|
- stp_set_float_parameter(to, val->name, val->value.dval);
|
||||||
|
- break;
|
||||||
|
- default:
|
||||||
|
- break;
|
||||||
|
- }
|
||||||
|
- item = stp_list_item_next(item);
|
||||||
|
- }
|
||||||
|
- }
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
static void
|
||||||
|
fill_vars_from_xmltree(stp_mxml_node_t *prop, stp_mxml_node_t *root,
|
||||||
|
stp_vars_t *v)
|
@ -1,22 +0,0 @@
|
|||||||
diff -up gutenprint-5.2.7/src/cups/commandtocanon.c.build gutenprint-5.2.7/src/cups/commandtocanon.c
|
|
||||||
--- gutenprint-5.2.7/src/cups/commandtocanon.c.build 2011-06-07 13:32:37.372042304 +0100
|
|
||||||
+++ gutenprint-5.2.7/src/cups/commandtocanon.c 2011-06-07 13:32:41.270970750 +0100
|
|
||||||
@@ -13,6 +13,7 @@
|
|
||||||
|
|
||||||
#include <cups/cups.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
+#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
|
|
||||||
diff -up gutenprint-5.2.7/src/cups/commandtoepson.c.build gutenprint-5.2.7/src/cups/commandtoepson.c
|
|
||||||
--- gutenprint-5.2.7/src/cups/commandtoepson.c.build 2007-12-24 17:19:20.000000000 +0000
|
|
||||||
+++ gutenprint-5.2.7/src/cups/commandtoepson.c 2011-06-07 13:32:35.656073794 +0100
|
|
||||||
@@ -30,6 +30,7 @@
|
|
||||||
|
|
||||||
#include <cups/cups.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
+#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
|
|
@ -1,38 +1,45 @@
|
|||||||
diff -up gutenprint-5.2.7/src/xml/printers.xml.device-ids gutenprint-5.2.7/src/xml/printers.xml
|
diff -up gutenprint-5.2.8/src/xml/printers.xml.device-ids gutenprint-5.2.8/src/xml/printers.xml
|
||||||
--- gutenprint-5.2.7/src/xml/printers.xml.device-ids 2011-05-01 16:44:04.000000000 +0100
|
--- gutenprint-5.2.8/src/xml/printers.xml.device-ids 2012-05-31 02:57:53.000000000 +0200
|
||||||
+++ gutenprint-5.2.7/src/xml/printers.xml 2011-10-11 11:52:59.723682593 +0100
|
+++ gutenprint-5.2.8/src/xml/printers.xml 2012-06-12 10:03:16.344274655 +0200
|
||||||
@@ -137,17 +137,17 @@
|
@@ -149,16 +149,16 @@
|
||||||
<printer translate="name" name="Canon PIXMA iP1600" driver="bjc-PIXMA-iP1600" manufacturer="Canon" model="3001600" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP1600" />
|
<printer translate="name" name="Canon PIXMA iP100" driver="bjc-PIXMA-iP100" manufacturer="Canon" model="3000100" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP100" />
|
||||||
<printer translate="name" name="Canon PIXMA iP1700" driver="bjc-PIXMA-iP1600" manufacturer="Canon" model="3001600" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP1700" />
|
|
||||||
<printer translate="name" name="Canon PIXMA iP1800" driver="bjc-PIXMA-iP1600" manufacturer="Canon" model="3001600" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP1800" />
|
|
||||||
- <printer translate="name" name="Canon PIXMA iP1900" driver="bjc-PIXMA-iP1900" manufacturer="Canon" model="3001900" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP1900" />
|
|
||||||
+ <printer translate="name" name="Canon PIXMA iP1900" deviceid="MFG:Canon;MDL:iP1900 series;CMD:BJL,HAPS,BSCCe,PLI;" driver="bjc-PIXMA-iP1900" manufacturer="Canon" model="3001900" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP1900" />
|
|
||||||
<printer translate="name" name="Canon PIXMA iP2000" driver="bjc-PIXMA-iP2000" manufacturer="Canon" model="3002000" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP2000" />
|
<printer translate="name" name="Canon PIXMA iP2000" driver="bjc-PIXMA-iP2000" manufacturer="Canon" model="3002000" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP2000" />
|
||||||
<printer translate="name" name="Canon PIXMA iP2200" driver="bjc-PIXMA-iP2200" manufacturer="Canon" model="3002200" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP2200" />
|
<printer translate="name" name="Canon PIXMA iP2700" driver="bjc-PIXMA-iP2700" manufacturer="Canon" model="3002700" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP2700" />
|
||||||
<printer translate="name" name="Canon PIXMA iP2500" driver="bjc-PIXMA-iP2500" manufacturer="Canon" model="3002500" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP2500" />
|
|
||||||
<printer translate="name" name="Canon PIXMA iP2600" driver="bjc-PIXMA-iP2600" manufacturer="Canon" model="3002600" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP2600" />
|
|
||||||
<printer translate="name" name="Canon PIXUS iP2700" driver="bjc-PIXUS-iP2700" manufacturer="Canon" model="3002700" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXUS-iP2700" />
|
|
||||||
- <printer translate="name" name="Canon PIXMA iP3000" driver="bjc-PIXMA-iP3000" manufacturer="Canon" model="3003000" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP3000" />
|
- <printer translate="name" name="Canon PIXMA iP3000" driver="bjc-PIXMA-iP3000" manufacturer="Canon" model="3003000" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP3000" />
|
||||||
+ <printer translate="name" name="Canon PIXMA iP3000" deviceid="MFG:Canon;MDL:iP3000;DES:Canon iP3000;CMD:BJL,BJRaster3,BSCCe;" driver="bjc-PIXMA-iP3000" manufacturer="Canon" model="3003000" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP3000" />
|
+ <printer translate="name" name="Canon PIXMA iP3000" deviceid="MFG:Canon;MDL:iP3000;DES:Canon iP3000;CMD:BJL,BJRaster3,BSCCe;" driver="bjc-PIXMA-iP3000" manufacturer="Canon" model="3003000" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP3000" />
|
||||||
<printer translate="name" name="Canon PIXMA iP3100" driver="bjc-PIXMA-iP3100" manufacturer="Canon" model="3003000" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP3100" />
|
<printer translate="name" name="Canon PIXMA iP3100" driver="bjc-PIXMA-iP3100" manufacturer="Canon" model="3003100" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP3100" />
|
||||||
|
<printer translate="name" name="Canon PIXMA iP3300" driver="bjc-PIXMA-iP3300" manufacturer="Canon" model="3003300" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP3300" />
|
||||||
|
<printer translate="name" name="Canon PIXMA iP3500" driver="bjc-PIXMA-iP3500" manufacturer="Canon" model="3003500" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP3500" />
|
||||||
|
<printer translate="name" name="Canon PIXMA iP3600" driver="bjc-PIXMA-iP3600" manufacturer="Canon" model="3003600" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP3600" />
|
||||||
- <printer translate="name" name="Canon PIXMA iP4000" driver="bjc-iP4000" manufacturer="Canon" model="3004000" parameters="PIXMA_iP4000_params" foomaticid="Canon-iP4000" />
|
- <printer translate="name" name="Canon PIXMA iP4000" driver="bjc-iP4000" manufacturer="Canon" model="3004000" parameters="PIXMA_iP4000_params" foomaticid="Canon-iP4000" />
|
||||||
+ <printer translate="name" name="Canon PIXMA iP4000" deviceid="MFG:Canon;MDL:iP4000;CMD:BJL,BJRaster3,BSCCe;" driver="bjc-iP4000" manufacturer="Canon" model="3004000" parameters="PIXMA_iP4000_params" foomaticid="Canon-iP4000" />
|
+ <printer translate="name" name="Canon PIXMA iP4000" deviceid="MFG:Canon;MDL:iP4000;CMD:BJL,BJRaster3,BSCCe;" driver="bjc-iP4000" manufacturer="Canon" model="3004000" parameters="PIXMA_iP4000_params" foomaticid="Canon-iP4000" />
|
||||||
<printer translate="name" name="Canon PIXMA iP4100" driver="bjc-PIXMA-iP4100" manufacturer="Canon" model="3004000" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP4100" />
|
<printer translate="name" name="Canon PIXMA iP4000R" driver="bjc-PIXMA-iP4000R" manufacturer="Canon" model="3004000" parameters="PIXMA_iP4000_params" foomaticid="Canon-iP4000R" />
|
||||||
|
<printer translate="name" name="Canon PIXMA iP4100" driver="bjc-PIXMA-iP4100" manufacturer="Canon" model="3004100" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP4100" />
|
||||||
|
<printer translate="name" name="Canon PIXMA iP4100R" driver="bjc-PIXMA-iP4100R" manufacturer="Canon" model="3004100" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-iP4100R" />
|
||||||
- <printer translate="name" name="Canon PIXMA iP4200" driver="bjc-PIXMA-iP4200" manufacturer="Canon" model="3004200" parameters="PIXMA_iP4200_params" foomaticid="Canon-PIXMA-iP4200" />
|
- <printer translate="name" name="Canon PIXMA iP4200" driver="bjc-PIXMA-iP4200" manufacturer="Canon" model="3004200" parameters="PIXMA_iP4200_params" foomaticid="Canon-PIXMA-iP4200" />
|
||||||
+ <printer translate="name" name="Canon PIXMA iP4200" deviceid="MFG:Canon;MDL:iP4200;CMD:BJL,BJRaster3,BSCCe;" driver="bjc-PIXMA-iP4200" manufacturer="Canon" model="3004200" parameters="PIXMA_iP4200_params" foomaticid="Canon-PIXMA-iP4200" />
|
+ <printer translate="name" name="Canon PIXMA iP4200" deviceid="MFG:Canon;MDL:iP4200;CMD:BJL,BJRaster3,BSCCe;" driver="bjc-PIXMA-iP4200" manufacturer="Canon" model="3004200" parameters="PIXMA_iP4200_params" foomaticid="Canon-PIXMA-iP4200" />
|
||||||
<printer translate="name" name="Canon PIXMA iP4300" driver="bjc-PIXMA-iP4300" manufacturer="Canon" model="3004200" parameters="PIXMA_iP4300_params" foomaticid="Canon-PIXMA-iP4300" />
|
<printer translate="name" name="Canon PIXMA iP4300" driver="bjc-PIXMA-iP4300" manufacturer="Canon" model="3004300" parameters="PIXMA_iP4300_params" foomaticid="Canon-PIXMA-iP4300" />
|
||||||
<printer translate="name" name="Canon PIXMA iP4500" driver="bjc-PIXMA-iP4500" manufacturer="Canon" model="3004500" parameters="PIXMA_iP4300_params" foomaticid="Canon-PIXMA-iP4500" />
|
<printer translate="name" name="Canon PIXMA iP4500" driver="bjc-PIXMA-iP4500" manufacturer="Canon" model="3004500" parameters="PIXMA_iP4300_params" foomaticid="Canon-PIXMA-iP4500" />
|
||||||
<printer translate="name" name="Canon PIXMA iP4600" driver="bjc-PIXMA-iP4600" manufacturer="Canon" model="3004600" parameters="PIXMA_iP4300_params" foomaticid="Canon-PIXMA-iP4600" />
|
<printer translate="name" name="Canon PIXMA iP4600" driver="bjc-PIXMA-iP4600" manufacturer="Canon" model="3004600" parameters="PIXMA_iP4300_params" foomaticid="Canon-PIXMA-iP4600" />
|
||||||
@@ -174,7 +174,7 @@
|
@@ -188,7 +188,7 @@
|
||||||
<printer translate="name" name="Canon PIXMA MP170" driver="bjc-MULTIPASS-MP170" manufacturer="Canon" model="5000170" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP170" />
|
<printer translate="name" name="Canon PIXMA iX6500" driver="bjc-PIXMA-iX6500" manufacturer="Canon" model="4006500" parameters="PIXMA_iX5000_params" foomaticid="Canon-PIXMA-iX6500" />
|
||||||
<printer translate="name" name="Canon PIXMA MP180" driver="bjc-MULTIPASS-MP180" manufacturer="Canon" model="5000150" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP180" />
|
<printer translate="name" name="Canon PIXMA iX7000" driver="bjc-PIXMA-iX7000" manufacturer="Canon" model="4007000" parameters="PIXMA_iX5000_params" foomaticid="Canon-PIXMA-iX7000" />
|
||||||
<printer translate="name" name="Canon PIXMA MP220" driver="bjc-MULTIPASS-MP220" manufacturer="Canon" model="5000150" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP220" />
|
<printer translate="name" name="Canon PIXMA Pro9000" driver="bjc-PIXMA-Pro9000" manufacturer="Canon" model="7009000" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-Pro9000" />
|
||||||
|
- <printer translate="name" name="Canon PIXMA Pro9000mk2" driver="bjc-PIXMA-Pro9000mk2" manufacturer="Canon" model="7009002" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-Pro9000-Mk2" />
|
||||||
|
+ <printer translate="name" name="Canon PIXMA Pro9000mk2" deviceid="MFG:Canon;MDL:Pro9000II series;CMD:BJL,BJRaster3,BSCCe,PLI;" driver="bjc-PIXMA-Pro9000mk2" manufacturer="Canon" model="7009002" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-Pro9000-Mk2" />
|
||||||
|
<printer translate="name" name="Canon PIXMA Pro9500" driver="bjc-PIXMA-Pro9500" manufacturer="Canon" model="7009500" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-Pro9500" />
|
||||||
|
<printer translate="name" name="Canon PIXMA Pro9500mk2" driver="bjc-PIXMA-Pro9500mk2" manufacturer="Canon" model="7009502" parameters="PIXMA_iP4000_params" foomaticid="Canon-PIXMA-Pro9500-Mk2" />
|
||||||
|
<printer translate="name" name="Canon PIXMA MP140" driver="bjc-MULTIPASS-MP140" manufacturer="Canon" model="5000150" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP140" />
|
||||||
|
@@ -200,7 +200,7 @@
|
||||||
|
<printer translate="name" name="Canon PIXMA MP210" driver="bjc-MULTIPASS-MP210" manufacturer="Canon" model="5000210" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP210" />
|
||||||
|
<printer translate="name" name="Canon PIXMA MP220" driver="bjc-MULTIPASS-MP220" manufacturer="Canon" model="5000210" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP220" />
|
||||||
|
<printer translate="name" name="Canon PIXMA MP240" driver="bjc-MULTIPASS-MP240" manufacturer="Canon" model="5000240" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP240" />
|
||||||
- <printer translate="name" name="Canon PIXMA MP250" driver="bjc-MULTIPASS-MP250" manufacturer="Canon" model="5000250" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP250" />
|
- <printer translate="name" name="Canon PIXMA MP250" driver="bjc-MULTIPASS-MP250" manufacturer="Canon" model="5000250" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP250" />
|
||||||
+ <printer translate="name" name="Canon PIXMA MP250" deviceid="MFG:Canon;CMD:BJL,BJRaster3,BSCCe,IVEC,IVECPLI;MDL:MP250 series;DES:Canon MP250 series;" driver="bjc-MULTIPASS-MP250" manufacturer="Canon" model="5000250" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP250" />
|
+ <printer translate="name" name="Canon PIXMA MP250" deviceid="MFG:Canon;CMD:BJL,BJRaster3,BSCCe,IVEC,IVECPLI;MDL:MP250 series;DES:Canon MP250 series;" driver="bjc-MULTIPASS-MP250" manufacturer="Canon" model="5000250" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP250" />
|
||||||
|
<printer translate="name" name="Canon PIXMA MP260" driver="bjc-MULTIPASS-MP260" manufacturer="Canon" model="5000240" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP260" />
|
||||||
<printer translate="name" name="Canon PIXMA MP270" driver="bjc-MULTIPASS-MP270" manufacturer="Canon" model="5000270" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP270" />
|
<printer translate="name" name="Canon PIXMA MP270" driver="bjc-MULTIPASS-MP270" manufacturer="Canon" model="5000270" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP270" />
|
||||||
<printer translate="name" name="Canon PIXMA MP280" driver="bjc-MULTIPASS-MP280" manufacturer="Canon" model="5000280" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP280" />
|
<printer translate="name" name="Canon PIXMA MP280" driver="bjc-MULTIPASS-MP280" manufacturer="Canon" model="5000280" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP280" />
|
||||||
<printer translate="name" name="Canon PIXMA MP360" driver="bjc-MULTIPASS-MP360" manufacturer="Canon" model="5000150" parameters="PIXMA_iP4000_params" foomaticid="Canon-MULTIPASS-MP360" />
|
@@ -407,6 +407,7 @@
|
||||||
@@ -313,6 +313,7 @@
|
|
||||||
<printer translate="name" name="Epson Stylus C86" deviceid="MFG:EPSON;MDL:Stylus C86;DES:EPSON Stylus C86;CMD:ESCPL2,BDC,D4;" driver="escp2-c86" manufacturer="Epson" model="69" parameters="standard_params" foomaticid="Epson-Stylus_C86" />
|
<printer translate="name" name="Epson Stylus C86" deviceid="MFG:EPSON;MDL:Stylus C86;DES:EPSON Stylus C86;CMD:ESCPL2,BDC,D4;" driver="escp2-c86" manufacturer="Epson" model="69" parameters="standard_params" foomaticid="Epson-Stylus_C86" />
|
||||||
<printer translate="name" name="Epson Stylus C87" driver="escp2-c87" manufacturer="Epson" model="69" parameters="standard_params" foomaticid="Epson-Stylus_C87" />
|
<printer translate="name" name="Epson Stylus C87" driver="escp2-c87" manufacturer="Epson" model="69" parameters="standard_params" foomaticid="Epson-Stylus_C87" />
|
||||||
<printer translate="name" name="Epson Stylus C88" deviceid="MFG:EPSON;MDL:Stylus C88;DES:EPSON Stylus C88;CMD:ESCPL2,BDC,D4;" driver="escp2-c88" manufacturer="Epson" model="69" parameters="standard_params" foomaticid="Epson-Stylus_C88" />
|
<printer translate="name" name="Epson Stylus C88" deviceid="MFG:EPSON;MDL:Stylus C88;DES:EPSON Stylus C88;CMD:ESCPL2,BDC,D4;" driver="escp2-c88" manufacturer="Epson" model="69" parameters="standard_params" foomaticid="Epson-Stylus_C88" />
|
||||||
@ -40,7 +47,7 @@ diff -up gutenprint-5.2.7/src/xml/printers.xml.device-ids gutenprint-5.2.7/src/x
|
|||||||
<printer translate="name" name="Epson Stylus C110" driver="escp2-c110" manufacturer="Epson" model="85" parameters="standard_params" foomaticid="Epson-Stylus_C110" />
|
<printer translate="name" name="Epson Stylus C110" driver="escp2-c110" manufacturer="Epson" model="85" parameters="standard_params" foomaticid="Epson-Stylus_C110" />
|
||||||
<printer translate="name" name="Epson Stylus C120" driver="escp2-c120" manufacturer="Epson" model="85" parameters="standard_params" foomaticid="Epson-Stylus_C120" />
|
<printer translate="name" name="Epson Stylus C120" driver="escp2-c120" manufacturer="Epson" model="85" parameters="standard_params" foomaticid="Epson-Stylus_C120" />
|
||||||
<printer translate="name" name="Epson Stylus Color" driver="escp2" manufacturer="Epson" model="0" parameters="standard_params" foomaticid="Epson-Stylus_Color" />
|
<printer translate="name" name="Epson Stylus Color" driver="escp2" manufacturer="Epson" model="0" parameters="standard_params" foomaticid="Epson-Stylus_Color" />
|
||||||
@@ -331,7 +332,7 @@
|
@@ -425,7 +426,7 @@
|
||||||
<printer translate="name" name="Epson Stylus Color 640" driver="escp2-640" manufacturer="Epson" model="11" parameters="standard_params" foomaticid="Epson-Stylus_Color_640" />
|
<printer translate="name" name="Epson Stylus Color 640" driver="escp2-640" manufacturer="Epson" model="11" parameters="standard_params" foomaticid="Epson-Stylus_Color_640" />
|
||||||
<printer translate="name" name="Epson Stylus Color 660" driver="escp2-660" manufacturer="Epson" model="18" parameters="standard_params" foomaticid="Epson-Stylus_Color_660" />
|
<printer translate="name" name="Epson Stylus Color 660" driver="escp2-660" manufacturer="Epson" model="18" parameters="standard_params" foomaticid="Epson-Stylus_Color_660" />
|
||||||
<printer translate="name" name="Epson Stylus Color 670" deviceid="MFG:EPSON;MDL:Stylus COLOR 670;DES:EPSON Stylus COLOR 670;CMD:ESCPL2,BDC,D4;" driver="escp2-670" manufacturer="Epson" model="25" parameters="standard_params" foomaticid="Epson-Stylus_Color_670" />
|
<printer translate="name" name="Epson Stylus Color 670" deviceid="MFG:EPSON;MDL:Stylus COLOR 670;DES:EPSON Stylus COLOR 670;CMD:ESCPL2,BDC,D4;" driver="escp2-670" manufacturer="Epson" model="25" parameters="standard_params" foomaticid="Epson-Stylus_Color_670" />
|
||||||
@ -49,7 +56,7 @@ diff -up gutenprint-5.2.7/src/xml/printers.xml.device-ids gutenprint-5.2.7/src/x
|
|||||||
<printer translate="name" name="Epson Stylus Color 740" deviceid="MFG:EPSON;MDL:Stylus COLOR 740;DES:EPSON Stylus COLOR 740;CMD:ESCPL2,BDC,D4;" driver="escp2-740" manufacturer="Epson" model="12" parameters="standard_params" foomaticid="Epson-Stylus_Color_740" />
|
<printer translate="name" name="Epson Stylus Color 740" deviceid="MFG:EPSON;MDL:Stylus COLOR 740;DES:EPSON Stylus COLOR 740;CMD:ESCPL2,BDC,D4;" driver="escp2-740" manufacturer="Epson" model="12" parameters="standard_params" foomaticid="Epson-Stylus_Color_740" />
|
||||||
<printer translate="name" name="Epson Stylus Color 760" deviceid="MFG:EPSON;MDL:Stylus COLOR 760;DES:EPSON Stylus COLOR 760;CMD:ESCPL2,BDC,D4;" driver="escp2-760" manufacturer="Epson" model="19" parameters="standard_params" foomaticid="Epson-Stylus_Color_760" />
|
<printer translate="name" name="Epson Stylus Color 760" deviceid="MFG:EPSON;MDL:Stylus COLOR 760;DES:EPSON Stylus COLOR 760;CMD:ESCPL2,BDC,D4;" driver="escp2-760" manufacturer="Epson" model="19" parameters="standard_params" foomaticid="Epson-Stylus_Color_760" />
|
||||||
<printer translate="name" name="Epson Stylus Color 777" deviceid="MFG:EPSON;MDL:Stylus COLOR 777;DES:EPSON Stylus COLOR 777;CMD:ESCPL2,BDC,D4;" driver="escp2-777" manufacturer="Epson" model="32" parameters="standard_params" foomaticid="Epson-Stylus_Color_777" />
|
<printer translate="name" name="Epson Stylus Color 777" deviceid="MFG:EPSON;MDL:Stylus COLOR 777;DES:EPSON Stylus COLOR 777;CMD:ESCPL2,BDC,D4;" driver="escp2-777" manufacturer="Epson" model="32" parameters="standard_params" foomaticid="Epson-Stylus_Color_777" />
|
||||||
@@ -389,7 +390,7 @@
|
@@ -487,7 +488,7 @@
|
||||||
<printer translate="name" name="Epson Stylus Photo 950" driver="escp2-950" manufacturer="Epson" model="46" parameters="standard_params" foomaticid="Epson-Stylus_Photo_950" />
|
<printer translate="name" name="Epson Stylus Photo 950" driver="escp2-950" manufacturer="Epson" model="46" parameters="standard_params" foomaticid="Epson-Stylus_Photo_950" />
|
||||||
<printer translate="name" name="Epson Stylus Photo 960" driver="escp2-960" manufacturer="Epson" model="46" parameters="standard_params" foomaticid="Epson-Stylus_Photo_960" />
|
<printer translate="name" name="Epson Stylus Photo 960" driver="escp2-960" manufacturer="Epson" model="46" parameters="standard_params" foomaticid="Epson-Stylus_Photo_960" />
|
||||||
<printer translate="name" name="Epson Stylus Photo 1200" driver="escp2-1200" manufacturer="Epson" model="15" parameters="standard_params" foomaticid="Epson-Stylus_Photo_1200" />
|
<printer translate="name" name="Epson Stylus Photo 1200" driver="escp2-1200" manufacturer="Epson" model="15" parameters="standard_params" foomaticid="Epson-Stylus_Photo_1200" />
|
||||||
@ -58,16 +65,16 @@ diff -up gutenprint-5.2.7/src/xml/printers.xml.device-ids gutenprint-5.2.7/src/x
|
|||||||
<printer translate="name" name="Epson Stylus Photo 1280" driver="escp2-1280" manufacturer="Epson" model="37" parameters="standard_params" foomaticid="Epson-Stylus_Photo_1280" />
|
<printer translate="name" name="Epson Stylus Photo 1280" driver="escp2-1280" manufacturer="Epson" model="37" parameters="standard_params" foomaticid="Epson-Stylus_Photo_1280" />
|
||||||
<printer translate="name" name="Epson Stylus Photo 1290" driver="escp2-1290" manufacturer="Epson" model="37" parameters="standard_params" foomaticid="Epson-Stylus_Photo_1290" />
|
<printer translate="name" name="Epson Stylus Photo 1290" driver="escp2-1290" manufacturer="Epson" model="37" parameters="standard_params" foomaticid="Epson-Stylus_Photo_1290" />
|
||||||
<printer translate="name" name="Epson Stylus Photo 1290s" driver="escp2-1290s" manufacturer="Epson" model="37" parameters="standard_params" foomaticid="Epson-Stylus_Photo_1290s" />
|
<printer translate="name" name="Epson Stylus Photo 1290s" driver="escp2-1290s" manufacturer="Epson" model="37" parameters="standard_params" foomaticid="Epson-Stylus_Photo_1290s" />
|
||||||
@@ -422,7 +423,7 @@
|
@@ -521,7 +522,7 @@
|
||||||
<printer translate="name" name="Epson Stylus Photo R800" driver="escp2-r800" manufacturer="Epson" model="64" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R800" />
|
|
||||||
<printer translate="name" name="Epson Stylus Photo R1800" driver="escp2-r1800" manufacturer="Epson" model="67" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R1800" />
|
<printer translate="name" name="Epson Stylus Photo R1800" driver="escp2-r1800" manufacturer="Epson" model="67" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R1800" />
|
||||||
<printer translate="name" name="Epson Stylus Photo R1900" driver="escp2-r1900" manufacturer="Epson" model="91" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R1900" />
|
<printer translate="name" name="Epson Stylus Photo R1900" driver="escp2-r1900" manufacturer="Epson" model="91" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R1900" />
|
||||||
|
<printer translate="name" name="Epson Stylus Photo R2000" driver="escp2-r2000" manufacturer="Epson" model="91" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R2000" />
|
||||||
- <printer translate="name" name="Epson Stylus Photo R2400" driver="escp2-r2400" manufacturer="Epson" model="71" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R2400" />
|
- <printer translate="name" name="Epson Stylus Photo R2400" driver="escp2-r2400" manufacturer="Epson" model="71" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R2400" />
|
||||||
+ <printer translate="name" name="Epson Stylus Photo R2400" deviceid="MFG:EPSON;MDL:Stylus Photo R2400;DES:EPSON Stylus Photo R2400;CMD:ESCPL2,BDC,D4;" driver="escp2-r2400" manufacturer="Epson" model="71" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R2400" />
|
+ <printer translate="name" name="Epson Stylus Photo R2400" deviceid="MFG:EPSON;MDL:Stylus Photo R2400;DES:EPSON Stylus Photo R2400;CMD:ESCPL2,BDC,D4;" driver="escp2-r2400" manufacturer="Epson" model="71" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R2400" />
|
||||||
<printer translate="name" name="Epson Stylus Photo R2880" driver="escp2-r2880" manufacturer="Epson" model="98" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R2880" />
|
<printer translate="name" name="Epson Stylus Photo R2880" driver="escp2-r2880" manufacturer="Epson" model="98" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R2880" />
|
||||||
<printer translate="name" name="Epson Stylus Photo R3000" driver="escp2-r3000" manufacturer="Epson" model="115" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R3000" />
|
<printer translate="name" name="Epson Stylus Photo R3000" driver="escp2-r3000" manufacturer="Epson" model="115" parameters="standard_params" foomaticid="Epson-Stylus_Photo_R3000" />
|
||||||
<printer translate="name" name="Epson Stylus Photo RX400" deviceid="MFG:EPSON;MDL:Stylus Photo RX400;DES:EPSON Stylus Photo RX400;CMD:ESCPL2,BDC,D4;" driver="escp2-rx400" manufacturer="Epson" model="84" parameters="standard_params" foomaticid="Epson-Stylus_Photo_RX400" />
|
<printer translate="name" name="Epson Stylus Photo RX400" deviceid="MFG:EPSON;MDL:Stylus Photo RX400;DES:EPSON Stylus Photo RX400;CMD:ESCPL2,BDC,D4;" driver="escp2-rx400" manufacturer="Epson" model="84" parameters="standard_params" foomaticid="Epson-Stylus_Photo_RX400" />
|
||||||
@@ -522,6 +523,7 @@
|
@@ -625,6 +626,7 @@
|
||||||
<printer translate="name" name="Epson Stylus CX9400F" driver="escp2-cx9400f" manufacturer="Epson" model="65" parameters="cx3500_params" foomaticid="Epson-Stylus_CX9400F" />
|
<printer translate="name" name="Epson Stylus CX9400F" driver="escp2-cx9400f" manufacturer="Epson" model="65" parameters="cx3500_params" foomaticid="Epson-Stylus_CX9400F" />
|
||||||
<printer translate="name" name="Epson Stylus CX9475F" driver="escp2-cx9475f" manufacturer="Epson" model="65" parameters="cx3500_params" foomaticid="Epson-Stylus_CX9475F" />
|
<printer translate="name" name="Epson Stylus CX9475F" driver="escp2-cx9475f" manufacturer="Epson" model="65" parameters="cx3500_params" foomaticid="Epson-Stylus_CX9475F" />
|
||||||
<printer translate="name" name="Epson Stylus D68" deviceid="MFG:EPSON;MDL:Stylus D68;DES:EPSON Stylus D68;CMD:ESCPL2,BDC,D4;" driver="escp2-d68" manufacturer="Epson" model="66" parameters="standard_params" foomaticid="Epson-Stylus_D68" />
|
<printer translate="name" name="Epson Stylus D68" deviceid="MFG:EPSON;MDL:Stylus D68;DES:EPSON Stylus D68;CMD:ESCPL2,BDC,D4;" driver="escp2-d68" manufacturer="Epson" model="66" parameters="standard_params" foomaticid="Epson-Stylus_D68" />
|
||||||
@ -75,7 +82,7 @@ diff -up gutenprint-5.2.7/src/xml/printers.xml.device-ids gutenprint-5.2.7/src/x
|
|||||||
<printer translate="name" name="Epson Stylus D88" deviceid="MFG:EPSON;MDL:Stylus D88;DES:EPSON Stylus D88;CMD:ESCPL2,BDC,D4;" driver="escp2-d88" manufacturer="Epson" model="69" parameters="standard_params" foomaticid="Epson-Stylus_D88" />
|
<printer translate="name" name="Epson Stylus D88" deviceid="MFG:EPSON;MDL:Stylus D88;DES:EPSON Stylus D88;CMD:ESCPL2,BDC,D4;" driver="escp2-d88" manufacturer="Epson" model="69" parameters="standard_params" foomaticid="Epson-Stylus_D88" />
|
||||||
<printer translate="name" name="Epson Stylus D92" deviceid="MFG:EPSON;CMD:ESCPL2,BDC,D4,D4PX;MDL:Stylus D92;DES:EPSON Stylus D92;" driver="escp2-d92" manufacturer="Epson" model="66" parameters="standard_params" foomaticid="Epson-Stylus_D92" />
|
<printer translate="name" name="Epson Stylus D92" deviceid="MFG:EPSON;CMD:ESCPL2,BDC,D4,D4PX;MDL:Stylus D92;DES:EPSON Stylus D92;" driver="escp2-d92" manufacturer="Epson" model="66" parameters="standard_params" foomaticid="Epson-Stylus_D92" />
|
||||||
<printer translate="name" name="Epson Stylus D120" driver="escp2-d120" manufacturer="Epson" model="85" parameters="standard_params" foomaticid="Epson-Stylus_D120" />
|
<printer translate="name" name="Epson Stylus D120" driver="escp2-d120" manufacturer="Epson" model="85" parameters="standard_params" foomaticid="Epson-Stylus_D120" />
|
||||||
@@ -785,7 +787,7 @@
|
@@ -903,7 +905,7 @@
|
||||||
<printer translate="name" name="Brother HL-1850" driver="brother-hl-1850" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-1850" />
|
<printer translate="name" name="Brother HL-1850" driver="brother-hl-1850" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-1850" />
|
||||||
<printer translate="name" name="Brother HL-1870N" driver="brother-hl-1870n" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-1870N" />
|
<printer translate="name" name="Brother HL-1870N" driver="brother-hl-1870n" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-1870N" />
|
||||||
<printer translate="name" name="Brother HL-2030" driver="brother-hl-2030" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-2030" />
|
<printer translate="name" name="Brother HL-2030" driver="brother-hl-2030" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-2030" />
|
||||||
@ -84,7 +91,7 @@ diff -up gutenprint-5.2.7/src/xml/printers.xml.device-ids gutenprint-5.2.7/src/x
|
|||||||
<printer translate="name" name="Brother HL-2060" driver="brother-hl-2060" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-2060" />
|
<printer translate="name" name="Brother HL-2060" driver="brother-hl-2060" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-2060" />
|
||||||
<printer translate="name" name="Brother HL-2460" deviceid="MFG:Brother;MDL:Brother HL-2460 series;" driver="brother-hl-2460" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-2460" />
|
<printer translate="name" name="Brother HL-2460" deviceid="MFG:Brother;MDL:Brother HL-2460 series;" driver="brother-hl-2460" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-2460" />
|
||||||
<printer translate="name" name="Brother HL-2460N" driver="brother-hl-2460n" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-2460N" />
|
<printer translate="name" name="Brother HL-2460N" driver="brother-hl-2460n" manufacturer="Brother" model="6" parameters="pcl_laser_params" foomaticid="Brother-HL-2460N" />
|
||||||
@@ -918,9 +920,9 @@
|
@@ -1036,9 +1038,9 @@
|
||||||
<printer translate="name" name="HP Business Inkjet 2280" deviceid="MFG:HEWLETT-PACKARD;MDL:HP BUSINESS INKJET 2280;DES:Hewlett-Packard Business Inkjet 2280;CMD:MLC,PML,PJL,PCL5,POSTSCRIPT;" driver="hp-bij_2280" manufacturer="HP" model="900" parameters="pcl_inkjet_params" foomaticid="HP-Business_Inkjet_2280" />
|
<printer translate="name" name="HP Business Inkjet 2280" deviceid="MFG:HEWLETT-PACKARD;MDL:HP BUSINESS INKJET 2280;DES:Hewlett-Packard Business Inkjet 2280;CMD:MLC,PML,PJL,PCL5,POSTSCRIPT;" driver="hp-bij_2280" manufacturer="HP" model="900" parameters="pcl_inkjet_params" foomaticid="HP-Business_Inkjet_2280" />
|
||||||
<printer translate="name" name="HP Color Inkjet Printer CP1160" driver="hp-cij_cp1160" manufacturer="HP" model="900" parameters="pcl_inkjet_params" foomaticid="HP-Color_Inkjet_Printer_CP1160" />
|
<printer translate="name" name="HP Color Inkjet Printer CP1160" driver="hp-cij_cp1160" manufacturer="HP" model="900" parameters="pcl_inkjet_params" foomaticid="HP-Color_Inkjet_Printer_CP1160" />
|
||||||
<printer translate="name" name="HP Color Inkjet Printer CP1700" deviceid="MFG:HEWLETT-PACKARD;MDL:HP Color Inkjet CP1700;DES:HP Color Inkjet CP1700;" driver="hp-cij_cp1700" manufacturer="HP" model="901" parameters="pcl_inkjet_params" foomaticid="HP-Color_Inkjet_Printer_CP1700" />
|
<printer translate="name" name="HP Color Inkjet Printer CP1700" deviceid="MFG:HEWLETT-PACKARD;MDL:HP Color Inkjet CP1700;DES:HP Color Inkjet CP1700;" driver="hp-cij_cp1700" manufacturer="HP" model="901" parameters="pcl_inkjet_params" foomaticid="HP-Color_Inkjet_Printer_CP1700" />
|
||||||
@ -96,7 +103,7 @@ diff -up gutenprint-5.2.7/src/xml/printers.xml.device-ids gutenprint-5.2.7/src/x
|
|||||||
<printer translate="name" name="HP Color LaserJet 4600" deviceid="MFG:Hewlett-Packard;MDL:hp color LaserJet 4600;DES:Hewlett-Packard color LaserJet 4600;" driver="hp-clj_4600" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-Color_LaserJet_4600" />
|
<printer translate="name" name="HP Color LaserJet 4600" deviceid="MFG:Hewlett-Packard;MDL:hp color LaserJet 4600;DES:Hewlett-Packard color LaserJet 4600;" driver="hp-clj_4600" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-Color_LaserJet_4600" />
|
||||||
<printer translate="name" name="HP Color LaserJet 5" driver="hp-clj_5" manufacturer="HP" model="3" parameters="pcl_laser_params" foomaticid="HP-Color_LaserJet_5" />
|
<printer translate="name" name="HP Color LaserJet 5" driver="hp-clj_5" manufacturer="HP" model="3" parameters="pcl_laser_params" foomaticid="HP-Color_LaserJet_5" />
|
||||||
<printer translate="name" name="HP Color LaserJet 5000" driver="hp-clj_5000" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-Color_LaserJet_5000" />
|
<printer translate="name" name="HP Color LaserJet 5000" driver="hp-clj_5000" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-Color_LaserJet_5000" />
|
||||||
@@ -1090,19 +1092,19 @@
|
@@ -1208,19 +1210,19 @@
|
||||||
<printer translate="name" name="HP LaserJet 3390" deviceid="MFG:Hewlett-Packard;MDL:HP LaserJet 3390;DES:Hewlett-Packard LaserJet 3390;CMD:PJL,MLC,PCL,POSTSCRIPT,PCLXL;" driver="hp-lj_3390" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_3390" />
|
<printer translate="name" name="HP LaserJet 3390" deviceid="MFG:Hewlett-Packard;MDL:HP LaserJet 3390;DES:Hewlett-Packard LaserJet 3390;CMD:PJL,MLC,PCL,POSTSCRIPT,PCLXL;" driver="hp-lj_3390" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_3390" />
|
||||||
<printer translate="name" name="HP LaserJet 3392" deviceid="MFG:Hewlett-Packard;MDL:HP LaserJet 3390;DES:Hewlett-Packard LaserJet 3390;CMD:PJL,MLC,PCL,POSTSCRIPT,PCLXL;" driver="hp-lj_3392" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_3392" />
|
<printer translate="name" name="HP LaserJet 3392" deviceid="MFG:Hewlett-Packard;MDL:HP LaserJet 3390;DES:Hewlett-Packard LaserJet 3390;CMD:PJL,MLC,PCL,POSTSCRIPT,PCLXL;" driver="hp-lj_3392" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_3392" />
|
||||||
<printer translate="name" name="HP LaserJet 4000" deviceid="MFG:Hewlett-Packard;MDL:HP LaserJet 4000 Series;DES:Hewlett-Packard LaserJet 4000 Series;CMD:PJL,MLC,PCL,PCLXL,POSTSCRIPT;" driver="hp-lj_4000" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_4000" />
|
<printer translate="name" name="HP LaserJet 4000" deviceid="MFG:Hewlett-Packard;MDL:HP LaserJet 4000 Series;DES:Hewlett-Packard LaserJet 4000 Series;CMD:PJL,MLC,PCL,PCLXL,POSTSCRIPT;" driver="hp-lj_4000" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_4000" />
|
||||||
@ -121,7 +128,7 @@ diff -up gutenprint-5.2.7/src/xml/printers.xml.device-ids gutenprint-5.2.7/src/x
|
|||||||
<printer translate="name" name="HP LaserJet 8100" driver="hp-lj_8100" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_8100" />
|
<printer translate="name" name="HP LaserJet 8100" driver="hp-lj_8100" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_8100" />
|
||||||
<printer translate="name" name="HP LaserJet 8150" deviceid="MFG:Hewlett-Packard;MDL:HP LaserJet 8150 Series;DES:Hewlett-Packard LaserJet 8150 Series;CMD:PJL,MLC,PCL,PCLXL,POSTSCRIPT;" driver="hp-lj_8150" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_8150" />
|
<printer translate="name" name="HP LaserJet 8150" deviceid="MFG:Hewlett-Packard;MDL:HP LaserJet 8150 Series;DES:Hewlett-Packard LaserJet 8150 Series;CMD:PJL,MLC,PCL,PCLXL,POSTSCRIPT;" driver="hp-lj_8150" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_8150" />
|
||||||
<printer translate="name" name="HP LaserJet 9000" driver="hp-lj_9000" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_9000" />
|
<printer translate="name" name="HP LaserJet 9000" driver="hp-lj_9000" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_9000" />
|
||||||
@@ -1110,15 +1112,15 @@
|
@@ -1228,15 +1230,15 @@
|
||||||
<printer translate="name" name="HP LaserJet 9040 MFP" driver="hp-lj_9040_mfp" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_9040_MFP" />
|
<printer translate="name" name="HP LaserJet 9040 MFP" driver="hp-lj_9040_mfp" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_9040_MFP" />
|
||||||
<printer translate="name" name="HP LaserJet 9050" driver="hp-lj_9050" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_9050" />
|
<printer translate="name" name="HP LaserJet 9050" driver="hp-lj_9050" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_9050" />
|
||||||
<printer translate="name" name="HP LaserJet 9050 MFP" driver="hp-lj_9050_mfp" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_9050_MFP" />
|
<printer translate="name" name="HP LaserJet 9050 MFP" driver="hp-lj_9050_mfp" manufacturer="HP" model="6" parameters="pcl_laser_params" foomaticid="HP-LaserJet_9050_MFP" />
|
||||||
|
@ -1,32 +0,0 @@
|
|||||||
diff -up gutenprint-5.2.7/src/escputil/escputil.c.null-pointer gutenprint-5.2.7/src/escputil/escputil.c
|
|
||||||
--- gutenprint-5.2.7/src/escputil/escputil.c.null-pointer 2010-12-11 23:04:07.000000000 +0100
|
|
||||||
+++ gutenprint-5.2.7/src/escputil/escputil.c 2011-07-25 17:52:56.999202508 +0200
|
|
||||||
@@ -1340,10 +1340,14 @@ do_new_status(status_cmd_t cmd, char *bu
|
|
||||||
const char *ind;
|
|
||||||
const stp_string_list_t *color_list = NULL;
|
|
||||||
stp_parameter_t desc;
|
|
||||||
- const stp_vars_t *printvars = stp_printer_get_defaults(printer);
|
|
||||||
- stp_describe_parameter(printvars, "ChannelNames", &desc);
|
|
||||||
- if (desc.p_type == STP_PARAMETER_TYPE_STRING_LIST)
|
|
||||||
- color_list = desc.bounds.str;
|
|
||||||
+ const stp_vars_t *printvars = NULL;
|
|
||||||
+ if (printer)
|
|
||||||
+ {
|
|
||||||
+ printvars = stp_printer_get_defaults(printer);
|
|
||||||
+ stp_describe_parameter(printvars, "ChannelNames", &desc);
|
|
||||||
+ if (desc.p_type == STP_PARAMETER_TYPE_STRING_LIST)
|
|
||||||
+ color_list = desc.bounds.str;
|
|
||||||
+ }
|
|
||||||
STP_DEBUG(printf("New format bytes: %d bytes\n", bytes));
|
|
||||||
if (cmd == CMD_STATUS)
|
|
||||||
printf(_("Printer Name: %s\n"),
|
|
||||||
@@ -1428,7 +1432,8 @@ do_new_status(status_cmd_t cmd, char *bu
|
|
||||||
}
|
|
||||||
i += total_param_count + 2;
|
|
||||||
}
|
|
||||||
- stp_parameter_description_destroy(&desc);
|
|
||||||
+ if (printer)
|
|
||||||
+ stp_parameter_description_destroy(&desc);
|
|
||||||
exit(0);
|
|
||||||
}
|
|
||||||
|
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
Name: gutenprint
|
Name: gutenprint
|
||||||
Summary: Printer Drivers Package
|
Summary: Printer Drivers Package
|
||||||
Version: 5.2.7
|
Version: 5.2.8
|
||||||
Release: 11%{?dist}
|
Release: 2%{?dist}
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
URL: http://gimp-print.sourceforge.net/
|
URL: http://gimp-print.sourceforge.net/
|
||||||
Source0: http://dl.sf.net/gimp-print/gutenprint-5.2/%{version}/gutenprint-%{version}.tar.bz2
|
Source0: http://downloads.sourceforge.net/sourceforge/gimp-print/gutenprint-%{version}.tar.bz2
|
||||||
# Post-install script to update foomatic PPDs.
|
# Post-install script to update foomatic PPDs.
|
||||||
Source1: gutenprint-foomaticppdupdate
|
Source1: gutenprint-foomaticppdupdate
|
||||||
# Post-install script to update CUPS native PPDs.
|
# Post-install script to update CUPS native PPDs.
|
||||||
@ -16,24 +16,28 @@ Patch1: gutenprint-O6.patch
|
|||||||
Patch2: gutenprint-selinux.patch
|
Patch2: gutenprint-selinux.patch
|
||||||
Patch3: gutenprint-postscriptdriver.patch
|
Patch3: gutenprint-postscriptdriver.patch
|
||||||
Patch4: gutenprint-device-ids.patch
|
Patch4: gutenprint-device-ids.patch
|
||||||
Patch5: gutenprint-null-pointer.patch
|
Patch5: gutenprint-5.2.8-soname.patch
|
||||||
Patch6: gutenprint-build.patch
|
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
||||||
BuildRequires: cups-libs >= 1.1.22-0.rc1.9.10, cups >= 1.1.22-0.rc1.9.10
|
BuildRequires: cups-libs >= 1.1.22-0.rc1.9.10, cups >= 1.1.22-0.rc1.9.10
|
||||||
BuildRequires: gettext-devel,cups-devel,pkgconfig,gimp-devel
|
BuildRequires: gettext-devel,cups-devel,pkgconfig,gimp-devel
|
||||||
BuildRequires: libtiff-devel,libjpeg-devel,libpng-devel
|
BuildRequires: libtiff-devel,libjpeg-devel,libpng-devel
|
||||||
BuildRequires: foomatic,gtk2-devel
|
BuildRequires: foomatic,gtk2-devel
|
||||||
%if %{build_with_ijs_support}
|
%if %{build_with_ijs_support}
|
||||||
BuildRequires: ghostscript-devel
|
BuildRequires: ghostscript-devel
|
||||||
%endif
|
%endif
|
||||||
BuildRequires: gimp
|
BuildRequires: gimp
|
||||||
BuildRequires: chrpath
|
BuildRequires: chrpath
|
||||||
Obsoletes: gimp-print-utils <= 4.2.7-25
|
Obsoletes: gimp-print-utils < 4.2.7-25
|
||||||
Provides: gimp-print-utils = 4.2.7-25
|
Provides: gimp-print-utils = 4.2.7-25
|
||||||
|
|
||||||
# Make sure we get postscriptdriver tags.
|
# Make sure we get postscriptdriver tags.
|
||||||
BuildRequires: python-cups, cups
|
BuildRequires: python-cups, cups
|
||||||
|
|
||||||
|
# Due to gutenprint-5.2.8-soname.patch
|
||||||
|
BuildRequires: autoconf
|
||||||
|
BuildRequires: automake
|
||||||
|
BuildRequires: libtool
|
||||||
|
|
||||||
## NOTE ##
|
## NOTE ##
|
||||||
# The README file in this package contains suggestions from upstream
|
# The README file in this package contains suggestions from upstream
|
||||||
@ -57,8 +61,8 @@ Summary: Library development files for gutenprint
|
|||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: gtk2-devel
|
Requires: gtk2-devel
|
||||||
Obsoletes: gimp-print-devel <= 4.2.7-25
|
Obsoletes: gimp-print-devel < 4.2.7-25
|
||||||
Provides: gimp-print-devel = 4.2.7-25
|
Provides: gimp-print-devel = 4.2.7-25
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains headers and libraries required to build applications that
|
This package contains headers and libraries required to build applications that
|
||||||
@ -69,8 +73,8 @@ Summary: GIMP plug-in for gutenprint
|
|||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: gimp
|
Requires: gimp
|
||||||
Obsoletes: gimp-print-plugin <= 4.2.7-25
|
Obsoletes: gimp-print-plugin < 4.2.7-25
|
||||||
Provides: gimp-print-plugin = 4.2.7-25
|
Provides: gimp-print-plugin = 4.2.7-25
|
||||||
|
|
||||||
%description plugin
|
%description plugin
|
||||||
This package contains the gutenprint GIMP plug-in.
|
This package contains the gutenprint GIMP plug-in.
|
||||||
@ -80,10 +84,11 @@ Summary: Foomatic printer database information for gutenprint
|
|||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires(post): foomatic
|
Requires(post): foomatic
|
||||||
Requires(post): system-config-printer-libs
|
# python-cups is required for the update script (bug #246865)
|
||||||
|
Requires(post): python-cups
|
||||||
Requires: foomatic-db
|
Requires: foomatic-db
|
||||||
Obsoletes: gimp-print <= 4.2.7-25
|
Obsoletes: gimp-print < 4.2.7-25
|
||||||
Provides: gimp-print = 4.2.7-25
|
Provides: gimp-print = 4.2.7-25
|
||||||
|
|
||||||
%description foomatic
|
%description foomatic
|
||||||
This package contains a database of printers,printer drivers,
|
This package contains a database of printers,printer drivers,
|
||||||
@ -171,15 +176,17 @@ Epson, HP and compatible printers.
|
|||||||
# HP Color LaserJet 2500/4550 (bug #659044).
|
# HP Color LaserJet 2500/4550 (bug #659044).
|
||||||
# Brother hl-2035 (bug #651603#c3)
|
# Brother hl-2035 (bug #651603#c3)
|
||||||
# Canon PIXMA MP250 (bug #744087).
|
# Canon PIXMA MP250 (bug #744087).
|
||||||
|
# Canon PIXMA Pro9000mk2.
|
||||||
%patch4 -p1 -b .device-ids
|
%patch4 -p1 -b .device-ids
|
||||||
# Avoid null pointer access in escputil (bug #659120).
|
|
||||||
%patch5 -p1 -b .null-pointer
|
|
||||||
# Fix build against new versions of gcc.
|
# Fix build against new versions of gcc.
|
||||||
%patch6 -p1 -b .build
|
|
||||||
|
# Avoid the libgutenprint soname bump so we can update gutenprint in F16 & 17.
|
||||||
|
%patch5 -p1 -b .soname
|
||||||
|
|
||||||
cp %{SOURCE2} src/cups/cups-genppdupdate.in
|
cp %{SOURCE2} src/cups/cups-genppdupdate.in
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
./autogen.sh
|
||||||
%configure --disable-static --disable-dependency-tracking \
|
%configure --disable-static --disable-dependency-tracking \
|
||||||
--with-foomatic --with-ghostscript \
|
--with-foomatic --with-ghostscript \
|
||||||
--enable-samples --enable-escputil \
|
--enable-samples --enable-escputil \
|
||||||
@ -191,7 +198,6 @@ cp %{SOURCE2} src/cups/cups-genppdupdate.in
|
|||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf %{buildroot}
|
|
||||||
make DESTDIR=%{buildroot} install
|
make DESTDIR=%{buildroot} install
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_sbindir}
|
mkdir -p %{buildroot}%{_sbindir}
|
||||||
@ -223,9 +229,6 @@ do
|
|||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf %{buildroot}
|
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
@ -237,7 +240,6 @@ exit 0
|
|||||||
|
|
||||||
|
|
||||||
%files -f %{name}.lang
|
%files -f %{name}.lang
|
||||||
%defattr(-, root, root,-)
|
|
||||||
%doc COPYING
|
%doc COPYING
|
||||||
%{_bindir}/escputil
|
%{_bindir}/escputil
|
||||||
%{_mandir}/man1/escputil.1*
|
%{_mandir}/man1/escputil.1*
|
||||||
@ -257,7 +259,6 @@ exit 0
|
|||||||
%doc COPYING AUTHORS NEWS README doc/FAQ.html doc/gutenprint-users-manual.odt doc/gutenprint-users-manual.pdf
|
%doc COPYING AUTHORS NEWS README doc/FAQ.html doc/gutenprint-users-manual.odt doc/gutenprint-users-manual.pdf
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%doc ChangeLog doc/developer/reference-html doc/developer/gutenprint.pdf
|
%doc ChangeLog doc/developer/reference-html doc/developer/gutenprint.pdf
|
||||||
%doc doc/gutenprint doc/gutenprintui2
|
%doc doc/gutenprint doc/gutenprintui2
|
||||||
%{_includedir}/gutenprint/
|
%{_includedir}/gutenprint/
|
||||||
@ -268,24 +269,20 @@ exit 0
|
|||||||
%exclude %{_libdir}/*.la
|
%exclude %{_libdir}/*.la
|
||||||
|
|
||||||
%files plugin
|
%files plugin
|
||||||
%defattr(-, root, root,-)
|
|
||||||
%{_libdir}/gimp/*/plug-ins/gutenprint
|
%{_libdir}/gimp/*/plug-ins/gutenprint
|
||||||
|
|
||||||
%files foomatic
|
%files foomatic
|
||||||
%defattr(-, root, root,-)
|
|
||||||
%doc
|
%doc
|
||||||
%{_sbindir}/gutenprint-foomaticppdupdate
|
%{_sbindir}/gutenprint-foomaticppdupdate
|
||||||
%{_datadir}/foomatic/db/source/driver/*
|
%{_datadir}/foomatic/db/source/driver/*
|
||||||
%{_datadir}/foomatic/db/source/opt/*
|
%{_datadir}/foomatic/db/source/opt/*
|
||||||
|
|
||||||
%files extras
|
%files extras
|
||||||
%defattr(-, root, root,-)
|
|
||||||
%doc
|
%doc
|
||||||
%{_bindir}/testpattern
|
%{_bindir}/testpattern
|
||||||
%{_datadir}/gutenprint/samples/*
|
%{_datadir}/gutenprint/samples/*
|
||||||
|
|
||||||
%files cups
|
%files cups
|
||||||
%defattr(-, root, root,-)
|
|
||||||
%doc
|
%doc
|
||||||
%{_datadir}/cups/calibrate.ppm
|
%{_datadir}/cups/calibrate.ppm
|
||||||
%{_cups_serverbin}/filter/*
|
%{_cups_serverbin}/filter/*
|
||||||
@ -305,17 +302,11 @@ fi
|
|||||||
/bin/rm -f /var/cache/foomatic/*
|
/bin/rm -f /var/cache/foomatic/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Tue Apr 03 2012 Nils Philippsen <nils@redhat.com> - 5.2.7-11
|
* Tue Jun 12 2012 Jiri Popelka <jpopelka@redhat.com> 5.2.8-2
|
||||||
- rebuild against gimp 2.8.0 release candidate
|
- Avoid the libgutenprint soname bump so we can update gutenprint in F16 & 17.
|
||||||
|
|
||||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2.7-10
|
* Tue Jun 12 2012 Jiri Popelka <jpopelka@redhat.com> 5.2.8-1
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
- 5.2.8
|
||||||
|
|
||||||
* Fri Dec 16 2011 Nils Philippsen <nils@redhat.com> - 5.2.7-9
|
|
||||||
- rebuild for GIMP 2.7
|
|
||||||
|
|
||||||
* Mon Nov 7 2011 Tim Waugh <twaugh@redhat.com> 5.2.7-8
|
|
||||||
- Rebuild for new libpng.
|
|
||||||
|
|
||||||
* Tue Oct 11 2011 Tim Waugh <twaugh@redhat.com> 5.2.7-7
|
* Tue Oct 11 2011 Tim Waugh <twaugh@redhat.com> 5.2.7-7
|
||||||
- Added IEEE 1284 Device ID for Canon PIXMA MP250 (bug #744087).
|
- Added IEEE 1284 Device ID for Canon PIXMA MP250 (bug #744087).
|
||||||
|
Loading…
Reference in New Issue
Block a user