diff options
author | sheldonh <sheldonh@FreeBSD.org> | 1999-07-02 18:59:42 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 1999-07-02 18:59:42 +0800 |
commit | bb52e468d581405f4a725318df5d538f967327f0 (patch) | |
tree | 250d3a75bd10a4b8ee24a00a50a979870b1ae753 /astro | |
parent | 539d204bfc6b89add87d51976a5daa13971090f9 (diff) | |
download | freebsd-ports-gnome-bb52e468d581405f4a725318df5d538f967327f0.tar.gz freebsd-ports-gnome-bb52e468d581405f4a725318df5d538f967327f0.tar.zst freebsd-ports-gnome-bb52e468d581405f4a725318df5d538f967327f0.zip |
Set the directory in which tkseti looks for setiathome status files
to /var/db/setiathome, which is where our setiathome port puts them
if run from ${PREFIX}/etc/rc.d/ .
Requested by: maintainer
Diffstat (limited to 'astro')
-rw-r--r-- | astro/tkseti/files/patch-aa | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/astro/tkseti/files/patch-aa b/astro/tkseti/files/patch-aa index b6b66b2c92a1..38cf7b5be04f 100644 --- a/astro/tkseti/files/patch-aa +++ b/astro/tkseti/files/patch-aa @@ -8,3 +8,38 @@ ############################################################################# # Visual Tcl v1.20 Project # +@@ -160,11 +160,11 @@ + TkSETI can be started if the client is already running, or it can start + the client manually or automatically for you. This is explained in the + Setup section that follows. +- +- TkSETI will look for the client files in the directory ~/setiathome. If +- you've run the client elsewhere, or run more than one client, just +- specify the setiathome client directory on the tkseti command line. For +- example: ++ ++ TkSETI will look for the client files in the directory ++ /var/db/setiathome . If you've run the client elsewhere, or run more ++ than one client, just specify the setiathome client directory on the ++ tkseti command line. For example: + + tkseti ~/setiathome + +@@ -494,7 +494,7 @@ + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + } + +- set seti(usage) " TkSETI version $seti(tksetiVersion) by Rick Macdonald <rickm@vsl.com>\n\nYou are running [info nameofexecutable] patchlevel [info patchlevel].\n\nUsage: tkseti \[--help\] \[user_setiathome_directory\]\n user_setiathome_directory defaults to ~/setiathome" ++ set seti(usage) " TkSETI version $seti(tksetiVersion) by Rick Macdonald <rickm@vsl.com>\n\nYou are running [info nameofexecutable] patchlevel [info patchlevel].\n\nUsage: tkseti \[--help\] \[user_setiathome_directory\]\n user_setiathome_directory defaults to /var/db/setiathome" + + if {[lsearch $argv "--help"] >= 0} { + puts \n$seti(usage) +@@ -509,7 +509,7 @@ + option add *highlightBackground grey85 user + + if {$argc == 0} { +- set seti(setidir) [glob ~]/setiathome ++ set seti(setidir) /var/db/setiathome + } { + set seti(setidir) [lindex $argv 0] + } |