5214467c18
git-svn-id: svn://svn.openwrt.org/openwrt/packages@17112 3c298f89-4303-0410-b956-a3cf2f4a3e73
100 lines
2.7 KiB
Makefile
100 lines
2.7 KiB
Makefile
#
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=tor
|
|
PKG_VERSION:=0.2.0.35
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://www.torproject.org/dist/
|
|
PKG_MD5SUM:=d4841e1b4d54866495fd373e865b2d44
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/tor
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libevent +libopenssl +libpthread +zlib
|
|
TITLE:=An anonymous Internet communication system
|
|
URL:=http://tor.eff.org/
|
|
endef
|
|
|
|
define Package/tor/description
|
|
Tor is a toolset for a wide range of organizations and people that want to
|
|
improve their safety and security on the Internet. Using Tor can help you
|
|
anonymize web browsing and publishing, instant messaging, IRC, SSH, and
|
|
more. Tor also provides a platform on which software developers can build
|
|
new applications with built-in anonymity, safety, and privacy features.
|
|
endef
|
|
|
|
define Package/tor/conffiles
|
|
/etc/tor/torrc
|
|
endef
|
|
|
|
define Package/tor/postinst
|
|
#!/bin/sh
|
|
|
|
name=tor
|
|
id=52
|
|
|
|
# do not change below
|
|
# # check if we are on real system
|
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
|
# create copies of passwd and group, if we use squashfs
|
|
rootfs=`mount |awk '/root/ { print $$5 }'`
|
|
if [ "$$rootfs" = "squashfs" ]; then
|
|
if [ -h /etc/group ]; then
|
|
rm /etc/group
|
|
cp /rom/etc/group /etc/group
|
|
fi
|
|
if [ -h /etc/passwd ]; then
|
|
rm /etc/passwd
|
|
cp /rom/etc/passwd /etc/passwd
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
echo ""
|
|
if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/group)" ]; then
|
|
echo "adding group $$name to /etc/group"
|
|
echo "$${name}:x:$${id}:" >> $${IPKG_INSTROOT}/etc/group
|
|
fi
|
|
|
|
if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/passwd)" ]; then
|
|
echo "adding user $name to /etc/passwd"
|
|
echo "$${name}:x:$${id}:$${id}:$${name}:/tmp/.$${name}:/bin/false" >> $${IPKG_INSTROOT}/etc/passwd
|
|
fi
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--with-libevent-dir="$(STAGING_DIR)/usr" \
|
|
--with-ssl-dir="$(STAGING_DIR)/usr" \
|
|
|
|
CONFIGURE_VARS += \
|
|
CROSS_COMPILE="yes" \
|
|
|
|
# pass CFLAGS again to override -O2 set by configure
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
all install
|
|
endef
|
|
|
|
define Package/tor/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/or/tor $(1)/usr/sbin/
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/tor.init $(1)/etc/init.d/tor
|
|
$(INSTALL_DIR) $(1)/etc/tor
|
|
$(INSTALL_DATA) ./files/torrc $(1)/etc/tor/torrc
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,tor))
|