libv4l: Add new package libv4l

[Peter: move to hw section]
Signed-off-by: Klaus Schwarzkopf <schwarzkopf@sensortherm.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Klaus Schwarzkopf 2011-03-07 18:21:18 +01:00 committed by Peter Korsgaard
parent 6fd58dfcf5
commit 3110e81773
3 changed files with 41 additions and 0 deletions

View File

@ -179,6 +179,7 @@ source "package/input-tools/Config.in"
source "package/iostat/Config.in"
source "package/irda-utils/Config.in"
source "package/kbd/Config.in"
source "package/libv4l/Config.in"
source "package/lm-sensors/Config.in"
source "package/lsuio/Config.in"
source "package/lvm2/Config.in"

11
package/libv4l/Config.in Normal file
View File

@ -0,0 +1,11 @@
config BR2_PACKAGE_LIBV4L
bool "libv4l"
depends on BR2_LARGEFILE
help
libv4l is an accompanying collection of libraries that adds a thin
abstraction layer on top of video4linux2 (V4L2) devices.
http://freshmeat.net/projects/libv4l
comment "libv4l requires a toolchain with LARGEFILE support"
depends on !BR2_LARGEFILE

29
package/libv4l/libv4l.mk Normal file
View File

@ -0,0 +1,29 @@
#############################################################
#
# libv4l
#
#############################################################
LIBV4L_VERSION = 0.8.3
LIBV4L_SOURCE = v4l-utils-$(LIBV4L_VERSION).tar.bz2
LIBV4L_SITE = http://linuxtv.org/downloads/v4l-utils/
LIBV4L_INSTALL_STAGING = YES
LIBV4L_MAKE_OPTS = PREFIX=/usr
ifeq ($(BR2_PREFER_STATIC_LIB),y)
LIBV4L_MAKE_OPTS += LINKTYPE=static
endif
define LIBV4L_BUILD_CMDS
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)/lib $(LIBV4L_MAKE_OPTS)
endef
define LIBV4L_INSTALL_STAGING_CMDS
$(MAKE) -C $(@D)/lib DESTDIR=$(STAGING_DIR) $(LIBV4L_MAKE_OPTS) install
endef
define LIBV4L_INSTALL_TARGET_CMDS
$(MAKE) -C $(@D)/lib DESTDIR=$(TARGET_DIR) $(LIBV4L_MAKE_OPTS) install
endef
$(eval $(call GENTARGETS,package,libv4l))