2007-04-16 15:31:38 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-09-16 19:39:18 +03:00
|
|
|
# $Id$
|
2007-04-16 15:31:38 +03:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
|
|
|
|
PKG_NAME:=qc-usb
|
|
|
|
PKG_VERSION:=0.6.5
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/qce-ga
|
|
|
|
PKG_MD5SUM:=6f6787e1dda11ca3b936ad434154f426
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2007-09-07 11:34:51 +03:00
|
|
|
define Package/qc-usb/Default
|
|
|
|
URL:=http://qce-ga.sourceforge.net/
|
|
|
|
endef
|
|
|
|
|
2007-06-11 01:41:40 +03:00
|
|
|
define Package/qc-usb-utils
|
2007-09-07 11:34:51 +03:00
|
|
|
$(call Package/qc-usb/Default)
|
2007-06-11 01:41:40 +03:00
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2007-04-16 15:31:38 +03:00
|
|
|
TITLE:=Utility programs for the qc-usb kernel module
|
2007-09-07 11:34:51 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/qc-usb-utils/description
|
|
|
|
Utilities to tweak parameters of your QuickCam Express or similar webcam.
|
|
|
|
These programs are completely useless without a qc-usb-modules package.
|
2007-04-16 15:31:38 +03:00
|
|
|
endef
|
|
|
|
|
2007-09-16 19:39:18 +03:00
|
|
|
define KernelPackage/video-quickcam
|
2007-09-07 11:34:51 +03:00
|
|
|
$(call Package/qc-usb/Default)
|
2007-09-16 19:39:18 +03:00
|
|
|
SUBMENU:=Video Support
|
2007-09-20 10:31:06 +03:00
|
|
|
TITLE:=QuickCam Express USB webcam support
|
|
|
|
DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core
|
2007-04-16 15:31:38 +03:00
|
|
|
FILES:=$(PKG_BUILD_DIR)/quickcam.$(LINUX_KMOD_SUFFIX)
|
2007-06-11 01:41:40 +03:00
|
|
|
AUTOLOAD:=$(call AutoLoad,90,quickcam)
|
2007-04-16 15:31:38 +03:00
|
|
|
endef
|
|
|
|
|
2007-09-16 19:39:18 +03:00
|
|
|
define KernelPackage/video-quickcam/description
|
2007-09-07 11:34:51 +03:00
|
|
|
Kernel support for Logitech's QuickCam Express webcam and other webcams
|
|
|
|
with similar chipsets.
|
|
|
|
endef
|
|
|
|
|
2007-09-16 19:39:18 +03:00
|
|
|
ifneq ($(CONFIG_PACKAGE_kmod-video-quickcam),)
|
2007-06-11 01:41:40 +03:00
|
|
|
define Build/Compile/kmod
|
2007-04-16 15:31:38 +03:00
|
|
|
$(MAKE) -C $(LINUX_DIR) \
|
2007-09-20 10:31:06 +03:00
|
|
|
ARCH="$(LINUX_KARCH)" \
|
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
|
|
SUBDIRS="$(PKG_BUILD_DIR)" \
|
2007-04-16 15:31:38 +03:00
|
|
|
modules
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
define Build/Compile
|
2007-06-11 01:41:40 +03:00
|
|
|
$(call Build/Compile/kmod)
|
2007-04-16 15:31:38 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
qcset
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/qc-usb-utils/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2007-06-11 01:41:40 +03:00
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/qcset $(1)/usr/bin/
|
2007-04-16 15:31:38 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,qc-usb-utils))
|
2007-09-16 19:39:18 +03:00
|
|
|
$(eval $(call KernelPackage,video-quickcam))
|