Revised Makefiles a bit
This commit is contained in:
parent
f541da8051
commit
9692e933ef
2 changed files with 33 additions and 9 deletions
|
@ -9,12 +9,12 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_BASENAME:=cyassl
|
PKG_BASENAME:=cyassl
|
||||||
PKG_NAME:=$(PKG_BASENAME)-luci
|
PKG_NAME:=$(PKG_BASENAME)-luci
|
||||||
PKG_VERSION:=1.1.0
|
PKG_VERSION:=1.2.0
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_BASENAME)-$(PKG_VERSION).zip
|
PKG_SOURCE:=$(PKG_BASENAME)-$(PKG_VERSION).zip
|
||||||
PKG_SOURCE_URL:=http://www.yassl.com/
|
PKG_SOURCE_URL:=http://www.yassl.com/
|
||||||
PKG_MD5SUM:=938341f20d7ddcba157c4ee5b00244d0
|
PKG_MD5SUM:=de12e76b3faf760107e45af487adcbde
|
||||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/$(PKG_BASENAME)-$(PKG_VERSION)
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/$(PKG_BASENAME)-$(PKG_VERSION)
|
||||||
PKG_UNPACK=unzip -d $(BUILD_DIR)/$(PKG_NAME) $(DL_DIR)/$(PKG_SOURCE)
|
PKG_UNPACK=unzip -d $(BUILD_DIR)/$(PKG_NAME) $(DL_DIR)/$(PKG_SOURCE)
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ define Package/libcyassl-luci
|
||||||
$(call Package/cyassl-luci/Default)
|
$(call Package/cyassl-luci/Default)
|
||||||
SECTION:=luci
|
SECTION:=luci
|
||||||
CATEGORY:=LuCI
|
CATEGORY:=LuCI
|
||||||
SUBMENU:=Libraries
|
SUBMENU:=Internal Libraries
|
||||||
TITLE+= (library)
|
TITLE+= (library)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
|
@ -60,10 +60,15 @@ define Package/luci/libtemplate
|
||||||
TITLE:=LuCI - Lua Configuration Interface
|
TITLE:=LuCI - Lua Configuration Interface
|
||||||
URL:=http://luci.freifunk-halle.net/
|
URL:=http://luci.freifunk-halle.net/
|
||||||
MAINTAINER:=Steven Barth <steven-at-midlink-dot-org>
|
MAINTAINER:=Steven Barth <steven-at-midlink-dot-org>
|
||||||
SUBMENU:=Libraries
|
SUBMENU:=Internal Libraries
|
||||||
DEPENDS:=+luci-core
|
DEPENDS:=+luci-core
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/luci/webservertemplate
|
||||||
|
$(call Package/luci/libtemplate)
|
||||||
|
SUBMENU:=Webserver
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/luci/fftemplate
|
define Package/luci/fftemplate
|
||||||
$(call Package/luci/libtemplate)
|
$(call Package/luci/libtemplate)
|
||||||
SUBMENU:=Freifunk
|
SUBMENU:=Freifunk
|
||||||
|
@ -82,6 +87,11 @@ define Package/luci/thtemplate
|
||||||
DEPENDS:=+luci-web
|
DEPENDS:=+luci-web
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/luci/maintemplate
|
||||||
|
$(call Package/luci/libtemplate)
|
||||||
|
SUBMENU:=
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/luci/webtemplate
|
define Package/luci/webtemplate
|
||||||
$(call Package/luci/libtemplate)
|
$(call Package/luci/libtemplate)
|
||||||
SUBMENU:=Components
|
SUBMENU:=Components
|
||||||
|
@ -253,8 +263,8 @@ endef
|
||||||
|
|
||||||
|
|
||||||
define Package/luci-lucid
|
define Package/luci-lucid
|
||||||
$(call Package/luci/libtemplate)
|
$(call Package/luci/webservertemplate)
|
||||||
TITLE:=LuCId Superserver
|
TITLE:=LuCId Full-Stack Webserver
|
||||||
DEPENDS+=+luci-nixio +luci-http +luci-px5g
|
DEPENDS+=+luci-nixio +luci-http +luci-px5g
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -331,7 +341,7 @@ define Package/luci-web
|
||||||
$(call Package/luci/libtemplate)
|
$(call Package/luci/libtemplate)
|
||||||
DEPENDS+=+luci-http +luci-sys +luci-uci +luci-lucid +luci-sgi-cgi +luci-lmo
|
DEPENDS+=+luci-http +luci-sys +luci-uci +luci-lucid +luci-sgi-cgi +luci-lmo
|
||||||
TITLE:=MVC Webframework
|
TITLE:=MVC Webframework
|
||||||
$(call Config,luci.main.lang,string,en,Default Language)
|
$(call Config,luci.main.lang,string,auto,Default Language)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/luci-web/conffiles
|
define Package/luci-web/conffiles
|
||||||
|
@ -393,6 +403,16 @@ define Package/luci-admin-core/install
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
||||||
|
define Package/luci-niu
|
||||||
|
$(call Package/luci/maintemplate)
|
||||||
|
DEPENDS+=+luci-admin-core @BROKEN
|
||||||
|
TITLE:=NIU - Next Generation Interface
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/luci-niu/install
|
||||||
|
$(call Package/luci/install/template,$(1),modules/niu)
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/luci-admin-mini
|
define Package/luci-admin-mini
|
||||||
$(call Package/luci/webtemplate)
|
$(call Package/luci/webtemplate)
|
||||||
DEPENDS+=+luci-admin-core
|
DEPENDS+=+luci-admin-core
|
||||||
|
@ -759,8 +779,8 @@ endef
|
||||||
### Server Gateway Interfaces ###
|
### Server Gateway Interfaces ###
|
||||||
|
|
||||||
define Package/luci-sgi-cgi
|
define Package/luci-sgi-cgi
|
||||||
$(call Package/luci/libtemplate)
|
$(call Package/luci/webservertemplate)
|
||||||
TITLE:=SGI for CGI
|
TITLE:=CGI Gateway behind existing Webserver
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/luci-sgi-cgi/install
|
define Package/luci-sgi-cgi/install
|
||||||
|
@ -1039,6 +1059,9 @@ endif
|
||||||
ifneq ($(CONFIG_PACKAGE_luci-admin-full),)
|
ifneq ($(CONFIG_PACKAGE_luci-admin-full),)
|
||||||
PKG_SELECTED_MODULES+=modules/admin-full
|
PKG_SELECTED_MODULES+=modules/admin-full
|
||||||
endif
|
endif
|
||||||
|
ifneq ($(CONFIG_PACKAGE_luci-niu),)
|
||||||
|
PKG_SELECTED_MODULES+=modules/niu
|
||||||
|
endif
|
||||||
ifneq ($(CONFIG_PACKAGE_luci-admin-rpc),)
|
ifneq ($(CONFIG_PACKAGE_luci-admin-rpc),)
|
||||||
PKG_SELECTED_MODULES+=modules/rpc
|
PKG_SELECTED_MODULES+=modules/rpc
|
||||||
endif
|
endif
|
||||||
|
@ -1230,6 +1253,7 @@ $(eval $(call BuildPackage,luci-uvl))
|
||||||
$(eval $(call BuildPackage,luci-admin-core))
|
$(eval $(call BuildPackage,luci-admin-core))
|
||||||
$(eval $(call BuildPackage,luci-admin-mini))
|
$(eval $(call BuildPackage,luci-admin-mini))
|
||||||
$(eval $(call BuildPackage,luci-admin-full))
|
$(eval $(call BuildPackage,luci-admin-full))
|
||||||
|
$(eval $(call BuildPackage,luci-niu))
|
||||||
$(eval $(call BuildPackage,luci-admin-rpc))
|
$(eval $(call BuildPackage,luci-admin-rpc))
|
||||||
$(eval $(call BuildPackage,luci-mod-freifunk))
|
$(eval $(call BuildPackage,luci-mod-freifunk))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue