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.

121 lines
3.2 KiB

  1. #
  2. # Copyright (C) 2008-2014 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:=tor
  9. PKG_VERSION:=0.2.4.24
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://www.torproject.org/dist \
  13. https://archive.torproject.org/tor-package-archive
  14. PKG_MD5SUM:=9acb86b529f0f48cc495da3801f85d1f
  15. PKG_MAINTAINER:=Hauke Mehrtens <hauke@hauke-m.de>
  16. PKG_LICENSE_FILE:=LICENSE
  17. PKG_BUILD_DEPENDS:=libminiupnpc libnatpmp
  18. PKG_INSTALL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/tor/Default
  21. SECTION:=net
  22. CATEGORY:=Network
  23. URL:=https://www.torproject.org/
  24. USERID:=tor=52:tor=52
  25. endef
  26. define Package/tor/Default/description
  27. Tor is a toolset for a wide range of organizations and people that want to
  28. improve their safety and security on the Internet. Using Tor can help you
  29. anonymize web browsing and publishing, instant messaging, IRC, SSH, and
  30. more. Tor also provides a platform on which software developers can build
  31. new applications with built-in anonymity, safety, and privacy features.
  32. endef
  33. define Package/tor
  34. $(call Package/tor/Default)
  35. TITLE:=An anonymous Internet communication system
  36. DEPENDS:=+libevent2 +libopenssl +libpthread +librt +SSP_SUPPORT:libssp
  37. endef
  38. define Package/tor/description
  39. $(call Package/tor/Default/description)
  40. This package contains the tor daemon.
  41. endef
  42. define Package/tor-fw-helper
  43. $(call Package/tor/Default)
  44. TITLE:=Firewall helper for tor
  45. DEPENDS:=+tor +libminiupnpc +libnatpmp
  46. endef
  47. define Package/tor-fw-helper/description
  48. $(call Package/tor/Default/description)
  49. This package contains a helper for automatically configuring port forwarding.
  50. endef
  51. define Package/tor-geoip
  52. $(call Package/tor/Default)
  53. TITLE:=GeoIP db for tor
  54. DEPENDS:=+tor
  55. endef
  56. define Package/tor-geoip/description
  57. $(call Package/tor/Default/description)
  58. This package contains a GeoIP database mapping IP addresses to countries.
  59. endef
  60. define Package/tor/conffiles
  61. /etc/tor/torrc
  62. endef
  63. CONFIGURE_ARGS += \
  64. --with-libevent-dir="$(STAGING_DIR)/usr" \
  65. --with-ssl-dir="$(STAGING_DIR)/usr" \
  66. --enable-upnp \
  67. --with-libminiupnpc-dir="$(STAGING_DIR)/usr" \
  68. --enable-nat-pmp \
  69. --with-libnatpmp-dir="$(STAGING_DIR)/usr" \
  70. --disable-asciidoc
  71. ifneq ($(CONFIG_SSP_SUPPORT),y)
  72. CONFIGURE_ARGS += \
  73. --disable-gcc-hardening
  74. MAKE_FLAGS += \
  75. CFLAGS="$(TARGET_CFLAGS)"
  76. else
  77. MAKE_FLAGS += \
  78. CFLAGS="$(TARGET_CFLAGS) -fPIC"
  79. endif
  80. CONFIGURE_VARS += \
  81. CROSS_COMPILE="yes"
  82. define Package/tor/install
  83. $(INSTALL_DIR) $(1)/usr/sbin
  84. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tor $(1)/usr/sbin/
  85. $(INSTALL_DIR) $(1)/etc/init.d
  86. $(INSTALL_BIN) ./files/tor.init $(1)/etc/init.d/tor
  87. $(INSTALL_DIR) $(1)/etc/tor
  88. $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/tor/torrc.sample $(1)/etc/tor/torrc
  89. endef
  90. define Package/tor-fw-helper/install
  91. $(INSTALL_DIR) $(1)/usr/bin
  92. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tor-fw-helper $(1)/usr/bin/
  93. endef
  94. define Package/tor-geoip/install
  95. $(INSTALL_DIR) $(1)/usr/share/tor
  96. $(CP) $(PKG_INSTALL_DIR)/usr/share/tor/geoip $(1)/usr/share/tor/
  97. endef
  98. $(eval $(call BuildPackage,tor))
  99. $(eval $(call BuildPackage,tor-fw-helper))
  100. $(eval $(call BuildPackage,tor-geoip))