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.

380 lines
11 KiB

  1. #
  2. # Copyright (C) 2006-2016 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. # No copyright by Harald Geyer as filling in a template doesn't constitute
  8. # an original work in the sense of copyright law.
  9. include $(TOPDIR)/rules.mk
  10. PKG_MAINTAINER:=Harald Geyer <harald@ccbib.org>
  11. PKG_NAME:=elektra
  12. PKG_LICENSE:=BSD-3-Clause
  13. PKG_LICENSE_FILES:=doc/COPYING
  14. PKG_VERSION:=0.8.17
  15. PKG_RELEASE:=1
  16. # Use this for official releasees
  17. PKG_MD5SUM:=e53efdb9a5e0852c58b21280b1e6c07d
  18. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  19. PKG_SOURCE_URL:=http://ftp.libelektra.org/ftp/elektra/releases
  20. # Use this to test versions still under development
  21. #PKG_SOURCE_PROTO:=git
  22. #PKG_SOURCE_URL:=https://github.com/ElektraInitiative/libelektra.git
  23. #PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  24. #PKG_SOURCE_VERSION:=e97efb29a94f3a49cb952d06552fcf53708ea8c7
  25. #PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.xz
  26. PKG_BUILD_DEPENDS:=elektra/host swig/host
  27. include $(INCLUDE_DIR)/package.mk
  28. include $(INCLUDE_DIR)/host-build.mk
  29. include $(INCLUDE_DIR)/cmake.mk
  30. define Package/libelektra/Default
  31. SECTION:=libs
  32. CATEGORY:=Libraries
  33. TITLE:=Elektra
  34. URL:=http://www.libelektra.org/
  35. SUBMENU:=libelektra
  36. endef
  37. define Package/libelektra/Default-description
  38. Elektra provides an universal and secure framework to store
  39. configuration parameters in a global, hierarchical key database.
  40. endef
  41. define Package/libelektra-core
  42. $(call Package/libelektra/Default)
  43. TITLE:=Elektra core library
  44. DEPENDS:=+libpthread
  45. endef
  46. define Package/libelektra-core/description
  47. $(call Package/libelektra/Default-description)
  48. This package contains the core libraries, that all other parts of
  49. elektra and all programs using elektra depend on, and an almost
  50. minimal set of plugins to be actually useful.
  51. endef
  52. define Package/elektra-kdb
  53. SECTION:=utils
  54. CATEGORY:=Utilities
  55. TITLE:=Elektra kdb tool
  56. URL:=http://www.libelektra.org/
  57. DEPENDS:=+libelektra-core +libstdcpp
  58. endef
  59. define Package/elektra-kdb/description
  60. $(call Package/libelektra/Default-description)
  61. This package contains the kdb tool, which allows to access and change
  62. the content of the key database from the shell.
  63. endef
  64. define Package/libelektra-resolvers
  65. $(call Package/libelektra/Default)
  66. TITLE:=Elektra additional resolvers
  67. DEPENDS:=+libelektra-core +libpthread
  68. endef
  69. define Package/libelektra-resolvers/description
  70. $(call Package/libelektra/Default-description)
  71. This package contains additional resolvers not included in the
  72. libelektra-core package. Usually there is no reason to install this.
  73. endef
  74. define Package/libelektra-plugins
  75. $(call Package/libelektra/Default)
  76. TITLE:=Useful elektra plugins
  77. DEPENDS:=+libelektra-core
  78. endef
  79. define CONTENT_ELEKTRA_PLUGINS_TEXT
  80. cachefilter ccode conditionals csvstorage curlget enum filecheck glob
  81. hexcode hidden hosts iconv keytometa line lineendings list mathcheck
  82. network null path profile shell syslog uname validation
  83. endef
  84. CONTENT_ELEKTRA_PLUGINS = $(strip $(CONTENT_ELEKTRA_PLUGINS_TEXT))
  85. define Package/libelektra-plugins/description
  86. $(call Package/libelektra/Default-description)
  87. This package contains plugins for various common configuration file
  88. format and optional features without heavy dependencies. Currently
  89. these plugins are included:
  90. $(CONTENT_ELEKTRA_PLUGINS_TEXT)
  91. endef
  92. define Package/libelektra-cpp
  93. $(call Package/libelektra/Default)
  94. TITLE:=Elektra plugins depending on libstdcpp
  95. DEPENDS:=+libelektra-core +libstdcpp
  96. endef
  97. CONTENT_ELEKTRA_CPP=dump regexstore struct type
  98. define Package/libelektra-cpp/description
  99. $(call Package/libelektra/Default-description)
  100. This package contains plugins written in C++.
  101. Currently these are:
  102. $(CONTENT_ELEKTRA_CPP)
  103. endef
  104. define Package/libelektra-boost
  105. $(call Package/libelektra/Default)
  106. TITLE:=Elektra plugins depending on boost
  107. DEPENDS:=+libelektra-core +libstdcpp +boost
  108. endef
  109. define Package/libelektra-boost/description
  110. $(call Package/libelektra/Default-description)
  111. This package contains plugins written in C++ with an dependency on
  112. boost. Currently this is a plugin for a tcl like format.
  113. endef
  114. define Package/libelektra-crypto
  115. $(call Package/libelektra/Default)
  116. TITLE:=Elektra crypto plugin
  117. DEPENDS:=+libelektra-core +libopenssl
  118. endef
  119. define Package/libelektra-crypto/description
  120. $(call Package/libelektra/Default-description)
  121. This package contains support for encrypting values before storage.
  122. endef
  123. define Package/libelektra-dbus
  124. $(call Package/libelektra/Default)
  125. TITLE:=Elektra dbus plugin
  126. DEPENDS:=+libelektra-core +libdbus
  127. endef
  128. define Package/libelektra-dbus/description
  129. $(call Package/libelektra/Default-description)
  130. This package contains support for dbus notification on configuration
  131. changes.
  132. endef
  133. define Package/libelektra-xml
  134. $(call Package/libelektra/Default)
  135. TITLE:=Elektra xmltool plugin
  136. DEPENDS:=+libelektra-core +libxml2
  137. endef
  138. define Package/libelektra-xml/description
  139. $(call Package/libelektra/Default-description)
  140. This package contains a plugin for storing data with xml syntax.
  141. endef
  142. define Package/libelektra-yajl
  143. $(call Package/libelektra/Default)
  144. TITLE:=Elektra yajl (json) plugin
  145. DEPENDS:=+libelektra-core +yajl
  146. endef
  147. define Package/libelektra-yajl/description
  148. $(call Package/libelektra/Default-description)
  149. This package contains support for storing the key database as json files.
  150. endef
  151. define Package/libelektra-python2
  152. $(call Package/libelektra/Default)
  153. TITLE:=Elektra python2 plugin
  154. DEPENDS:=+libelektra-core +python-light +libstdcpp
  155. endef
  156. define Package/libelektra-python2/description
  157. $(call Package/libelektra/Default-description)
  158. This package adds python2 support to elektra.
  159. endef
  160. define Package/libelektra-python3
  161. $(call Package/libelektra/Default)
  162. TITLE:=Elektra python3 plugin
  163. DEPENDS:=+libelektra-core +python3-light +libstdcpp
  164. endef
  165. define Package/libelektra-python3/description
  166. $(call Package/libelektra/Default-description)
  167. This package adds python3 support to elektra.
  168. endef
  169. define Package/libelektra-lua
  170. $(call Package/libelektra/Default)
  171. TITLE:=Elektra lua plugin
  172. DEPENDS:=+libelektra-core +lua +libstdcpp
  173. endef
  174. define Package/libelektra-lua/description
  175. $(call Package/libelektra/Default-description)
  176. This package adds lua support to elektra.
  177. endef
  178. define Package/libelektra-extra
  179. $(call Package/libelektra/Default)
  180. TITLE:=Additional elektra plugins
  181. DEPENDS:=+libelektra-core
  182. endef
  183. CONTENT_ELEKTRA_EXTRA:=constants counter dpkg error fstab logchange rename timeofday tracer
  184. define Package/libelektra-extra/description
  185. $(call Package/libelektra/Default-description)
  186. This package contains extra plugins that are only useful for debugging
  187. or as an example of what can be done. Currently this includes:
  188. $(CONTENT_ELEKTRA_EXTRA)
  189. endef
  190. CMAKE_OPTIONS = \
  191. -DTARGET_PLUGIN_FOLDER="" \
  192. -DBUILD_FULL=OFF \
  193. -DBUILD_STATIC=OFF \
  194. -DBUILD_DOCUMENTATION=OFF \
  195. -DFORCE_IN_SOURCE_BUILD=ON \
  196. -DBUILD_TESTING=OFF \
  197. -DKDB_DEFAULT_RESOLVER=resolver_fm_pb_b \
  198. -DKDB_DEFAULT_STORAGE=ini \
  199. -DPLUGINS="ALL"
  200. CMAKE_HOST_OPTIONS = \
  201. -DCMAKE_SKIP_RPATH=FALSE \
  202. -DCMAKE_INSTALL_RPATH=$(STAGING_DIR_HOST)/lib/ \
  203. -DINSTALL_BUILD_TOOLS=ON \
  204. -DBUILD_STATIC=OFF \
  205. -DBUILD_DOCUMENTATION=OFF \
  206. -DINSTALL_SYSTEM_FILES=OFF \
  207. -DFORCE_IN_SOURCE_BUILD=ON \
  208. -DBUILD_TESTING=OFF \
  209. -DPLUGINS="ALL;-python2;-python" \
  210. -DTOOLS="gen;kdb"
  211. define Package/libelektra-core/install
  212. $(INSTALL_DIR) $(1)/etc/kdb/
  213. $(INSTALL_DIR) $(1)/usr/lib/
  214. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra.so* $(1)/usr/lib/
  215. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-core.so* $(1)/usr/lib/
  216. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-ease.so* $(1)/usr/lib/
  217. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-kdb.so* $(1)/usr/lib/
  218. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-meta.so* $(1)/usr/lib/
  219. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-plugin.so* $(1)/usr/lib/
  220. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-proposal.so* $(1)/usr/lib/
  221. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-resolver_fm_pb_b.so $(1)/usr/lib/
  222. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-ni.so $(1)/usr/lib/
  223. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-ini.so $(1)/usr/lib/
  224. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-sync.so $(1)/usr/lib/
  225. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-storage.so $(1)/usr/lib/
  226. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-resolver.so $(1)/usr/lib/
  227. endef
  228. define Package/elektra-kdb/install
  229. $(INSTALL_DIR) $(1)/usr/bin/
  230. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/kdb $(1)/usr/bin
  231. $(INSTALL_DIR) $(1)/usr/lib/elektra/
  232. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektratools* $(1)/usr/lib/
  233. $(CP) $(PKG_INSTALL_DIR)/usr/lib/elektra/tool_exec/ $(1)/usr/lib/elektra/
  234. endef
  235. define Package/libelektra-resolvers/install
  236. $(INSTALL_DIR) $(1)/usr/lib/
  237. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-resolver_* $(1)/usr/lib/
  238. rm -f $(1)/usr/lib/libelektra-resolver_fm_pb_b.so
  239. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-wresolver.so $(1)/usr/lib/
  240. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-noresolver.so $(1)/usr/lib/
  241. endef
  242. define Package/libelektra-plugins/install
  243. $(INSTALL_DIR) $(1)/usr/lib/
  244. $(foreach plugin,$(CONTENT_ELEKTRA_PLUGINS),$(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-$(plugin).so $(1)/usr/lib/;)
  245. endef
  246. define Package/libelektra-boost/install
  247. $(INSTALL_DIR) $(1)/usr/lib/
  248. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-tcl.so $(1)/usr/lib/
  249. endef
  250. define Package/libelektra-cpp/install
  251. $(INSTALL_DIR) $(1)/usr/lib/
  252. $(CP) $(foreach plugin,$(CONTENT_ELEKTRA_CPP),$(PKG_INSTALL_DIR)/usr/lib/libelektra-$(plugin).so) $(1)/usr/lib/
  253. endef
  254. define Package/libelektra-crypto/install
  255. $(INSTALL_DIR) $(1)/usr/lib/
  256. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-crypto_openssl.so $(1)/usr/lib/
  257. endef
  258. define Package/libelektra-dbus/install
  259. $(INSTALL_DIR) $(1)/usr/lib/
  260. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-dbus.so $(1)/usr/lib/
  261. endef
  262. define Package/libelektra-xml/install
  263. $(INSTALL_DIR) $(1)/usr/lib/
  264. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-xmltool.so $(1)/usr/lib/
  265. endef
  266. define Package/libelektra-yajl/install
  267. $(INSTALL_DIR) $(1)/usr/lib/
  268. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-yajl.so $(1)/usr/lib/
  269. endef
  270. define Package/libelektra-python2/install
  271. $(INSTALL_DIR) $(1)/usr/lib/
  272. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-python2.so $(1)/usr/lib/
  273. endef
  274. define Package/libelektra-python3/install
  275. $(INSTALL_DIR) $(1)/usr/lib/
  276. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-python.so $(1)/usr/lib/
  277. endef
  278. define Package/libelektra-lua/install
  279. $(INSTALL_DIR) $(1)/usr/lib/
  280. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libelektra-lua.so $(1)/usr/lib/
  281. endef
  282. define Package/libelektra-extra/install
  283. $(INSTALL_DIR) $(1)/usr/lib/
  284. $(CP) $(foreach plugin,$(CONTENT_ELEKTRA_EXTRA),$(PKG_INSTALL_DIR)/usr/lib/libelektra-$(plugin).so) $(1)/usr/lib/
  285. endef
  286. define Build/InstallDev
  287. $(INSTALL_DIR) $(1)/usr/include/elektra/
  288. $(CP) $(PKG_INSTALL_DIR)/usr/include/elektra/* $(1)/usr/include/elektra/
  289. $(INSTALL_DIR) $(1)/usr/lib/
  290. $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
  291. endef
  292. $(eval $(call HostBuild))
  293. $(eval $(call BuildPackage,libelektra-core))
  294. $(eval $(call BuildPackage,elektra-kdb))
  295. $(eval $(call BuildPackage,libelektra-resolvers))
  296. $(eval $(call BuildPackage,libelektra-plugins))
  297. $(eval $(call BuildPackage,libelektra-boost))
  298. $(eval $(call BuildPackage,libelektra-cpp))
  299. $(eval $(call BuildPackage,libelektra-crypto))
  300. $(eval $(call BuildPackage,libelektra-dbus))
  301. $(eval $(call BuildPackage,libelektra-xml))
  302. $(eval $(call BuildPackage,libelektra-yajl))
  303. $(eval $(call BuildPackage,libelektra-python2))
  304. $(eval $(call BuildPackage,libelektra-python3))
  305. $(eval $(call BuildPackage,libelektra-lua))
  306. $(eval $(call BuildPackage,libelektra-extra))