p910nd: update default config to point at /dev/usb/lp0 instead of /dev/lp0 (#11968)
[openwrt/svn-archive/archive.git] / net / tor-alpha / Makefile
1 #
2 # Copyright (C) 2008-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=tor-alpha
11 PKG_VERSION:=0.2.4.6-alpha
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=tor-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=https://www.torproject.org/dist \
16 https://archive.torproject.org/tor-package-archive
17 PKG_MD5SUM:=49a70a45e082739a1ed484d5f9d8759b
18
19 PKG_BUILD_DEPENDS:=libminiupnpc libnatpmp
20 PKG_BUILD_DIR:=$(BUILD_DIR)/tor-$(PKG_VERSION)
21 PKG_INSTALL:=1
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/tor-alpha/Default
26 SECTION:=net
27 CATEGORY:=Network
28 URL:=https://www.torproject.org/
29 endef
30
31 define Package/tor-alpha/Default/description
32 Tor is a toolset for a wide range of organizations and people that want to
33 improve their safety and security on the Internet. Using Tor can help you
34 anonymize web browsing and publishing, instant messaging, IRC, SSH, and
35 more. Tor also provides a platform on which software developers can build
36 new applications with built-in anonymity, safety, and privacy features.
37 endef
38
39 define Package/tor-alpha
40 $(call Package/tor-alpha/Default)
41 TITLE:=An anonymous Internet communication system
42 DEPENDS:=+libevent2 +libopenssl +libpthread +librt +SSP_SUPPORT:libssp
43 endef
44
45 define Package/tor-alpha/description
46 $(call Package/tor-alpha/Default/description)
47 This package contains the tor daemon.
48 endef
49
50 define Package/tor-alpha-fw-helper
51 $(call Package/tor-alpha/Default)
52 TITLE:=Firewall helper for tor
53 DEPENDS:=+tor-alpha +libminiupnpc +libnatpmp
54 endef
55
56 define Package/tor-alpha-fw-helper/description
57 $(call Package/tor-alpha/Default/description)
58 This package contains a helper for automatically configuring port forwarding.
59 endef
60
61 define Package/tor-alpha-geoip
62 $(call Package/tor-alpha/Default)
63 TITLE:=GeoIP db for tor
64 DEPENDS:=+tor-alpha
65 endef
66
67 define Package/tor-alpha-geoip/description
68 $(call Package/tor-alpha/Default/description)
69 This package contains a GeoIP database mapping IP addresses to countries.
70 endef
71
72 define Package/tor-alpha/conffiles
73 /etc/tor/torrc
74 endef
75
76 CONFIGURE_ARGS += \
77 --with-libevent-dir="$(STAGING_DIR)/usr" \
78 --with-ssl-dir="$(STAGING_DIR)/usr" \
79 --enable-upnp \
80 --with-libminiupnpc-dir="$(STAGING_DIR)/usr" \
81 --enable-nat-pmp \
82 --with-libnatpmp-dir="$(STAGING_DIR)/usr" \
83 --disable-asciidoc
84
85 ifneq ($(CONFIG_SSP_SUPPORT),y)
86 CONFIGURE_ARGS += \
87 --disable-gcc-hardening
88 endif
89
90 CONFIGURE_VARS += \
91 CROSS_COMPILE="yes"
92
93 # pass CFLAGS again to override -O2 set by configure
94 MAKE_FLAGS += \
95 CFLAGS="$(TARGET_CFLAGS)"
96
97 define Package/tor-alpha/install
98 $(INSTALL_DIR) $(1)/usr/sbin
99 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tor $(1)/usr/sbin/
100 $(INSTALL_DIR) $(1)/etc/init.d
101 $(INSTALL_BIN) ./files/tor.init $(1)/etc/init.d/tor
102 $(INSTALL_DIR) $(1)/etc/tor
103 $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/tor/torrc.sample $(1)/etc/tor/torrc
104 endef
105
106 define Package/tor-alpha-fw-helper/install
107 $(INSTALL_DIR) $(1)/usr/bin
108 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tor-fw-helper $(1)/usr/bin/
109 endef
110
111 define Package/tor-alpha-geoip/install
112 $(INSTALL_DIR) $(1)/usr/share/tor
113 $(CP) $(PKG_INSTALL_DIR)/usr/share/tor/geoip $(1)/usr/share/tor/
114 endef
115
116 $(eval $(call BuildPackage,tor-alpha))
117 $(eval $(call BuildPackage,tor-alpha-fw-helper))
118 $(eval $(call BuildPackage,tor-alpha-geoip))