2010-03-25 17:46:16 +02:00
|
|
|
#
|
2011-07-17 10:18:59 +03:00
|
|
|
# Copyright (C) 2010-2011 Jo-Philipp Wich <xm@subsignal.org>
|
2010-03-25 17:46:16 +02:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=uhttpd
|
2011-09-19 01:30:20 +03:00
|
|
|
PKG_RELEASE:=27
|
2010-03-25 17:46:16 +02:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
2011-07-18 17:18:31 +03:00
|
|
|
PKG_CONFIG_DEPENDS := \
|
2011-07-19 09:59:47 +03:00
|
|
|
CONFIG_PACKAGE_uhttpd-mod-lua \
|
|
|
|
CONFIG_PACKAGE_uhttpd-mod-tls \
|
2011-07-18 17:18:31 +03:00
|
|
|
CONFIG_PACKAGE_uhttpd-mod-tls_cyassl \
|
|
|
|
CONFIG_PACKAGE_uhttpd-mod-tls_openssl
|
2010-03-25 17:46:16 +02:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/uhttpd/default
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2011-03-12 06:47:02 +02:00
|
|
|
SUBMENU:=Web Servers/Proxies
|
2010-03-25 17:46:16 +02:00
|
|
|
TITLE:=uHTTPd - tiny, single threaded HTTP server
|
2010-09-30 13:48:37 +03:00
|
|
|
MAINTAINER:=Jo-Philipp Wich <xm@subsignal.org>
|
2010-03-25 17:46:16 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd
|
|
|
|
$(Package/uhttpd/default)
|
|
|
|
MENU:=1
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd/description
|
|
|
|
uHTTPd is a tiny single threaded HTTP server with TLS, CGI and Lua
|
|
|
|
support. It is intended as a drop-in replacement for the Busybox
|
|
|
|
HTTP daemon.
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-tls
|
|
|
|
$(Package/uhttpd/default)
|
|
|
|
TITLE+= (TLS plugin)
|
2011-07-18 17:18:31 +03:00
|
|
|
DEPENDS:=uhttpd +PACKAGE_uhttpd-mod-tls_cyassl:libcyassl +PACKAGE_uhttpd-mod-tls_openssl:libopenssl
|
2010-03-25 17:46:16 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-tls/description
|
|
|
|
The TLS plugin adds HTTPS support to uHTTPd.
|
|
|
|
endef
|
|
|
|
|
2011-07-18 17:18:31 +03:00
|
|
|
define Package/uhttpd-mod-tls/config
|
|
|
|
choice
|
|
|
|
depends on PACKAGE_uhttpd-mod-tls
|
|
|
|
prompt "TLS Provider"
|
|
|
|
default PACKAGE_uhttpd-mod-tls_cyassl
|
|
|
|
|
|
|
|
config PACKAGE_uhttpd-mod-tls_cyassl
|
|
|
|
bool "CyaSSL"
|
|
|
|
|
|
|
|
config PACKAGE_uhttpd-mod-tls_openssl
|
|
|
|
bool "OpenSSL"
|
|
|
|
endchoice
|
|
|
|
endef
|
|
|
|
|
|
|
|
UHTTPD_TLS:=
|
|
|
|
TLS_CFLAGS:=
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_PACKAGE_uhttpd-mod-tls_cyassl),)
|
|
|
|
UHTTPD_TLS:=cyassl
|
|
|
|
TLS_CFLAGS:=-I$(STAGING_DIR)/usr/include/cyassl
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_PACKAGE_uhttpd-mod-tls_openssl),)
|
|
|
|
UHTTPD_TLS:=openssl
|
|
|
|
endif
|
|
|
|
|
2010-03-25 17:46:16 +02:00
|
|
|
|
|
|
|
define Package/uhttpd-mod-lua
|
|
|
|
$(Package/uhttpd/default)
|
|
|
|
TITLE+= (Lua plugin)
|
|
|
|
DEPENDS:=uhttpd +liblua
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-lua/description
|
|
|
|
The Lua plugin adds a CGI-like Lua runtime interface to uHTTPd.
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
2011-07-18 17:18:31 +03:00
|
|
|
TARGET_CFLAGS += $(TLS_CFLAGS)
|
2011-07-19 09:59:47 +03:00
|
|
|
MAKE_VARS += \
|
|
|
|
FPIC="$(FPIC)" \
|
|
|
|
LUA_SUPPORT="$(if $(CONFIG_PACKAGE_uhttpd-mod-lua),1)" \
|
|
|
|
TLS_SUPPORT="$(if $(CONFIG_PACKAGE_uhttpd-mod-tls),1)" \
|
|
|
|
UHTTPD_TLS="$(UHTTPD_TLS)"
|
2010-03-25 17:46:16 +02:00
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd/conffiles
|
|
|
|
/etc/config/uhttpd
|
2010-10-05 22:34:22 +03:00
|
|
|
/etc/uhttpd.crt
|
|
|
|
/etc/uhttpd.key
|
2010-03-25 17:46:16 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd/install
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/uhttpd.init $(1)/etc/init.d/uhttpd
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
|
|
$(INSTALL_CONF) ./files/uhttpd.config $(1)/etc/config/uhttpd
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uhttpd $(1)/usr/sbin/uhttpd
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-tls/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uhttpd_tls.so $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/uhttpd-mod-lua/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uhttpd_lua.so $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,uhttpd))
|
|
|
|
$(eval $(call BuildPackage,uhttpd-mod-tls))
|
|
|
|
$(eval $(call BuildPackage,uhttpd-mod-lua))
|