diff options
author | Steven Barth <steven@midlink.org> | 2009-06-06 20:34:47 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-06-06 20:34:47 +0000 |
commit | 0bf57f624564bae569dc49d243ad069f802d3127 (patch) | |
tree | 7e6849b1fe704ac3193138f10eb7c93a54b6fda7 /contrib | |
parent | 4d4f8f4d79577d0962e0b76db98d67865b69e6a0 (diff) |
Add PX5G Keymaster
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/package/luci/Makefile | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 872f0cc60..7303c0302 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -233,7 +233,7 @@ endef define Package/luci-lucid $(call Package/luci/libtemplate) TITLE:=LuCId Superserver - DEPENDS+=+luci-nixio +luci-http + DEPENDS+=+luci-nixio +luci-http +luci-px5g endef define Package/luci-lucid/install @@ -283,6 +283,18 @@ ifneq ($(CONFIG_PACKAGE_luci-nixio_cyassl),) NIXIO_TLS:=cyassl endif + +define Package/luci-px5g + $(call Package/luci/libtemplate) + TITLE:=PX5G RSA Keymaster + DEPENDS:=+luci-nixio +endef + +define Package/luci-px5g/install + $(call Package/luci/install/template,$(1),libs/px5g) +endef + + define Package/luci-sys $(call Package/luci/libtemplate) TITLE:=LuCI Linux/POSIX system library @@ -889,6 +901,9 @@ endif ifneq ($(CONFIG_PACKAGE_luci-nixio),) PKG_SELECTED_MODULES+=libs/nixio endif +ifneq ($(CONFIG_PACKAGE_luci-px5g),) + PKG_SELECTED_MODULES+=libs/px5g +endif ifneq ($(CONFIG_PACKAGE_luci-uci),) PKG_SELECTED_MODULES+=libs/uci endif @@ -1077,6 +1092,7 @@ $(eval $(call BuildPackage,luci-json)) $(eval $(call BuildPackage,luci-luanet)) $(eval $(call BuildPackage,luci-lucid)) $(eval $(call BuildPackage,luci-nixio)) +$(eval $(call BuildPackage,luci-px5g)) $(eval $(call BuildPackage,luci-uci)) $(eval $(call BuildPackage,luci-sys)) $(eval $(call BuildPackage,luci-web)) |