diff options
| author | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-02 14:29:27 +0200 |
|---|---|---|
| committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-02 14:29:27 +0200 |
| commit | d56c046902e224faaa038d3882927a64316cb39b (patch) | |
| tree | dde913d9caed0f00912372c5f97e21a96eb4c016 | |
| parent | f95ffd6cedb2a0fcad9db1b2d612663a327be87b (diff) | |
| download | meta-openembedded-d56c046902e224faaa038d3882927a64316cb39b.tar.gz | |
v4l-utils: add 0.8.4 release
This provides the 'libv4l' subpackage that is needed for various webcams that aren't allowed to do colourspace conversion inside the kernel anymore (e.g. pwc cams)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
| -rw-r--r-- | meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.4.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.4.bb b/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.4.bb new file mode 100644 index 0000000000..3252ae3b06 --- /dev/null +++ b/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_0.8.4.bb | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | DESCRIPTION = "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 | DEPENDS = "jpeg" | ||
| 7 | |||
| 8 | # libv4l was absorbed into this, let OE know that | ||
| 9 | PROVIDES = "libv4l" | ||
| 10 | |||
| 11 | SRC_URI = "git://linuxtv.org/v4l-utils.git;protocol=git" | ||
| 12 | SRCREV = "v4l-utils-${PV}" | ||
| 13 | |||
| 14 | S = "${WORKDIR}/git" | ||
| 15 | |||
| 16 | EXTRA_OEMAKE = "PREFIX=${prefix} DESTDIR=${D}" | ||
| 17 | |||
| 18 | do_compile() { | ||
| 19 | # fix up some ASNEEDED things | ||
| 20 | for i in $(find ${S} -name "Makefile") ; do | ||
| 21 | sed -i 's:-lrt:-lrt -lpthread:g' $i | ||
| 22 | done | ||
| 23 | |||
| 24 | oe_runmake | ||
| 25 | } | ||
| 26 | |||
| 27 | do_install() { | ||
| 28 | oe_runmake install | ||
| 29 | } | ||
| 30 | |||
| 31 | PACKAGES =+ "rc-keymaps libv4l libv4l-dbg libv4l-dev" | ||
| 32 | |||
| 33 | FILES_rc-keymaps = "${sysconfdir}/rc*" | ||
| 34 | FILES_${PN} = "${bindir} ${sbindir} ${base_libdir}/udev/rules.d/70-infrared.rules" | ||
| 35 | FILES_libv4l += "${libdir}/libv4l/* ${libdir}/*.so.*" | ||
| 36 | FILES_libv4l-dbg += "${libdir}/libv4l/.debug" | ||
| 37 | FILES_libv4l-dev += "${libdir}/*.so ${includedir}/lib* ${libdir}/pkgconfig/lib*" | ||
| 38 | |||
