diff options
author | Steven Barth <steven@midlink.org> | 2008-07-17 21:01:15 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-07-17 21:01:15 +0000 |
commit | fce0b845018c80410fc315a8046588709ac2861e (patch) | |
tree | 5689e729d1046a349996baa5b0a1c828a3856fec /contrib | |
parent | 43b995148183a350c8d8af0dd202ad9dcc9fd8c9 (diff) |
Added new application luci-ntpc to luci-full and luci-mini
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/package/luci/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 062e14c72..444c473f5 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -411,6 +411,7 @@ define Package/luci-app-statistics/install $(call Package/luci/install/template,$(1),applications/luci-statistics) endef + define Package/luci-app-upnp $(call Package/luci/webtemplate) DEPENDS+=+luci-mod-admin-core +miniupnpd @@ -422,6 +423,17 @@ define Package/luci-app-upnp/install endef +define Package/luci-app-ntpc + $(call Package/luci/webtemplate) + DEPENDS+=+luci-mod-admin-core +ntpclient + TITLE:=NTP time synchronisation client configuration +endef + +define Package/luci-app-ntpc/install + $(call Package/luci/install/template,$(1),applications/luci-ntpc) +endef + + ### Server Gateway Interfaces ### define Package/luci-sgi-cgi @@ -579,6 +591,9 @@ 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-sgi-cgi),) PKG_SELECTED_MODULES+=libs/sgi-cgi @@ -644,6 +659,7 @@ $(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-sgi-cgi)) $(eval $(call BuildPackage,luci-sgi-luci)) |