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.

434 lines
14 KiB

  1. #
  2. # Copyright (C) 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. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=gnunet
  9. PKG_SOURCE_VERSION:=37051
  10. PKG_VERSION:=0.10.1-svn$(PKG_SOURCE_VERSION)
  11. PKG_RELEASE:=2
  12. # ToDo:
  13. # - break-out {peer,name,data}store for each backend
  14. # - package testing stuff
  15. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  16. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  17. PKG_SOURCE_URL:=https://gnunet.org/svn/gnunet/
  18. PKG_SOURCE_PROTO:=svn
  19. PKG_LICENSE:=GPL-3.0
  20. PKG_LICENSE_FILES:=COPYING
  21. PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
  22. PKG_BUILD_PARALLEL:=1
  23. PKG_FIXUP:=gettext-version
  24. PKG_INSTALL:=1
  25. include $(INCLUDE_DIR)/package.mk
  26. include $(INCLUDE_DIR)/nls.mk
  27. CONFIGURE_ARGS+= \
  28. --with-libiconv-prefix="$(ICONV_PREFIX)" \
  29. --with-libintl-prefix="$(INTL_PREFIX)" \
  30. --with-ltdl \
  31. $(if $(CONFIG_PACKAGE_$(PKG_NAME)-mysql),--with-mysql="$(STAGING_DIR)/usr",--without-mysql) \
  32. $(if $(CONFIG_PACKAGE_$(PKG_NAME)-pgsql),--with-postgresql="$(STAGING_DIR)/usr/bin/pg_config",--without-postgresql) \
  33. $(if $(CONFIG_PACKAGE_$(PKG_NAME)-sqlite),--with-sqlite="$(STAGING_DIR)/usr",--without-sqlite) \
  34. --enable-experimental \
  35. --with-extractor=$(STAGING_DIR)/usr \
  36. --with-gnutls=$(STAGING_DIR)/usr \
  37. --with-libgnurl=$(STAGING_DIR)/usr \
  38. --with-libunistring-prefix=$(STAGING_DIR)/usr \
  39. --with-microhttpd=$(STAGING_DIR)/usr
  40. # ToDo: request upstream to provide --with-pulseaudio=...
  41. TARGET_LDFLAGS+= -Wl,-rpath-link=$(STAGING_DIR)/usr/lib/pulseaudio
  42. define Package/gnunet/Default
  43. SECTION:=net
  44. CATEGORY:=Network
  45. TITLE:=GNUnet
  46. URL:=https://www.gnunet.org/
  47. endef
  48. define Package/gnunet
  49. $(call Package/gnunet/Default)
  50. TITLE+= - a peer-to-peer framework focusing on security
  51. DEPENDS:=+ca-certificates +libgnurl +libgnutls +libidn +libltdl \
  52. +libmicrohttpd +libunistring +librt $(ICONV_DEPENDS) $(INTL_DEPENDS)
  53. USERID:=gnunet=400:gnunet=400
  54. MENU:=1
  55. endef
  56. define Package/gnunet/description
  57. GNUnet is a peer-to-peer framework focusing on security. The first and
  58. primary application for GNUnet is anonymous file-sharing. GNUnet is
  59. currently developed by a worldwide group of independent free software
  60. developers. GNUnet is a GNU package (http://www.gnu.org/).
  61. This is an ALPHA release. There are known and significant bugs as
  62. well as many missing features in this release.
  63. This package provides the core components of GNUnet including the
  64. CADET routing engine, a DHT implementation and basic transports as
  65. well as their helpers.
  66. endef
  67. define BuildComponent
  68. define Package/gnunet-$(1)
  69. $$(call Package/gnunet/Default)
  70. TITLE+= $(2)
  71. DEPENDS:=gnunet $(DEPENDS_$(1))
  72. $(if $(3),DEFAULT:=y if PACKAGE_gnunet)
  73. $(if $(USERID_$(1)),USERID:=$(USERID_$(1)))
  74. endef
  75. define Package/gnunet-$(1)/install
  76. ( if [ "$(BIN_$(1))" ]; then \
  77. $(INSTALL_DIR) $$(1)/usr/bin ; \
  78. for bin in $(BIN_$(1)); do \
  79. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gnunet-$$$$$$$$bin $$(1)/usr/bin/ ; \
  80. done \
  81. fi )
  82. ( if [ "$(LIB_$(1))" ]; then \
  83. $(INSTALL_DIR) $$(1)/usr/lib ; \
  84. for lib in $(LIB_$(1)); do \
  85. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgnunet$$$$$$$$lib.so* $$(1)/usr/lib/ ; \
  86. done \
  87. fi )
  88. ( if [ "$(PLUGIN_$(1))" ]; then \
  89. $(INSTALL_DIR) $$(1)/usr/lib/gnunet ; \
  90. for plug in $(PLUGIN_$(1)); do \
  91. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/gnunet/libgnunet_plugin_$$$$$$$$plug*.so $$(1)/usr/lib/gnunet ; \
  92. done \
  93. fi )
  94. ( if [ "$(LIBEXEC_$(1))" ]; then \
  95. $(INSTALL_DIR) $$(1)/usr/lib/gnunet/libexec ; \
  96. for lex in $(LIBEXEC_$(1)); do \
  97. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/gnunet/libexec/gnunet-$$$$$$$$lex $$(1)/usr/lib/gnunet/libexec ; \
  98. done \
  99. fi )
  100. ( if [ "$(CONF_$(1))" ]; then \
  101. $(INSTALL_DIR) $$(1)/usr/share/gnunet/config.d ; \
  102. for conf in $(CONF_$(1)); do \
  103. $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/gnunet/config.d/$$$$$$$$conf.conf $$(1)/usr/share/gnunet/config.d ; \
  104. done \
  105. fi )
  106. endef
  107. $$(eval $$(call BuildPackage,gnunet-$(1)))
  108. endef
  109. define Package/gnunet/install
  110. $(INSTALL_DIR) $(1)/usr/bin $(1)/usr/lib/gnunet/libexec
  111. $(INSTALL_DIR) $(1)/usr/share/gnunet/config.d $(1)/usr/share/gnunet/hellos
  112. ( for bin in arm ats cadet core config ecc identity nat nat-server nse \
  113. peerinfo revocation scalarproduct statistics transport uri; do \
  114. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gnunet-$$$$bin $(1)/usr/bin/ ; \
  115. done )
  116. ( for lib in arm ats block cadet core datacache dht \
  117. dns dnsparser dnsstub fragmentation friends hello identity nat nse \
  118. peerinfo regexblock regex revocation scalarproduct set \
  119. statistics transport util; do \
  120. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgnunet$$$$lib.so* $(1)/usr/lib/ ; \
  121. done )
  122. ( for plug in ats_proportional block_dht block_regex datacache_heap \
  123. transport_tcp transport_udp transport_unix; do \
  124. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/gnunet/libgnunet_plugin_$$$$plug*.so $(1)/usr/lib/gnunet ; \
  125. done )
  126. ( for lex in daemon-hostlist daemon-topology helper-nat-client \
  127. helper-nat-server service-arm service-ats service-cadet \
  128. service-core service-dht service-identity service-nse \
  129. service-peerinfo service-regex \
  130. service-revocation service-scalarproduct-alice \
  131. service-scalarproduct-bob service-scalarproduct-ecc-alice \
  132. service-scalarproduct-ecc-bob service-set service-statistics \
  133. service-transport; do \
  134. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/gnunet/libexec/gnunet-$$$$lex $(1)/usr/lib/gnunet/libexec ; \
  135. done )
  136. ( for conf in arm ats cadet core datacache dht hostlist identity \
  137. nat nse peerinfo regex revocation scalarproduct \
  138. set statistics topology transport util; do \
  139. $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/gnunet/config.d/$$$$conf.conf $(1)/usr/share/gnunet/config.d ; \
  140. done )
  141. $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/gnunet/hellos/* $(1)/usr/share/gnunet/hellos
  142. $(INSTALL_DIR) $(1)/etc/init.d
  143. $(INSTALL_BIN) ./files/gnunet.init $(1)/etc/init.d/gnunet
  144. $(INSTALL_DIR) $(1)/lib/upgrade/keep.d
  145. $(INSTALL_DATA) ./files/gnunet.upgrade $(1)/lib/upgrade/keep.d/gnunet
  146. $(INSTALL_DIR) $(1)/etc/uci-defaults
  147. $(INSTALL_BIN) ./files/gnunet.defaults $(1)/etc/uci-defaults/gnunet
  148. $(INSTALL_BIN) ./files/gnunet-dns.fw $(1)/usr/lib/gnunet/libexec/gnunet-dns.fw
  149. $(INSTALL_BIN) ./files/gnunet-proto.sh $(1)/lib/netifd/proto
  150. endef
  151. define Package/gnunet/conffiles
  152. /etc/config/gnunet
  153. endef
  154. define Build/InstallDev
  155. $(INSTALL_DIR) $(1)/usr/include/gnunet $(1)/usr/lib/pkgconfig
  156. $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.{la,so}* $(1)/usr/lib/
  157. $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc $(1)/usr/lib/pkgconfig
  158. $(CP) $(PKG_INSTALL_DIR)/usr/include/gnunet/*.h $(1)/usr/include/gnunet
  159. endef
  160. DEPENDS_conversation:=+gnunet-gns +libgst1app +libgst1audio +libgstreamer1 +glib2 +pulseaudio-daemon +libopus +libogg
  161. BIN_conversation:=conversation conversation-test
  162. LIB_conversation:=conversation microphone speaker
  163. PLUGIN_conversation:=gnsrecord_conversation
  164. LIBEXEC_conversation:=helper-audio-playback helper-audio-record service-conversation
  165. CONF_conversation:=conversation
  166. DEPENDS_transport-http_client:=+libgnurl
  167. PLUGIN_transport-http_client:=transport_http_client transport_https_client
  168. DEPENDS_transport-http_server:=+libmicrohttpd
  169. PLUGIN_transport-http_server:=transport_http_server transport_https_server
  170. PLUGIN_transport-wlan:=transport_wlan
  171. LIBEXEC_transport-wlan:=helper-transport-wlan
  172. DEPENDS_experiments:=+libglpk
  173. PLUGIN_experiments:=ats_mlp ats_ril
  174. LIBEXEC_experiments:=service-dht-whanau service-dht-xvine
  175. # BIN_dv:=dv
  176. LIB_dv:=dv
  177. PLUGIN_dv:=transport_dv
  178. LIBEXEC_dv:=service-dv
  179. CONF_dv:=dv
  180. DEPENDS_fs:=+gnunet-datastore +gnunet-peerstore +libextractor
  181. BIN_fs:=auto-share directory download download-manager.scm fs publish unindex search
  182. LIB_fs:=fs
  183. PLUGIN_fs:=block_fs
  184. LIBEXEC_fs:=helper-fs-publish service-fs
  185. CONF_fs:=fs
  186. DEPENDS_gns:=+gnunet-vpn +iptables-mod-extra
  187. USERID_gns:=gnunet=400:gnunetdns=401
  188. BIN_gns:=gns gns-import.sh namecache namestore resolver
  189. LIB_gns:=gns gnsrecord namecache namestore
  190. PLUGIN_gns:=block_dns block_gns gnsrecord_dns gnsrecord_gns
  191. LIBEXEC_gns:=dns2gns gns-proxy helper-dns namestore-fcfsd service-dns service-gns service-namecache service-namestore service-resolver
  192. CONF_gns:=dns gns namecache namestore resolver
  193. DEPENDS_datastore:=+gnunet-gns +libsqlite3
  194. BIN_datastore:=datastore
  195. LIB_datastore:=datastore
  196. PLUGIN_datastore:=datastore_heap
  197. LIBEXEC_datastore:=daemon-latency-logger service-datastore
  198. CONF_datastore:=datastore
  199. BIN_peerstore:=peerstore
  200. LIB_peerstore:=peerstore
  201. LIBEXEC_peerstore:=service-peerstore
  202. CONF_peerstore:=peerstore
  203. DEPENDS_flat:=+gnunet-gns
  204. PLUGIN_flat:=namecache_flat namestore_flat
  205. DEPENDS_mysql:=+gnunet-gns +gnunet-datastore +libmysqlclient
  206. LIB_mysql:=mysql
  207. PLUGIN_mysql:=datastore_mysql
  208. DEPENDS_pgsql:=+gnunet-gns +gnunet-datastore +libpq
  209. LIB_pgsql:=postgres pq
  210. PLUGIN_pgsql:=datacache_postgres datastore_postgres namecache_postgres namestore_postgres
  211. DEPENDS_rest:=+gnunet-gns +gnunet-social +jansson
  212. LIB_rest:=rest
  213. PLUGIN_rest:=rest_gns rest_identity rest_identity_provider rest_namestore
  214. LIBEXEC_rest:=rest-server
  215. CONF_rest:=rest
  216. BIN_rps:=rps
  217. LIB_rps:=rps
  218. LIBEXEC_rps:=service-rps
  219. CONF_rps:=rps
  220. DEPENDS_social:=+gnunet-sqlite +jansson
  221. BIN_social:=identity-token multicast
  222. LIB_social:=consensus identityprovider multicast psyc psycstore psycutil secretsharing social
  223. PLUGIN_social:=psycstore_sqlite
  224. LIBEXEC_social:=service-consensus service-evil-consensus service-identity-provider service-multicast service-psyc service-psycstore service-secretsharing service-social
  225. CONF_social:=consensus multicast psyc psycstore secretsharing social
  226. DEPENDS_sqlite:=+gnunet-gns +gnunet-datastore +gnunet-peerstore +libsqlite3
  227. PLUGIN_sqlite:=datacache_sqlite datastore_sqlite namecache_sqlite namestore_sqlite peerstore_sqlite
  228. DEPENDS_transport-bluetooth:=+bluez-libs
  229. PLUGIN_transport-bluetooth:=transport_bluetooth
  230. LIBEXEC_transport-bluetooth:=helper-transport-bluetooth
  231. DEPENDS_utils:=+certtool +openssl-util
  232. BIN_utils:=gns-proxy-setup-ca transport-certificate-creation scrypt
  233. DEPENDS_vpn:=+kmod-tun +iptables
  234. BIN_vpn:=vpn
  235. LIB_vpn:=tun vpn
  236. LIBEXEC_vpn:=daemon-exit daemon-pt helper-exit helper-vpn service-vpn
  237. CONF_vpn:=exit pt vpn
  238. define PostInstFixSUIDPerms
  239. define Package/$(1)/postinst
  240. #!/bin/sh
  241. [ -e /usr/share/gnunet/.permfix ] && rm /usr/share/gnunet/.permfix
  242. endef
  243. endef
  244. define Package/gnunet-gns/postinst
  245. #!/bin/sh
  246. [ -e /usr/share/gnunet/.permfix ] && rm /usr/share/gnunet/.permfix
  247. uci -q batch <<EOF
  248. del network.gnunetdns
  249. set network.gnunetdns=interface
  250. set network.gnunetdns.ifname='gnunet-dns'
  251. set network.gnunetdns.proto='gnunet'
  252. del network.gndnsrtt
  253. set network.gndnsrtt=route
  254. set network.gndnsrtt.interface='gnunetdns'
  255. set network.gndnsrtt.table='53'
  256. set network.gndnsrtt.target='0.0.0.0/0'
  257. del network.gndnsrl
  258. set network.gndnsrl=rule
  259. set network.gndnsrl.mark='0x8260035'
  260. set network.gndnsrl.lookup='53'
  261. commit network
  262. del firewall.gnunetdns
  263. set firewall.gnunetdns=zone
  264. set firewall.gnunetdns.name='gnunetdns'
  265. set firewall.gnunetdns.network='gnunetdns'
  266. set firewall.gnunetdns.input='ACCEPT'
  267. set firewall.gnunetdns.output='ACCEPT'
  268. set firewall.gnunetdns.forward='ACCEPT'
  269. del firewall.gndnsinc
  270. set firewall.gndnsinc=include
  271. set firewall.gndnsinc.path='/usr/lib/gnunet/libexec/gnunet-dns.fw'
  272. commit firewall
  273. EOF
  274. endef
  275. define Package/gnunet-gns/prerm
  276. #!/bin/sh
  277. uci -q batch <<EOF
  278. del network.gnunetdns
  279. del network.gndnsrtt
  280. del network.gndnsrl
  281. commit network
  282. del firewall.gnunetdns
  283. del firewall.gndnsinc
  284. commit firewall
  285. EOF
  286. endef
  287. define Package/gnunet-vpn/postinst
  288. #!/bin/sh
  289. [ -e /usr/share/gnunet/.permfix ] && rm /usr/share/gnunet/.permfix
  290. uci -q batch <<EOF
  291. del network.gnunetvpn
  292. set network.gnunetvpn=interface
  293. set network.gnunetvpn.ifname='vpn-gnunet'
  294. set network.gnunetvpn.proto='gnunet'
  295. del network.gnunetexit
  296. set network.gnunetexit=interface
  297. set network.gnunetexit.ifname='exit-gnunet'
  298. set network.gnunetexit.proto='gnunet'
  299. commit network
  300. del firewall.gnunetvpn
  301. set firewall.gnunetvpn=zone
  302. set firewall.gnunetvpn.name='gnunetvpn'
  303. set firewall.gnunetvpn.network='gnunetvpn'
  304. set firewall.gnunetvpn.input='ACCEPT'
  305. set firewall.gnunetvpn.output='ACCEPT'
  306. set firewall.gnunetvpn.forward='REJECT'
  307. del firewall.gnunetexit
  308. set firewall.gnunetexit=zone
  309. set firewall.gnunetexit.name='gnunetexit'
  310. set firewall.gnunetexit.network='gnunetexit'
  311. set firewall.gnunetexit.input='ACCEPT'
  312. set firewall.gnunetexit.output='ACCEPT'
  313. set firewall.gnunetexit.forward='REJECT'
  314. del firewall.gnexitfwd
  315. set firewall.gnexitfwd=forwarding
  316. set firewall.gnexitfwd.src='gnunetexit'
  317. set firewall.gnexitfwd.dest='wan'
  318. commit firewall
  319. EOF
  320. endef
  321. define Package/gnunet-vpn/prerm
  322. #!/bin/sh
  323. uci -q batch <<EOF
  324. del network.gnunetvpn
  325. del network.gnunetexit
  326. del firewall.gnunetvpn
  327. del firewall.gnunetexit
  328. del firewall.gnexitfwd
  329. EOF
  330. endef
  331. $(eval $(call BuildPackage,gnunet))
  332. $(eval $(call PostInstFixSUIDPerms,gnunet))
  333. $(eval $(call BuildComponent,conversation,conversation component,))
  334. $(eval $(call BuildComponent,datastore,data storage components,))
  335. $(eval $(call BuildComponent,dv,distance-vector routing component,))
  336. $(eval $(call BuildComponent,experiments,experimental components,))
  337. $(eval $(call BuildComponent,flat,flat storage backends,))
  338. $(eval $(call BuildComponent,fs,file-sharing components,))
  339. $(eval $(call BuildComponent,gns,name resolution components,y))
  340. $(eval $(call BuildComponent,mysql,mySQL datastore backend,))
  341. $(eval $(call BuildComponent,pgsql,PostgreSQL storage backends,))
  342. $(eval $(call BuildComponent,peerstore,peerstore local persistency component,))
  343. $(eval $(call BuildComponent,rest,REST interface,))
  344. $(eval $(call BuildComponent,rps,RPS routing component,))
  345. $(eval $(call BuildComponent,social,social components,))
  346. $(eval $(call BuildComponent,sqlite,libsqlite3 storage backends,y))
  347. $(eval $(call BuildComponent,transport-bluetooth,bluetooth transport,))
  348. $(eval $(call PostInstFixSUIDPerms,gnunet-transport-bluetooth))
  349. $(eval $(call BuildComponent,transport-http_client,HTTP/HTTPS client transport,y))
  350. $(eval $(call BuildComponent,transport-http_server,HTTP/HTTPS server transport,))
  351. $(eval $(call BuildComponent,transport-wlan,WLAN transport,))
  352. $(eval $(call PostInstFixSUIDPerms,gnunet-transport-wlan))
  353. $(eval $(call BuildComponent,utils,administration utililties,))
  354. $(eval $(call BuildComponent,vpn,vpn components,y))