diff options
Diffstat (limited to 'meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.8.bb')
-rw-r--r-- | meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.8.bb | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.8.bb b/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.8.bb deleted file mode 100644 index 485a4162d..000000000 --- a/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.8.bb +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | SUMMARY = "v4l2 and IR applications" | ||
2 | LICENSE = "GPLv2 & LGPLv2.1" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=48da9957849056017dc568bbc43d8975 \ | ||
4 | file://COPYING.LIB;md5=d749e86a105281d7a44c2328acebc4b0" | ||
5 | |||
6 | PR = "r2" | ||
7 | |||
8 | DEPENDS = "jpeg virtual/libx11" | ||
9 | |||
10 | inherit autotools gettext | ||
11 | |||
12 | # libv4l was absorbed into this, let OE know that | ||
13 | PROVIDES = "libv4l" | ||
14 | |||
15 | SRC_URI = "git://linuxtv.org/v4l-utils.git \ | ||
16 | file://openat.patch \ | ||
17 | " | ||
18 | # 54f16ca8183dd8ae8bf4ccc07949795aff0301f5 -> v0.8.8 tag | ||
19 | SRCREV = "0298efdcd1153b8f719b9164548a3f0546f0cb7c" | ||
20 | |||
21 | S = "${WORKDIR}/git" | ||
22 | |||
23 | EXTRA_OECONF = "--disable-qv4l2 --enable-shared --with-udevdir=${base_libdir}/udev" | ||
24 | |||
25 | do_configure() { | ||
26 | # autotools_do_configure fails with: | ||
27 | # | configure.ac:139: error: required file 'build-aux/config.rpath' not found | ||
28 | autoreconf -vfi | ||
29 | oe_runconf | ||
30 | } | ||
31 | |||
32 | PACKAGES =+ "rc-keymaps libv4l libv4l-dbg libv4l-dev" | ||
33 | |||
34 | FILES_rc-keymaps = "${sysconfdir}/rc* ${base_libdir}/udev/rc*" | ||
35 | FILES_${PN} = "${bindir} ${sbindir} ${base_libdir}/udev/rules.d/70-infrared.rules" | ||
36 | FILES_libv4l += "${libdir}/libv4l/* ${libdir}/*.so.*" | ||
37 | FILES_libv4l-dbg += "${libdir}/libv4l/.debug" | ||
38 | FILES_libv4l-dev += "${libdir}/*.so ${includedir}/lib* ${libdir}/pkgconfig/lib*" | ||
39 | |||