Преглед изворни кода

mjpg-streamer: Upgrade to r182, update copyright and license info

    Add options for using libv4l (controls) and installing additional plugins
    Download and use latest cambozola.jar if Web UI selected

Signed-off-by: Ted Hess <thess@kitschensync.net>
Ted Hess пре 10 година
родитељ
комит
99a4852b37

+ 16
- 7
multimedia/mjpg-streamer/Config.in Прегледај датотеку

1
 if PACKAGE_mjpg-streamer
1
 if PACKAGE_mjpg-streamer
2
 
2
 
3
+config MJPG_STREAMER_V4L2
4
+	bool "Compile input_uvc with libv4l2 (camera controls)"
5
+	depends on PACKAGE_libv4l
6
+	default n
7
+
3
 config MJPG_STREAMER_INPUT_FILE
8
 config MJPG_STREAMER_INPUT_FILE
4
-	bool "Install input file library"
5
-	default y
9
+	bool "Install input file plugin"
10
+	default n
6
 
11
 
7
 config MJPG_STREAMER_INPUT_UVC
12
 config MJPG_STREAMER_INPUT_UVC
8
-	bool "Install input uvc library"
13
+	bool "Install input uvc plugin"
9
 	default y
14
 	default y
10
 
15
 
16
+config MJPG_STREAMER_INPUT_TESTPICTURE
17
+	bool "Install input testpicture plugin"
18
+	default n
19
+
11
 config MJPG_STREAMER_OUTPUT_FILE
20
 config MJPG_STREAMER_OUTPUT_FILE
12
-	bool "Install output file library"
13
-	default y
21
+	bool "Install output file plugin"
22
+	default n
14
 
23
 
15
 config MJPG_STREAMER_OUTPUT_HTTP
24
 config MJPG_STREAMER_OUTPUT_HTTP
16
-	bool "Install output http library"
25
+	bool "Install output http plugin"
17
 	default y
26
 	default y
18
 
27
 
19
 config MJPG_STREAMER_WWW
28
 config MJPG_STREAMER_WWW
20
-	bool "Install WWW files"
29
+	bool "Install Web UI files (includes cambozola)"
21
 	default y
30
 	default y
22
 
31
 
23
 endif
32
 endif

+ 34
- 3
multimedia/mjpg-streamer/Makefile Прегледај датотеку

1
 #
1
 #
2
-# Copyright (C) 2006-2013 OpenWrt.org
2
+# Copyright (C) 2006-2014 OpenWrt.org
3
 #
3
 #
4
 # This is free software, licensed under the GNU General Public License v2.
4
 # This is free software, licensed under the GNU General Public License v2.
5
 # See /LICENSE for more information.
5
 # See /LICENSE for more information.
8
 include $(TOPDIR)/rules.mk
8
 include $(TOPDIR)/rules.mk
9
 
9
 
10
 PKG_NAME:=mjpg-streamer
10
 PKG_NAME:=mjpg-streamer
11
-PKG_REV:=181
11
+PKG_REV:=182
12
 PKG_VERSION:=r$(PKG_REV)
12
 PKG_VERSION:=r$(PKG_REV)
13
 PKG_RELEASE:=1
13
 PKG_RELEASE:=1
14
 PKG_MAINTAINER:=Roger D <rogerdammit@gmail.com>
14
 PKG_MAINTAINER:=Roger D <rogerdammit@gmail.com>
19
 PKG_SOURCE_VERSION:=$(PKG_REV)
19
 PKG_SOURCE_VERSION:=$(PKG_REV)
20
 PKG_SOURCE_PROTO:=svn
20
 PKG_SOURCE_PROTO:=svn
21
 
21
 
22
+PKG_LICENSE:=GPL-2.0
23
+PKG_LICENSE_FILE:=LICENSE
24
+
22
 include $(INCLUDE_DIR)/package.mk
25
 include $(INCLUDE_DIR)/package.mk
23
 
26
 
24
 define Package/mjpg-streamer
27
 define Package/mjpg-streamer
25
   SECTION:=multimedia
28
   SECTION:=multimedia
26
   CATEGORY:=Multimedia
29
   CATEGORY:=Multimedia
27
   TITLE:=MJPG-streamer
30
   TITLE:=MJPG-streamer
28
-  DEPENDS:=+libpthread +libjpeg
31
+  DEPENDS:=+libpthread +libjpeg +PACKAGE_libv4l:libv4l
32
+#$(if $(CONFIG_MJPG_STREAMER_V4L2),+libv4l)
29
   URL:=http://mjpg-streamer.wiki.sourceforge.net/
33
   URL:=http://mjpg-streamer.wiki.sourceforge.net/
