[or-cvs] r14798: include geoip in win32 packages. (tor/trunk/contrib)
phobos at seul.org
phobos at seul.org
Thu May 29 01:34:30 UTC 2008
Author: phobos
Date: 2008-05-28 21:34:30 -0400 (Wed, 28 May 2008)
New Revision: 14798
Modified:
tor/trunk/contrib/package_nsis-mingw.sh
tor/trunk/contrib/tor-mingw.nsi.in
Log:
include geoip in win32 packages.
Modified: tor/trunk/contrib/package_nsis-mingw.sh
===================================================================
--- tor/trunk/contrib/package_nsis-mingw.sh 2008-05-29 01:23:09 UTC (rev 14797)
+++ tor/trunk/contrib/package_nsis-mingw.sh 2008-05-29 01:34:30 UTC (rev 14798)
@@ -4,6 +4,7 @@
# package_nsis-ming.sh is distributed under this license:
# Copyright (c) 2006-2007 Andrew Lewman
+# Copyright (c) 2008 The Tor Project, Inc.
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
@@ -56,10 +57,8 @@
cp src/or/tor.exe win_tmp/bin/
cp src/tools/tor-resolve.exe win_tmp/bin/
cp contrib/tor.ico win_tmp/bin/
+cp src/config/geoip win_tmp/bin/
-# YOU must copy torbutton xpi into the contrib dir
-#cp contrib/torbutton-1.0.4-fx+tb.xpi win_tmp/bin/
-
# There is no man2html in mingw.
# Maybe we should add this into make dist instead.
# One has to do this manually and cp it do the tor-source/doc dir
Modified: tor/trunk/contrib/tor-mingw.nsi.in
===================================================================
--- tor/trunk/contrib/tor-mingw.nsi.in 2008-05-29 01:23:09 UTC (rev 14797)
+++ tor/trunk/contrib/tor-mingw.nsi.in 2008-05-29 01:34:30 UTC (rev 14798)
@@ -1,6 +1,6 @@
;tor.nsi - A basic win32 installer for Tor
; Originally written by J Doe.
-; Modified by Steve Topletz
+; Modified by Steve Topletz, Andrew Lewman
; See the Tor LICENSE for licensing information
;-----------------------------------------
;
@@ -9,7 +9,7 @@
!include "FileFunc.nsh"
!insertmacro GetParameters
-!define VERSION "0.2.1.0-alpha-dev"
+!define VERSION "0.2.0.26-rc-dev"
!define INSTALLER "tor-${VERSION}-win32.exe"
!define WEBSITE "https://www.torproject.org/"
!define LICENSE "LICENSE"
@@ -96,6 +96,11 @@
Next:
${EndIf}
File /oname=$CONFIGFILE "..\src\config\torrc.sample"
+
+; the geoip file needs to be included and stuffed into the right directory
+; otherwise tor is unhappy
+ SetOutPath $APPDATA\Tor
+ Call ExtractGEOIP
SectionEnd
Section "Documents" Docs
@@ -113,7 +118,6 @@
${If} ${FileExists} "$INSTDIR\Documents\*.*"
Call CreateDocLinks
${EndIf}
- endifdocs:
SectionEnd
Section "Desktop" Desktop
@@ -156,12 +160,15 @@
File "${BIN}\tor-resolve.exe"
FunctionEnd
+Function ExtractGEOIP
+ File "${BIN}\geoip"
+FunctionEnd
+
Function ExtractIcon
File "${BIN}\tor.ico"
FunctionEnd
Function ExtractSpecs
- ;File "doc\FAQ"
File "..\doc\HACKING"
File "..\doc\spec\address-spec.txt"
File "..\doc\spec\control-spec.txt"
@@ -209,6 +216,7 @@
Delete "$INSTDIR\tor.ico"
Delete "$SMSTARTUP\Tor.lnk"
Delete "$INSTDIR\Uninstall.exe"
+ Delete "$INSTDIR\geoip"
FunctionEnd
Function un.InstallDirectories
More information about the tor-commits
mailing list