1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name spinner |
---|
5 | version 1.2.4 |
---|
6 | platforms darwin |
---|
7 | categories sysutils |
---|
8 | maintainers mich@freebsdcluster.org |
---|
9 | description Keep ssh and telnet connections from dropping due to inactivity |
---|
10 | long_description \ |
---|
11 | Spinner is a small program that displays a little "spinning" ASCII \ |
---|
12 | character in the top left corner of your terminal. To make this effect \ |
---|
13 | it cycles through punctuation marks like this " - \ | / - \ | / ... " \ |
---|
14 | (try it to see). By default the character is drawn in inverse video \ |
---|
15 | (or your terminal's equivalent). But you can turn this off with the -i \ |
---|
16 | switch. It supports any terminal capable of handling VT100 style escape codes.\ |
---|
17 | \ |
---|
18 | Spinner is useful for keeping telnet and ssh links from dropping due to \ |
---|
19 | inactivity. Many firewalls, and some ISPs drop connections when they are \ |
---|
20 | perceived as idle. By having spinner running the server is constantly \ |
---|
21 | sending a tiny amount of data over the link, preserving the connection. \ |
---|
22 | Thus (for search engines) Spinner is an anti-dle, timeout preventing, \ |
---|
23 | background daemon process for unix variants including linux. |
---|
24 | homepage http://www.laffeycomputer.com/spinner.html |
---|
25 | master_sites http://downloads.laffeycomputer.com/current_builds/spinner/ |
---|
26 | checksums md5 21d5d1c5ae20104f0cd36fdf6b0daa71 |
---|
27 | use_configure yes |
---|
28 | destroot { |
---|
29 | set docdst "${destroot}${prefix}/share/doc/spinner" |
---|
30 | system "cd ${worksrcpath} && \ |
---|
31 | install ${name} ${destroot}${prefix}/sbin && \ |
---|
32 | install -d ${docdst} && \ |
---|
33 | install README ${docdst}" |
---|
34 | } |
---|