30
   MENU:=1
34
   MENU:=1
31
 endef
35
 endef
44
 /etc/config/mjpg-streamer
48
 /etc/config/mjpg-streamer
45
 endef
49
 endef
46
 
50
 
51
+CAMBOZOLA:=cambozola-latest.tar.gz
52
+
53
+define Download/cambozola
54
+  URL:=http://www.andywilcock.com/code/cambozola
55
+  FILE:=$(CAMBOZOLA)
56
+  MD5SUM:=6c48fd994685d4d72668850eeb613e24
57
+endef
58
+
59
+# Fetch latest cambozola that works with latest Java(s)
60
+# Yes, I know this is ugly
61
+define Build/Prepare
62
+    $(call Build/Prepare/Default)
63
+    ifeq ($(CONFIG_MJPG_STREAMER_WWW),y)
64
+	$(eval $(call Download,cambozola))
65
+	$(TAR) -xvf $(DL_DIR)/$(CAMBOZOLA) --strip=2 --wildcards \
66
+		-C $(PKG_BUILD_DIR)/www */dist/cambozola.jar
67
+    endif
68
+endef
69
+
70
+ifeq ($(CONFIG_MJPG_STREAMER_V4L2),y)
71
+    TARGET_CFLAGS+= -DUSE_LIBV4L2
72
+    TARGET_LDFLAGS+= -lv4l2
73
+endif
74
+
47
 define Package/mjpg-streamer/install
75
 define Package/mjpg-streamer/install
48
 	$(INSTALL_DIR) $(1)/usr/bin
76
 	$(INSTALL_DIR) $(1)/usr/bin
49
 	$(INSTALL_BIN) $(PKG_BUILD_DIR)/mjpg_streamer $(1)/usr/bin/
77
 	$(INSTALL_BIN) $(PKG_BUILD_DIR)/mjpg_streamer $(1)/usr/bin/
60
 ifeq ($(CONFIG_MJPG_STREAMER_INPUT_UVC),y)
88
 ifeq ($(CONFIG_MJPG_STREAMER_INPUT_UVC),y)
61
 	$(CP) $(PKG_BUILD_DIR)/input_uvc.so $(1)/usr/lib
89
 	$(CP) $(PKG_BUILD_DIR)/input_uvc.so $(1)/usr/lib
62
 endif
90
 endif
91
+ifeq ($(CONFIG_MJPG_STREAMER_INPUT_TESTPICTURE),y)
92
+	$(CP) $(PKG_BUILD_DIR)/input_testpicture.so $(1)/usr/lib
93
+endif
63
 ifeq ($(CONFIG_MJPG_STREAMER_OUTPUT_FILE),y)
94
 ifeq ($(CONFIG_MJPG_STREAMER_OUTPUT_FILE),y)
64
 	$(CP) $(PKG_BUILD_DIR)/output_file.so $(1)/usr/lib
95
 	$(CP) $(PKG_BUILD_DIR)/output_file.so $(1)/usr/lib
65
 endif
96
 endif

+ 0
- 4
multimedia/mjpg-streamer/files/mjpg-streamer.init Прегледај датотеку

61
 
61
 
62
 		config_get www "$s" 'www'
62
 		config_get www "$s" 'www'
63
 		[ -n "$www" ] && output_arg="${output_arg} --www $www"
63
 		[ -n "$www" ] && output_arg="${output_arg} --www $www"
64
-
65
-		config_get username "$s" 'username'
66
-		config_get password "$s" 'password'
67
-		[ -n "$username" ] && [ -n "$password" ] && output_arg="${output_arg} --credentials $username:$password"
68
 	fi
64
 	fi
69
 
65
 
70
 	if [ -z "$output_arg" ]; then
66
 	if [ -z "$output_arg" ]; then

+ 17
- 0
multimedia/mjpg-streamer/patches/010-enable-more-plugins.patch Прегледај датотеку

1
+--- a/Makefile
2
++++ b/Makefile
3
+@@ -33,12 +33,12 @@ APP_BINARY = mjpg_streamer
4
+ 
5
+ # define the names and targets of the plugins
6
+ PLUGINS = input_uvc.so
7
+-#PLUGINS += output_file.so
8
++PLUGINS += output_file.so
9
+ #PLUGINS += output_udp.so
10
+ PLUGINS += output_http.so
11
+ PLUGINS += input_testpicture.so
12
+ #PLUGINS += output_autofocus.so
13
+-#PLUGINS += input_file.so
14
++PLUGINS += input_file.so
15
+ # PLUGINS += input_pylon.so
16
+ # PLUGINS += input_megatec.so
17
+ # PLUGINS += output_mars2020.so