diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-04-12 20:43:38 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-04-12 20:43:38 +0000 |
commit | dbca3552f626c36192ca6bf55fb0f11859a02bff (patch) | |
tree | dd0b1d5d318f52f87d64940904c878ab74227498 /package/ov51x-jpeg/Makefile | |
parent | 899c0c59f778a6766a2d70d0acbb3837eee370e3 (diff) |
package/ov51x-jpeg:
* update to 1.5.7
* add userland package
* add fallback url
(closes: #3216)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10800 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/ov51x-jpeg/Makefile')
-rw-r--r-- | package/ov51x-jpeg/Makefile | 47 |
1 files changed, 40 insertions, 7 deletions
diff --git a/package/ov51x-jpeg/Makefile b/package/ov51x-jpeg/Makefile index 97916e2187..4ef1bd2813 100644 --- a/package/ov51x-jpeg/Makefile +++ b/package/ov51x-jpeg/Makefile @@ -1,5 +1,5 @@ -# -# Copyright (C) 2007 OpenWrt.org +# +# Copyright (C) 2007-2008 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -10,20 +10,37 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=ov51x-jpeg -PKG_VERSION:=1.5.2 +PKG_VERSION:=1.5.7 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://www.rastageeks.org/downloads/ov51x-jpeg/ -PKG_MD5SUM:=baee1e0a7a16772e81ea36d8b3ce6127 +PKG_SOURCE_URL:=http://www.rastageeks.org/downloads/ov51x-jpeg/ \ + http://www.rastageeks.org/downloads/ov51x-jpeg/old-releases/ +PKG_MD5SUM:=7de1f426a48bdb55218913e2d713f813 include $(INCLUDE_DIR)/package.mk +define Package/ov51x-jpeg/Default + URL:=http://www.rastageeks.org/ov51x-jpeg/ +endef + +define Package/ov51x-jpeg-utils +$(call Package/ov51x-jpeg/Default) + SECTION:=utils + CATEGORY:=Utilities + TITLE:=OV51x based USB webcam utilities + DEPENDS:=+kmod-video-ov51x-jpeg +endef + +define Package/ov51x-jpeg-utils/description + Utility programs for the video-ov51x kernel module +endef + # XXX: remove @!TARGET_* later when we have USB support properly detected on all targets define KernelPackage/video-ov51x-jpeg +$(call Package/ov51x-jpeg/Default) SUBMENU:=Video Support TITLE:=OV51x based USB webcam support (JPEG) - URL:=http://www.rastageeks.org/ov51x-jpeg/ DEPENDS:=@LINUX_2_6 @USB_SUPPORT +kmod-usb-core kmod-video-core @!TARGET_atheros @!TARGET_uml FILES:=$(PKG_BUILD_DIR)/ov51x-jpeg.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,70,ov51x-jpeg) @@ -33,12 +50,28 @@ define KernelPackage/video-ov51x-jpeg/description Kernel module for OV51x based USB cameras, with in-driver JPEG support. endef -define Build/Compile +ifneq ($(CONFIG_PACKAGE_kmod-video-ov51x-jpeg),) + define Build/Compile/kmod $(MAKE) -C $(LINUX_DIR) \ ARCH="$(LINUX_KARCH)" \ CROSS_COMPILE="$(TARGET_CROSS)" \ SUBDIRS="$(PKG_BUILD_DIR)" \ modules + endef +endif + +define Build/Compile + $(call Build/Compile/kmod) + $(MAKE) -C $(PKG_BUILD_DIR)/test \ + CFLAGS="$(TARGET_CFLAGS)" \ + CC="$(TARGET_CC)" \ + getjpeg +endef + +define Package/ov51x-jpeg-utils/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/test/getjpeg $(1)/usr/bin/ endef +$(eval $(call BuildPackage,ov51x-jpeg-utils)) $(eval $(call KernelPackage,video-ov51x-jpeg)) |