X-Git-Url: http://git.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=contrib%2Fpackage%2Fluci%2FMakefile;h=268048f4578233b62816e78fb50e2f5347bfb22c;hp=8ae97fcf15fa63ed96ebe9d2d9c043cea9b649c9;hb=5c419acf926b7332976c6a5c1586d2badf9664ae;hpb=52d49762ed28033d82e5ab1e0ccf65ad74a4b593 diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 8ae97fcf15..268048f457 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -412,6 +412,39 @@ define Package/luci-app-statistics/install endef +define Package/luci-app-upnp + $(call Package/luci/webtemplate) + DEPENDS+=+luci-mod-admin-core +miniupnpd + TITLE:=Universal Plug & Play configuration module +endef + +define Package/luci-app-upnp/install + $(call Package/luci/install/template,$(1),applications/luci-upnp) +endef + + +define Package/luci-app-ntpc + $(call Package/luci/webtemplate) + DEPENDS+=+luci-mod-admin-core +ntpclient + TITLE:=NTP time synchronisation client configuration module +endef + +define Package/luci-app-ntpc/install + $(call Package/luci/install/template,$(1),applications/luci-ntpc) +endef + + +define Package/luci-app-ddns + $(call Package/luci/webtemplate) + DEPENDS+=+luci-mod-admin-core +ddns-scripts + TITLE:=Dynamic DNS configuration module +endef + +define Package/luci-app-ddns/install + $(call Package/luci/install/template,$(1),applications/luci-ddns) +endef + + ### Server Gateway Interfaces ### define Package/luci-sgi-cgi @@ -566,6 +599,15 @@ endif ifneq ($(CONFIG_PACKAGE_luci-app-statistics),) PKG_SELECTED_MODULES+=applications/luci-statistics endif +ifneq ($(CONFIG_PACKAGE_luci-app-upnp),) + PKG_SELECTED_MODULES+=applications/luci-upnp +endif +ifneq ($(CONFIG_PACKAGE_luci-app-ntpc),) + PKG_SELECTED_MODULES+=applications/luci-ntpc +endif +ifneq ($(CONFIG_PACKAGE_luci-app-ddns),) + PKG_SELECTED_MODULES+=applications/luci-ddns +endif ifneq ($(CONFIG_PACKAGE_luci-sgi-cgi),) PKG_SELECTED_MODULES+=libs/sgi-cgi @@ -630,6 +672,9 @@ $(eval $(call BuildPackage,luci-app-olsr)) $(eval $(call BuildPackage,luci-app-qos)) $(eval $(call BuildPackage,luci-app-splash)) $(eval $(call BuildPackage,luci-app-statistics)) +$(eval $(call BuildPackage,luci-app-upnp)) +$(eval $(call BuildPackage,luci-app-ntpc)) +$(eval $(call BuildPackage,luci-app-ddns)) $(eval $(call BuildPackage,luci-sgi-cgi)) $(eval $(call BuildPackage,luci-sgi-luci))