2007-04-16 15:31:38 +03:00
|
|
|
#
|
2008-04-12 23:20:41 +03:00
|
|
|
# Copyright (C) 2006-2008 OpenWrt.org
|
2007-04-16 15:31:38 +03:00
|
|
|
#
|
|
|
|
# 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
|
2008-04-12 23:20:41 +03:00
|
|
|
PKG_VERSION:=0.6.6
|
2007-04-16 15:31:38 +03:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/qce-ga
|
2008-04-12 23:20:41 +03:00
|
|
|
PKG_MD5SUM:=9eab8fb3a75326d1565d59b0c7256075
|
2007-04-16 15:31:38 +03:00
|
|
|
|
|
|
|
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
|
2008-01-06 04:12:37 +02:00
|
|
|
DEPENDS:=@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
|
|
|
|
|
2008-01-06 04:12:37 +02:00
|
|
|
ifeq ($(KERNEL),2.4)
|
|
|
|
ifeq ($(LINUX_KARCH),i386)
|
|
|
|
KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time
|
|
|
|
endif
|
|
|
|
ifeq ($(LINUX_KARCH),mips)
|
|
|
|
KERNEL_C_OPTS:= -Os -G 0 -mlong-calls -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 -Wa,-mips32 -Wa,--trap
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2008-04-20 12:49:13 +03:00
|
|
|
ifneq ($(CONFIG_PACKAGE_kmod-video-quickcam),)
|
|
|
|
define Build/Compile/kmod
|
2008-01-06 04:12:37 +02:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
LINUX_DIR="$(LINUX_DIR)" \
|
2007-09-20 10:31:06 +03:00
|
|
|
ARCH="$(LINUX_KARCH)" \
|
|
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
2008-01-06 04:12:37 +02:00
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
LD="$(TARGET_CC) -nodefaultlibs -nostartfiles" \
|
|
|
|
USER_OPT="$(KERNEL_C_OPTS)" \
|
|
|
|
quickcam.$(LINUX_KMOD_SUFFIX)
|
2008-04-20 12:49:13 +03:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
define Build/Compile/user
|
2007-04-16 15:31:38 +03:00
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
qcset
|
|
|
|
endef
|
|
|
|
|
2008-04-20 12:49:13 +03:00
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/kmod)
|
|
|
|
$(call Build/Compile/user)
|
|
|
|
endef
|
|
|
|
|
2007-04-16 15:31:38 +03:00
|
|
|
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))
|