summaryrefslogtreecommitdiff
path: root/print/cups-base
diff options
context:
space:
mode:
authorAlan Eldridge <alane@FreeBSD.org>2002-09-11 15:12:34 +0000
committerAlan Eldridge <alane@FreeBSD.org>2002-09-11 15:12:34 +0000
commitfbe39ec3f0d3606318ce79355c2f7a8bd6af0aa5 (patch)
tree0fcbb86b035da545498d07a311ccee9e97c21725 /print/cups-base
parentRemove x11-toolkits/libgsf in favor of devel/libgsf imported by sobomax. (diff)
Bug fix for non-PS octet-stream print failures. Patch taken from CVS.
Notes
Notes: svn path=/head/; revision=66145
Diffstat (limited to 'print/cups-base')
-rw-r--r--print/cups-base/Makefile2
-rw-r--r--print/cups-base/patch-scheduler-mime.c-1.1.1652
2 files changed, 53 insertions, 1 deletions
diff --git a/print/cups-base/Makefile b/print/cups-base/Makefile
index 0045985c55c5..d2ae1c1a35c5 100644
--- a/print/cups-base/Makefile
+++ b/print/cups-base/Makefile
@@ -7,7 +7,7 @@
PORTNAME= cups-base
PORTVERSION= ${CUPS_PORTVER}
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES?= print
MAINTAINER= ports@geeksrus.net
diff --git a/print/cups-base/patch-scheduler-mime.c-1.1.16 b/print/cups-base/patch-scheduler-mime.c-1.1.16
new file mode 100644
index 000000000000..d0c02367a605
--- /dev/null
+++ b/print/cups-base/patch-scheduler-mime.c-1.1.16
@@ -0,0 +1,52 @@
+Index: mime.c
+===================================================================
+RCS file: /home/anoncvs/cups/scheduler/mime.c,v
+retrieving revision 1.12
+retrieving revision 1.14
+diff -u -3 -r1.12 -r1.14
+--- mime.c 2002/05/16 13:45:02 1.12
++++ mime.c 2002/08/23 01:33:46 1.14
+@@ -1,5 +1,5 @@
+ /*
+- * "$Id: mime.c,v 1.12 2002/05/16 13:45:02 mike Exp $"
++ * "$Id: mime.c,v 1.14 2002/08/23 01:33:46 mike Exp $"
+ *
+ * MIME database file routines for the Common UNIX Printing System (CUPS).
+ *
+@@ -502,17 +502,20 @@
+ filter = lineptr;
+
+ #ifndef WIN32
+- /*
+- * Verify that the filter exists and is executable...
+- */
++ if (strcmp(filter, "-") != 0)
++ {
++ /*
++ * Verify that the filter exists and is executable...
++ */
+
+- if (filter[0] == '/')
+- strlcpy(filterprog, filter, sizeof(filterprog));
+- else
+- snprintf(filterprog, sizeof(filterprog), "%s/%s", filterpath, filter);
++ if (filter[0] == '/')
++ strlcpy(filterprog, filter, sizeof(filterprog));
++ else
++ snprintf(filterprog, sizeof(filterprog), "%s/%s", filterpath, filter);
+
+- if (access(filterprog, X_OK))
+- continue;
++ if (access(filterprog, X_OK))
++ continue;
++ }
+ #endif /* !WIN32 */
+
+ /*
+@@ -593,5 +596,5 @@
+
+
+ /*
+- * End of "$Id: mime.c,v 1.12 2002/05/16 13:45:02 mike Exp $".
++ * End of "$Id: mime.c,v 1.14 2002/08/23 01:33:46 mike Exp $".
+ */