summaryrefslogtreecommitdiff
path: root/recipes-java/v4l4j
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-java/v4l4j')
-rw-r--r--recipes-java/v4l4j/v4l4j-0.9.1/makefile.patch13
-rw-r--r--recipes-java/v4l4j/v4l4j_0.9.1.bb38
2 files changed, 0 insertions, 51 deletions
diff --git a/recipes-java/v4l4j/v4l4j-0.9.1/makefile.patch b/recipes-java/v4l4j/v4l4j-0.9.1/makefile.patch
deleted file mode 100644
index 52639fa..0000000
--- a/recipes-java/v4l4j/v4l4j-0.9.1/makefile.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: v4l4j-0.9.1/src/Makefile
-===================================================================
---- v4l4j-0.9.1.orig/src/Makefile 2014-09-16 16:52:05.753059188 -0500
-+++ v4l4j-0.9.1/src/Makefile 2014-09-16 16:52:15.260916249 -0500
-@@ -51,7 +51,7 @@
- all: $(LIB)
-
- $(LIB): $(OBJ)
-- $(LD) $(OBJ) $(LDFLAGS) -o $(LIB)
-+ $(CC) $(OBJ) $(LDFLAGS) -o $(LIB)
-
- test-debug: $(LIBVIDEO_PATH)/lib$(LIBVIDEO_NAME).so
- $(CC) $(INCLUDES) -DDEBUG -Wall -ggdb -DMAKETEST -c jpeg.c
diff --git a/recipes-java/v4l4j/v4l4j_0.9.1.bb b/recipes-java/v4l4j/v4l4j_0.9.1.bb
deleted file mode 100644
index 605c746..0000000
--- a/recipes-java/v4l4j/v4l4j_0.9.1.bb
+++ /dev/null
@@ -1,38 +0,0 @@
-DESCRIPTION = "A java package to access the Capture interface of the Video4Linux API"
-DEPENDS = "jpeg icedtea6-native libv4l"
-PR = "r0"
-LICENSE = "GPL-3.0"
-LIC_FILES_CHKSUM = "file://COPYING;md5=87212b5f1ae096371049a12f80034f32"
-
-SRC_URI = "http://v4l4j.googlecode.com/files/v4l4j-${PV}.tar.gz \
- file://makefile.patch \
- "
-
-SRC_URI[md5sum] = "88756ca604a4701b7c453be24f948a09"
-SRC_URI[sha256sum] = "cb20aad827442960090660d85f9fa24eed9417e732fdefb66e57083df3c88cf7"
-
-export JDK_HOME = "${STAGING_LIBDIR_NATIVE}/jvm/icedtea6-native"
-STAGING_DATADIR_JAVA_NATIVE = "${STAGING_DATADIR_NATIVE}/java"
-
-# run ant with icedtea6-native so things get compiled with java 1.6
-ANT = "${JDK_HOME}/bin/java \
- -cp ${STAGING_DATADIR_JAVA_NATIVE}/ant.jar:${JDK_HOME}/lib/tools.jar \
- org.apache.tools.ant.launch.Launcher"
-
-do_compile () {
- ${ANT} clean all
-}
-
-do_install () {
- install -d ${D}${libdir}
- install libvideo/libvideo.so.0 ${D}${libdir}
-
- install -d ${D}/usr/share/java
- install v4l4j.jar ${D}/usr/share/java
-
- install -d ${D}/usr/lib/jni
- install libv4l4j.so ${D}/usr/lib/jni
-}
-
-FILES_${PN} += "/usr/share/java /usr/lib/jni"
-FILES_${PN}-dbg += "/usr/lib/jni/.debug"