X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=net%2Ftor%2FMakefile;h=d987f6cade2576199bca4949869ee96bf65b4fce;hp=a95624f61a0c7fe9630ab92d9f37036528c40861;hb=cc059019e2ab1e502e0f6f65d6990e5bada134f4;hpb=82ff5e0ed73472e034e727866670b32fe1c73786 diff --git a/net/tor/Makefile b/net/tor/Makefile index a95624f61a..d987f6cade 100644 --- a/net/tor/Makefile +++ b/net/tor/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2008 OpenWrt.org +# Copyright (C) 2008-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,21 +8,23 @@ include $(TOPDIR)/rules.mk PKG_NAME:=tor -PKG_VERSION:=0.2.0.35 +PKG_VERSION:=0.2.1.23 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://www.torproject.org/dist/ -PKG_MD5SUM:=d4841e1b4d54866495fd373e865b2d44 +PKG_SOURCE_URL:=http://www.torproject.org/dist +PKG_MD5SUM:=2e0bf3dbb83bbaadaa99d1dfe59c75f7 + +PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk define Package/tor SECTION:=net CATEGORY:=Network - DEPENDS:=+libevent +libopenssl +libpthread +zlib + DEPENDS:=+libevent +libopenssl +libpthread TITLE:=An anonymous Internet communication system - URL:=http://tor.eff.org/ + URL:=http://www.torproject.org/ endef define Package/tor/description @@ -67,7 +69,7 @@ if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/group)" ]; then fi if [ -z "$$(grep ^\\$${name}: $${IPKG_INSTROOT}/etc/passwd)" ]; then - echo "adding user $name to /etc/passwd" + echo "adding user $$name to /etc/passwd" echo "$${name}:x:$${id}:$${id}:$${name}:/tmp/.$${name}:/bin/false" >> $${IPKG_INSTROOT}/etc/passwd fi endef @@ -80,20 +82,16 @@ 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 +MAKE_FLAGS += \ + CFLAGS="$(TARGET_CFLAGS)" \ define Package/tor/install $(INSTALL_DIR) $(1)/usr/sbin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/or/tor $(1)/usr/sbin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/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 + $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/tor/torrc.sample $(1)/etc/tor/torrc endef $(eval $(call BuildPackage,tor))