pvrusb2-mci: added release 20051113
authorFrans Meulenbroeks <fransmeulenbroeks@yahoo.com>
Sat, 26 Nov 2005 19:33:30 +0000 (19:33 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Sat, 26 Nov 2005 19:33:30 +0000 (19:33 +0000)
openslug/.mtn2git_empty [new file with mode: 0644]
openslug/openembedded/.mtn2git_empty [new file with mode: 0644]
openslug/openembedded/packages/.mtn2git_empty [new file with mode: 0644]
openslug/openembedded/packages/pvrusb2-mci/.mtn2git_empty [new file with mode: 0644]
openslug/openembedded/packages/pvrusb2-mci/pvrusb2-mci-20051113/.mtn2git_empty [new file with mode: 0644]
openslug/openembedded/packages/pvrusb2-mci/pvrusb2-mci-20051113/Makefile.patch [new file with mode: 0644]
openslug/openembedded/packages/pvrusb2-mci/pvrusb2-mci_20051113.bb [new file with mode: 0644]

diff --git a/openslug/.mtn2git_empty b/openslug/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/openslug/openembedded/.mtn2git_empty b/openslug/openembedded/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/openslug/openembedded/packages/.mtn2git_empty b/openslug/openembedded/packages/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/openslug/openembedded/packages/pvrusb2-mci/.mtn2git_empty b/openslug/openembedded/packages/pvrusb2-mci/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/openslug/openembedded/packages/pvrusb2-mci/pvrusb2-mci-20051113/.mtn2git_empty b/openslug/openembedded/packages/pvrusb2-mci/pvrusb2-mci-20051113/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/openslug/openembedded/packages/pvrusb2-mci/pvrusb2-mci-20051113/Makefile.patch b/openslug/openembedded/packages/pvrusb2-mci/pvrusb2-mci-20051113/Makefile.patch
new file mode 100644 (file)
index 0000000..b79c42e
--- /dev/null
@@ -0,0 +1,15 @@
+--- driver/Makefile-   2005-09-11 13:22:08.000000000 -1000
++++ driver/Makefile    2005-09-17 01:02:06.341217389 -1000
+@@ -37,10 +37,10 @@
+   all: modules
+   modules modules_install clean:
+-      $(MAKE) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) -C $(KDIR) M=$(shell pwd) $@
++      $(MAKE) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) CFLAGS="$(CFLAGS) $(TARGET_CFLAGS)" -C $(KDIR) M=$(shell pwd) $@
+   install:
+-      $(MAKE) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) -C $(KDIR) M=$(shell pwd) modules_install
++      $(MAKE) INSTALL_MOD_DIR=$(INSTALL_MOD_DIR) CFLAGS="$(CFLAGS) $(TARGET_CFLAGS)" -C $(KDIR) M=$(shell pwd) modules_install
+ else
diff --git a/openslug/openembedded/packages/pvrusb2-mci/pvrusb2-mci_20051113.bb b/openslug/openembedded/packages/pvrusb2-mci/pvrusb2-mci_20051113.bb
new file mode 100644 (file)
index 0000000..5ac677e
--- /dev/null
@@ -0,0 +1,41 @@
+DESCRIPTION = "Driver for the Hauppauge WinTV PVR USB2"
+PRIORITY = "optional"
+SECTION = "kernel/modules"
+MAINTAINER = "dyoung <dyoung@thestuffguy.com>"
+LICENSE = "GPL"
+PR = "r0"
+# It in fact requires these modules, but for now is using the local ones.
+# RDEPENDS = "kernel-module-tveeprom kernel-module-tuner kernel-module-msp3400 kernel-module-saa7115"
+SRC_URI = "http://www.isely.net/downloads/pvrusb2-mci-20051113.tar.bz2"
+
+#SRC_URI = "http://www.isely.net/downloads/pvrusb2-mci-20051113.tar.bz2 \
+#           file://Makefile.patch;patch=1" 
+
+S = "${WORKDIR}/pvrusb2-mci-20051113"
+
+inherit module
+
+CFLAGS = "'-I${KERNEL_SOURCE}/include' \
+          '-D__LINUX_ARM_ARCH__=5'"
+
+EXTRA_OEMAKE = "'CFLAGS=${CFLAGS}' \
+                'CC=${KERNEL_CC}' \
+                'LD=${KERNEL_LD}' \
+                'KDIR=${STAGING_KERNEL_DIR}'" 
+
+export TARGET_LDFLAGS = "-L${STAGING_DIR}/${TARGET_SYS}/lib \
+                         -rpath-link ${STAGING_DIR}/${TARGET_SYS}/lib"
+
+
+do_compile() {   
+       cd ivtv; oe_runmake
+       cd ../driver; oe_runmake 
+}
+
+do_install() {   
+        install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/media
+        install -m 0644 ivtv/*${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/media
+        install -m 0644 driver/*${KERNEL_OBJECT_SUFFIX} ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/usb/media
+}
+