summaryrefslogtreecommitdiff
path: root/graphics/ov519view
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2006-04-22 18:06:30 +0000
committerjoerg <joerg@pkgsrc.org>2006-04-22 18:06:30 +0000
commitdff6c989f8a2e921d173a25a8b49b0db59a26dda (patch)
tree7bc670ac0af02ab06ed75ad3653155308955616e /graphics/ov519view
parent5b0a4db69404d6969281900402105215206f426f (diff)
downloadpkgsrc-dff6c989f8a2e921d173a25a8b49b0db59a26dda.tar.gz
Add DragonFly support.
Diffstat (limited to 'graphics/ov519view')
-rw-r--r--graphics/ov519view/distinfo6
-rw-r--r--graphics/ov519view/patches/patch-ab16
-rw-r--r--graphics/ov519view/patches/patch-ac16
-rw-r--r--graphics/ov519view/patches/patch-ad16
-rw-r--r--graphics/ov519view/patches/patch-ae16
5 files changed, 69 insertions, 1 deletions
diff --git a/graphics/ov519view/distinfo b/graphics/ov519view/distinfo
index 28b5a32fdb2..d063c3e9a2a 100644
--- a/graphics/ov519view/distinfo
+++ b/graphics/ov519view/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.3 2005/02/24 08:45:10 agc Exp $
+$NetBSD: distinfo,v 1.4 2006/04/22 18:06:30 joerg Exp $
SHA1 (ov51x-1.65-1.11-mark.tar.bz2) = 137354923edac4409358ddee3317576081b3b3da
RMD160 (ov51x-1.65-1.11-mark.tar.bz2) = b554436a24d887cd39daea88946ad49d29ca8afe
@@ -7,3 +7,7 @@ SHA1 (ov51x-1.65-1.11-mark-bsd-0.00.patch.gz) = f07161fb5d8dbd82235b42e76bcbb6d1
RMD160 (ov51x-1.65-1.11-mark-bsd-0.00.patch.gz) = dc78609d86a32a040804af9c4d2162ff34ff2d4b
Size (ov51x-1.65-1.11-mark-bsd-0.00.patch.gz) = 18664 bytes
SHA1 (patch-aa) = 9aaf3096fa9fdd4530004a41daa7a21a4f858ba7
+SHA1 (patch-ab) = 8c83bfbe51cd01e80909c57974e13cc0b2ea4c45
+SHA1 (patch-ac) = c5c5aac3bc655f6c0c7ae0fa320a7f658374a841
+SHA1 (patch-ad) = 7c5031292c267209415c8cae296a05d56ed553eb
+SHA1 (patch-ae) = 1c3ab9021e9491ecf8a81f1d8007a99d20ed4268
diff --git a/graphics/ov519view/patches/patch-ab b/graphics/ov519view/patches/patch-ab
new file mode 100644
index 00000000000..8b1ef42c0c0
--- /dev/null
+++ b/graphics/ov519view/patches/patch-ab
@@ -0,0 +1,16 @@
+$NetBSD: patch-ab,v 1.1 2006/04/22 18:06:30 joerg Exp $
+
+--- linux_usbif.c.orig 2006-04-22 17:50:45.000000000 +0000
++++ linux_usbif.c
+@@ -29,7 +29,11 @@
+
+ #include <ctype.h>
+ #include <sys/ioctl.h>
++#if defined(__DragonFly__)
++#include <bus/usb/usb.h>
++#else
+ #include <dev/usb/usb.h>
++#endif
+
+ #include "linux_usbif.h"
+
diff --git a/graphics/ov519view/patches/patch-ac b/graphics/ov519view/patches/patch-ac
new file mode 100644
index 00000000000..c9c9b28767d
--- /dev/null
+++ b/graphics/ov519view/patches/patch-ac
@@ -0,0 +1,16 @@
+$NetBSD: patch-ac,v 1.1 2006/04/22 18:06:30 joerg Exp $
+
+--- linux_usbif.h.orig 2006-04-22 17:50:37.000000000 +0000
++++ linux_usbif.h
+@@ -19,7 +19,11 @@
+ #include <string.h>
+ #include <err.h>
+
++#if defined(__DragonFly__)
++#include <bus/usb/usb.h>
++#else
+ #include <dev/usb/usb.h>
++#endif
+
+ #define USB_ENDPOINT_DIR_MASK 0x80
+ #define USB_DIR_OUT UT_WRITE
diff --git a/graphics/ov519view/patches/patch-ad b/graphics/ov519view/patches/patch-ad
new file mode 100644
index 00000000000..e981d88fd91
--- /dev/null
+++ b/graphics/ov519view/patches/patch-ad
@@ -0,0 +1,16 @@
+$NetBSD: patch-ad,v 1.1 2006/04/22 18:06:30 joerg Exp $
+
+--- ov519shot.c.orig 2006-04-22 17:56:45.000000000 +0000
++++ ov519shot.c
+@@ -37,7 +37,11 @@
+ #include <string.h>
+ #include <err.h>
+
++#if defined(__DragonFly__)
++#include <bus/usb/usb.h>
++#else
+ #include <dev/usb/usb.h>
++#endif
+
+ #include "linux_usbif.h"
+ #include "ov51x.h"
diff --git a/graphics/ov519view/patches/patch-ae b/graphics/ov519view/patches/patch-ae
new file mode 100644
index 00000000000..b73bfbcb33e
--- /dev/null
+++ b/graphics/ov519view/patches/patch-ae
@@ -0,0 +1,16 @@
+$NetBSD: patch-ae,v 1.1 2006/04/22 18:06:30 joerg Exp $
+
+--- ov519view.c.orig 2006-04-22 17:50:21.000000000 +0000
++++ ov519view.c
+@@ -41,7 +41,11 @@
+ #include <string.h>
+ #include <err.h>
+
++#if defined(__DragonFly__)
++#include <bus/usb/usb.h>
++#else
+ #include <dev/usb/usb.h>
++#endif
+
+ #include <gtk/gtk.h>
+ #include <gdk_imlib.h>