pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/print/cups Compile real local backends, not just stubs...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4e07f9db2366
branches:  trunk
changeset: 504719:4e07f9db2366
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Mon Dec 19 16:04:48 2005 +0000

description:
Compile real local backends, not just stubs, for DragonFly.
Since this package "worked" before, bump the revision.
Noticed by antencek AT gmail DOT com.

diffstat:

 print/cups/Makefile         |   4 ++--
 print/cups/distinfo         |   6 +++++-
 print/cups/patches/patch-aa |  22 ++++++++++++++++++++++
 print/cups/patches/patch-ae |  13 +++++++++++++
 print/cups/patches/patch-af |  13 +++++++++++++
 print/cups/patches/patch-ag |  13 +++++++++++++
 6 files changed, 68 insertions(+), 3 deletions(-)

diffs (115 lines):

diff -r 41a79b9bbe48 -r 4e07f9db2366 print/cups/Makefile
--- a/print/cups/Makefile       Mon Dec 19 16:01:34 2005 +0000
+++ b/print/cups/Makefile       Mon Dec 19 16:04:48 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.102 2005/12/17 05:20:22 jlam Exp $
+# $NetBSD: Makefile,v 1.103 2005/12/19 16:04:48 joerg Exp $
 #
 # The CUPS author is very good about taking back changes into the main
 # CUPS distribution.  The correct place to send patches or bug-fixes is:
@@ -6,7 +6,7 @@
 
 DISTNAME=      cups-${DIST_VERS}-source
 PKGNAME=       cups-${VERS}
-PKGREVISION=   4
+PKGREVISION=   5
 BASE_VERS=     1.1.23
 DIST_VERS=     ${BASE_VERS}
 VERS=          ${DIST_VERS:S/-/./g}
diff -r 41a79b9bbe48 -r 4e07f9db2366 print/cups/distinfo
--- a/print/cups/distinfo       Mon Dec 19 16:01:34 2005 +0000
+++ b/print/cups/distinfo       Mon Dec 19 16:04:48 2005 +0000
@@ -1,11 +1,15 @@
-$NetBSD: distinfo,v 1.35 2005/12/17 04:22:55 jlam Exp $
+$NetBSD: distinfo,v 1.36 2005/12/19 16:04:48 joerg Exp $
 
 SHA1 (cups-1.1.23-source.tar.bz2) = 32d5bfb44c4edc1b54ccb014b5a44499295c6c5c
 RMD160 (cups-1.1.23-source.tar.bz2) = 255ec4c22422b14f2367d69f3ec7e590dc46bea5
 Size (cups-1.1.23-source.tar.bz2) = 8705521 bytes
+SHA1 (patch-aa) = a8dc064c49adce682d1aa5e88991037c86f2358f
 SHA1 (patch-ab) = 29c205c31a70229f46f0c99775e70fc9c56af1e8
 SHA1 (patch-ac) = 45388ca8b1bfeaf5d3649b766f65ac7f3108af74
 SHA1 (patch-ad) = 166749eb9fc7b4b20e123d81cd3b2cf96db27677
+SHA1 (patch-ae) = 773b723b3cbd669cd1695577c578fea0fc7fa7f8
+SHA1 (patch-af) = 04e5bf3b73083eb2457a20b0f5238f017fe4aaab
+SHA1 (patch-ag) = 47a5c7a9ad7c604fa3253aebbaa62f576fb477d0
 SHA1 (patch-an) = 8eb0f80067839d3d112d93e08cb8ad6854fa2b4c
 SHA1 (patch-ao) = c4c8f833cf4a09a686a338df6c209cebec36c6ef
 SHA1 (patch-at) = aa36ec591164675b889d2cf32e4d754e9b6db94f
diff -r 41a79b9bbe48 -r 4e07f9db2366 print/cups/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/cups/patches/patch-aa       Mon Dec 19 16:04:48 2005 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-aa,v 1.18 2005/12/19 16:04:48 joerg Exp $
+
+--- backend/serial.c.orig      2005-12-19 13:59:56.000000000 +0000
++++ backend/serial.c
+@@ -542,7 +542,7 @@ main(int  argc,            /* I - Number of comman
+ void
+ list_devices(void)
+ {
+-#if defined(__hpux) || defined(__sgi) || defined(__sun) || defined(__FreeBSD__) || defined(__OpenBSD__)
++#if defined(__hpux) || defined(__sgi) || defined(__sun) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
+   static char *funky_hex = "0123456789abcdefghijklmnopqrstuvwxyz";
+                               /* Funky hex numbering used for some devices */
+ #endif /* __hpux || __sgi || __sun || __FreeBSD__ || __OpenBSD__ */
+@@ -792,7 +792,7 @@ list_devices(void)
+       printf("serial serial:%s?baud=38400 \"Unknown\" \"Serial Port #%d\"\n",
+              device, i + 1);
+   }
+-#elif defined(__FreeBSD__) || defined(__OpenBSD__)
++#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
+   int i, j;           /* Looping vars */
+   int fd;             /* File descriptor */
+   char        device[255];    /* Device filename */
diff -r 41a79b9bbe48 -r 4e07f9db2366 print/cups/patches/patch-ae
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/cups/patches/patch-ae       Mon Dec 19 16:04:48 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ae,v 1.14 2005/12/19 16:04:48 joerg Exp $
+
+--- backend/parallel.c.orig    2005-12-19 14:00:24.000000000 +0000
++++ backend/parallel.c
+@@ -633,7 +633,7 @@ list_devices(void)
+       printf("direct parallel:%s \"Unknown\" \"Parallel Port #%d\"\n", device, i + 1);
+     }
+   }
+-#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
++#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
+   int i;                      /* Looping var */
+   int fd;                     /* File descriptor */
+   char        device[255];            /* Device filename */
diff -r 41a79b9bbe48 -r 4e07f9db2366 print/cups/patches/patch-af
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/cups/patches/patch-af       Mon Dec 19 16:04:48 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-af,v 1.16 2005/12/19 16:04:48 joerg Exp $
+
+--- backend/usb.c.orig 2005-12-19 13:59:03.000000000 +0000
++++ backend/usb.c
+@@ -71,7 +71,7 @@ int  print_device(const char *uri, const 
+ 
+ #ifdef __APPLE__
+ #  include "usb-darwin.c"
+-#elif defined(__linux) || defined(__sun) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
++#elif defined(__linux) || defined(__sun) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
+ #  include "usb-unix.c"
+ #else
+ /*
diff -r 41a79b9bbe48 -r 4e07f9db2366 print/cups/patches/patch-ag
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/print/cups/patches/patch-ag       Mon Dec 19 16:04:48 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ag,v 1.18 2005/12/19 16:04:48 joerg Exp $
+
+--- backend/usb-unix.c.orig    2005-12-19 13:59:35.000000000 +0000
++++ backend/usb-unix.c
+@@ -544,7 +544,7 @@ list_devices(void)
+   }
+ #elif defined(__hpux)
+ #elif defined(__osf)
+-#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
++#elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
+   int   i;                      /* Looping var */
+   char  device[255];            /* Device filename */
+ 



Home | Main Index | Thread Index | Old Index