summaryrefslogtreecommitdiff
path: root/security/tor-devel
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-01-30 14:55:57 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-01-30 14:55:57 +0000
commitc7397b2f5d39f9f4694f065b9ecbbad3b1e97c51 (patch)
treef973f92eb0f847e4f583f11b0a296cb7fc9b3e79 /security/tor-devel
parentFix command line parsing. (diff)
- adds _tor user and gourp for tor to run as
- puts data into /var/db/tor/data - TAKE NOTE WHEN UPGRADING! - working tor.sh!!! (finally. sorry for not doing this earlier!) PR: ports/76837 Submitted by: rik <freebsd-ports@rikrose.net> (maintainer)
Notes
Notes: svn path=/head/; revision=127713
Diffstat (limited to 'security/tor-devel')
-rw-r--r--security/tor-devel/Makefile4
-rw-r--r--security/tor-devel/files/patch-contrib-tor.sh.in29
-rw-r--r--security/tor-devel/pkg-install35
3 files changed, 68 insertions, 0 deletions
diff --git a/security/tor-devel/Makefile b/security/tor-devel/Makefile
index 05cf6d56fbb7..dc79814d0fd6 100644
--- a/security/tor-devel/Makefile
+++ b/security/tor-devel/Makefile
@@ -7,6 +7,7 @@
PORTNAME= tor
PORTVERSION= 0.0.9.2
+PORTREVISION= 1
CATEGORIES= security net
MASTER_SITES= http://tor.eff.org/dist/
@@ -34,6 +35,9 @@ post-patch:
-e 's!-g -O2!!' \
-e 's!-O2!!'
+pre-install:
+ PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
+
post-install:
@${CP} ${WRKSRC}/contrib/tor.sh ${LOCALBASE}/etc/rc.d/tor.sh.sample
diff --git a/security/tor-devel/files/patch-contrib-tor.sh.in b/security/tor-devel/files/patch-contrib-tor.sh.in
new file mode 100644
index 000000000000..74fa8978a719
--- /dev/null
+++ b/security/tor-devel/files/patch-contrib-tor.sh.in
@@ -0,0 +1,29 @@
+--- contrib/tor.sh.in.orig Sat Jan 29 20:41:19 2005
++++ contrib/tor.sh.in Sat Jan 29 20:46:14 2005
+@@ -5,12 +5,12 @@
+ # chkconfig: 2345 90 10
+ # description: Onion Router
+
+-TORUSER=
+-TORGROUP=
++TORUSER=_tor
++TORGROUP=_tor
+ TORBIN=@BINDIR@/tor
+-TORPID=@LOCALSTATEDIR@/run/tor/tor.pid
+-TORLOG=@LOCALSTATEDIR@/log/tor/tor.log
+-TORDATA=@LOCALSTATEDIR@/lib/tor
++TORPID=/var/run/tor.pid
++TORLOG=/var/log/tor.log
++TORDATA=/var/db/tor/data
+
+ TORCONF=@CONFDIR@/torrc
+ # Strictly speaking, we don't need to su if we have --user and --group.
+@@ -36,7 +36,7 @@
+ if [ "x$TORUSER" = "x" ]; then
+ $TORBIN -f $TORCONF $TORARGS
+ else
+- /bin/su -c "$TORBIN -f $TORCONF $TORARGS" $TORUSER
++ /usr/bin/su $TORUSER -c "$TORBIN -f $TORCONF $TORARGS"
+ fi
+ RETVAL=$?
+ if [ $RETVAL -eq 0 ]; then
diff --git a/security/tor-devel/pkg-install b/security/tor-devel/pkg-install
new file mode 100644
index 000000000000..8e68cf08e203
--- /dev/null
+++ b/security/tor-devel/pkg-install
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+if [ x"$2" = xPRE-INSTALL ]; then
+ USER="_tor"
+ UID="256"
+ GROUP="_tor"
+ GID="256"
+
+ if /usr/sbin/pw groupshow "${GROUP}" 2>/dev/null; then
+ echo "You already have a group \"${GROUP}\", so I will use it."
+ else
+ if /usr/sbin/pw groupadd ${GROUP} -g ${GID}; then
+ echo "Added group \"${GROUP}\"."
+ else
+ echo "Adding group \"${GROUP}\" failed..."
+ echo "Please create it, and try again."
+ exit 1
+ fi
+ fi
+
+ if /usr/sbin/pw user show "${USER}" 2>/dev/null; then
+ echo "You already have a user \"${USER}\", so I will use it."
+ else
+ if /usr/sbin/pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
+ -d /var/db/tor \
+ -s /bin/sh \
+ -c "Tor anonymising router"; then
+ echo "Added user \"${USER}\"."
+ else
+ echo "Adding user \"${USER}\" failed..."
+ echo "Please create it, and try again."
+ exit 1
+ fi
+ fi
+fi