You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
5.2 KiB

  1. #
  2. # Copyright (C) 2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. # Warning by default OpenWrt does not have a root password which is necessery for NETCONF server.
  8. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=Netopeer2
  10. PKG_VERSION:=0.7-r2
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=https://codeload.github.com/CESNET/Netopeer2/tar.gz/v$(PKG_VERSION)?
  14. PKG_HASH:=59688271be4fecbbee671fc7eb3dc0538b13b4baab53e923e26eaeb33e6f7ec0
  15. PKG_MAINTAINER:=Mislav Novakovic <mislav.novakovic@sartura.hr>
  16. PKG_LICENSE:=BSD-3-Clause
  17. PKG_LICENSE_FILES:=LICENSE
  18. CMAKE_INSTALL:=1
  19. PKG_BUILD_PARALLEL:=1
  20. include $(INCLUDE_DIR)/package.mk
  21. include $(INCLUDE_DIR)/cmake.mk
  22. define Package/netopeer2-keystored/config
  23. source "$(SOURCE)/Config_keystored.in"
  24. endef
  25. define Package/netopeer2-server
  26. SECTION:=utils
  27. CATEGORY:=Utilities
  28. TITLE:=NETCONF server
  29. URL:=https://github.com/CESNET/Netopeer2
  30. DEPENDS:=+libcurl +libpthread +libyang +libnetconf2 +netopeer2-keystored +libsysrepo +sysrepocfg +sysrepoctl +sysrepo
  31. MENU:=1
  32. endef
  33. define Package/netopeer2-cli
  34. SECTION:=utils
  35. CATEGORY:=Utilities
  36. TITLE:=Netopeer2 cli tool
  37. URL:=https://github.com/CESNET/Netopeer2
  38. DEPENDS:=+libpthread +libyang +libnetconf2 +libopenssl
  39. endef
  40. define Package/netopeer2-keystored
  41. SECTION:=utils
  42. CATEGORY:=Utilities
  43. TITLE:=Netopeer2 key store management
  44. URL:=https://github.com/CESNET/Netopeer2
  45. DEPENDS:=+libopenssl +libsysrepo +sysrepo +sysrepocfg +sysrepoctl +SSH_KEYS:openssh-keygen
  46. MENU:=1
  47. endef
  48. define Package/netopeer2/description
  49. Netopeer2 is a set of tools implementing network configuration tools based on the NETCONF
  50. Protocol. This is the second generation of the toolset, originally available as the Netopeer
  51. project. Netopeer2 is based on the new generation of the NETCONF and YANG libraries -
  52. libyang and libnetconf2. The Netopeer server uses sysrepo as a NETCONF datastore implementation.
  53. endef
  54. CMAKE_OPTIONS += \
  55. -DKEYSTORED_KEYS_DIR:STRING=/etc/keystored/keys \
  56. -DENABLE_CONFIGURATION:BOOL=OFF \
  57. -DMODEL_INSTALL:BOOL=OFF \
  58. -DSSH_KEY_INSTALL:BOOL=OFF
  59. define Package/netopeer2-server/install
  60. $(INSTALL_DIR) $(1)/bin
  61. $(INSTALL_BIN) $(PKG_BUILD_DIR)/server/netopeer2-server $(1)/bin/
  62. $(INSTALL_DIR) $(1)/etc/sysrepo/yang
  63. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-ssh-server.yang $(1)/etc/sysrepo/yang/ietf-ssh-server@2016-11-02.yang
  64. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-tls-server.yang $(1)/etc/sysrepo/yang/ietf-tls-server@2016-11-02.yang
  65. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/iana-crypt-hash.yang $(1)/etc/sysrepo/yang/iana-crypt-hash@2014-08-06.yang
  66. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-x509-cert-to-name.yang $(1)/etc/sysrepo/yang/ietf-x509-cert-to-name@2014-12-10.yang
  67. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-netconf-server.yang $(1)/etc/sysrepo/yang/ietf-netconf-server@2016-11-02.yang
  68. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-netconf-monitoring.yang $(1)/etc/sysrepo/yang/ietf-netconf-monitoring@2010-10-04.yang
  69. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-netconf-with-defaults.yang $(1)/etc/sysrepo/yang/ietf-netconf-with-defaults@2011-06-01.yang
  70. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-system.yang $(1)/etc/sysrepo/yang/ietf-system@2014-08-06.yang
  71. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-datastores.yang $(1)/etc/sysrepo/yang/ietf-datastores@2017-08-17.yang
  72. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-yang-library.yang $(1)/etc/sysrepo/yang/ietf-yang-library@2018-01-17.yang
  73. $(INSTALL_DIR) $(1)/etc/uci-defaults
  74. $(INSTALL_BIN) ./files/netopeer2-server.default $(1)/etc/uci-defaults/98_netopeer2-server
  75. $(INSTALL_DIR) $(1)/etc/init.d/
  76. $(INSTALL_BIN) ./files/netopeer2-server.init $(1)/etc/init.d/netopeer2-server
  77. $(INSTALL_DIR) $(1)/usr/share/netopeer2-server
  78. $(INSTALL_DATA) ./files/stock_config.xml $(1)/usr/share/netopeer2-server
  79. endef
  80. define Package/netopeer2-cli/install
  81. $(INSTALL_DIR) $(1)/bin
  82. $(INSTALL_BIN) $(PKG_BUILD_DIR)/cli/netopeer2-cli $(1)/bin/
  83. endef
  84. define Package/netopeer2-keystored/install
  85. $(INSTALL_DIR) $(1)/usr/lib/sysrepo/plugins/
  86. $(INSTALL_BIN) $(PKG_BUILD_DIR)/keystored/libkeystored.so $(1)/usr/lib/sysrepo/plugins/
  87. $(INSTALL_DIR) $(1)/etc/sysrepo/yang
  88. $(INSTALL_DATA) $(PKG_BUILD_DIR)/modules/ietf-keystore.yang $(1)/etc/sysrepo/yang/ietf-keystore@2016-10-31.yang
  89. $(INSTALL_DIR) $(1)/etc/uci-defaults
  90. $(INSTALL_DIR) $(1)/etc/keystored/keys
  91. ifeq ($(CONFIG_SSH_KEYS),y)
  92. $(INSTALL_BIN) ./files/netopeer2-keystored-keygen.default $(1)/etc/uci-defaults/97_netopeer2-keystored
  93. else
  94. $(INSTALL_BIN) ./files/netopeer2-keystored.default $(1)/etc/uci-defaults/97_netopeer2-keystored
  95. #ssh key name is specified in ./files/stock_config.xml file, you will need to provide the ssh keys yourself.
  96. $(INSTALL_DATA) ./files/ssh_host_rsa_key.pem $(1)/etc/keystored/keys
  97. $(INSTALL_DATA) ./files/ssh_host_rsa_key.pub.pem $(1)/etc/keystored/keys
  98. endif
  99. $(INSTALL_DIR) $(1)/usr/share/netopeer2-keystored
  100. $(INSTALL_DATA) $(PKG_BUILD_DIR)/keystored/stock_key_config.xml $(1)/usr/share/netopeer2-keystored
  101. endef
  102. $(eval $(call BuildPackage,netopeer2-server))
  103. $(eval $(call BuildPackage,netopeer2-cli))
  104. $(eval $(call BuildPackage,netopeer2-keystored))