diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.8.bb | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
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, 39 insertions, 0 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 new file mode 100644 index 0000000000..485a4162d1 --- /dev/null +++ b/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.8.bb | |||
@@ -0,0 +1,39 @@ | |||
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 | |||