From owner-freebsd-ports Mon Dec 16 4: 0:18 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3EF4337B406 for ; Mon, 16 Dec 2002 04:00:15 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DECF43EDA for ; Mon, 16 Dec 2002 04:00:13 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gBGC0Dx3022739 for ; Mon, 16 Dec 2002 04:00:13 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gBGC0DkN022733; Mon, 16 Dec 2002 04:00:13 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C75A37B401 for ; Mon, 16 Dec 2002 03:53:29 -0800 (PST) Received: from mail2.itxmarket.com (fw.itxmarket.com [213.11.40.109]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10BB143ED4 for ; Mon, 16 Dec 2002 03:53:27 -0800 (PST) (envelope-from root@icommerce-france.com) Received: from icommerce-france.com (current.itxmarket.com [192.168.2.19]) by mail2.itxmarket.com (Postfix) with ESMTP id 514AE37CA5 for ; Mon, 16 Dec 2002 12:30:58 +0100 (CET) Received: by icommerce-france.com (Postfix, from userid 0) id D36833A; Mon, 16 Dec 2002 12:30:57 +0100 (CET) Message-Id: <20021216113057.D36833A@icommerce-france.com> Date: Mon, 16 Dec 2002 12:30:57 +0100 (CET) From: "Michael L.Hostbaek" Reply-To: "Michael L.Hostbaek" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/46289: New port: sysutils/spinner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 46289 >Category: ports >Synopsis: New port: sysutils/spinner >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Dec 16 04:00:12 PST 2002 >Closed-Date: >Last-Modified: >Originator: Michael L. Hostbaek >Release: FreeBSD 5.0-RC i386 >Organization: FreeBSDCluster.org >Environment: System: FreeBSD current.itxmarket.com 5.0-RC FreeBSD 5.0-RC #0: Thu Dec 12 10:31:50 CET 2002 root@current.itxmarket.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: util to keep ssh and telnet connections from dropping due to inactivity. Code builds on both 4.X and -CURRENT. >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # spinner # spinner/Makefile # spinner/distinfo # spinner/pkg-comment # spinner/pkg-descr # spinner/pkg-plist # echo c - spinner mkdir -p spinner > /dev/null 2>&1 echo x - spinner/Makefile sed 's/^X//' >spinner/Makefile << 'END-of-spinner/Makefile' X# ex:ts=8 X# New ports collection makefile for: spinner X# Date created: Dec 16, 2002 X# Whom: mich@freebsdcluster.org X# X# $FreeBSD$ X# X XPORTNAME= spinner XPORTVERSION= 1.1 XCATEGORIES= sysutils XMASTER_SITES= http://downloads.laffeycomputer.com/current_builds/spinner/ X XMAINTAINER= mich@freebsdcluster.org X XDOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME} XUSE_REINPLACE= yes X Xpost-patch: X @${REINPLACE_CMD} -e 's|-O2 ||g ; \ X s|gcc |\$$\(CC\) |g' ${WRKSRC}/Makefile Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/spinner ${PREFIX}/bin X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README X.endif X X.include END-of-spinner/Makefile echo x - spinner/distinfo sed 's/^X//' >spinner/distinfo << 'END-of-spinner/distinfo' XMD5 (spinner-1.1.tar.gz) = f4f6046c2c8b760659288bce03111a53 END-of-spinner/distinfo echo x - spinner/pkg-comment sed 's/^X//' >spinner/pkg-comment << 'END-of-spinner/pkg-comment' XKeep ssh and telnet connections from dropping due to inactivity END-of-spinner/pkg-comment echo x - spinner/pkg-descr sed 's/^X//' >spinner/pkg-descr << 'END-of-spinner/pkg-descr' XSpinner is a small program that displays a little "spinning" ASCII Xcharacter in the top left corner of your terminal. To make this effect Xit cycles through punctuation marks like this " - \ | / - \ | / ... " X(try it to see). By default the character is drawn in inverse video X(or your terminal's equivalent). But you can turn this off with the -i Xswitch. It supports any terminal capable of handling VT100 style escape codes. X XSpinner is useful for keeping telnet and ssh links from dropping due to Xinactivity. Many firewalls, and some ISPs drop connections when they are Xperceived as idle. By having spinner running the server is constantly Xsending a tiny amount of data over the link, preserving the connection. XThus (for search engines) Spinner is an anti-dle, timeout preventing, Xbackground daemon process for unix variants including linux. X XWWW: http://www.laffeycomputer.com/spinner.html X X - Michael L. Hostbaek X mich@freebsdcluster.org END-of-spinner/pkg-descr echo x - spinner/pkg-plist sed 's/^X//' >spinner/pkg-plist << 'END-of-spinner/pkg-plist' Xbin/spinner X%%PORTDOCS%%share/doc/spinner/README X%%PORTDOCS%%@dirrm share/doc/spinner END-of-spinner/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message