Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Jun 2001 23:39:43 -0400 (EDT)
From:      Pete Fritchman <petef@databits.net>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/28502: New port: astro/fooseti
Message-ID:  <200106290339.f5T3dhc46008@electron.databits.net>

next in thread | raw e-mail | index | archive | help

>Number:         28502
>Category:       ports
>Synopsis:       New port: astro/fooseti
>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:   Thu Jun 28 20:50:12 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Pete Fritchman
>Release:        FreeBSD 4.3-STABLE i386
>Organization:
Databits Network Services, Inc.
>Environment:
System: FreeBSD electron.databits.net 4.3-STABLE FreeBSD 4.3-STABLE #7: Mon Jun 11 10:15:45 EDT 2001 root@electron.databits.net:/usr/obj/usr/src/sys/ELECTRON i386

>Description:

fooseti is a small GTK+ frontend to SETI@Home.  It can display your total
CPU time, number of packets completed and the average time to complete them,
as well as the status of the current packet.

WWW: http://www-personal.engin.umich.edu/~agorski/fooseti

>How-To-Repeat:

>Fix:

(Patch submitted to author)

# 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:
#
#	fooseti
#	fooseti/files
#	fooseti/files/patch-src::fooseti.c
#	fooseti/distinfo
#	fooseti/pkg-comment
#	fooseti/pkg-descr
#	fooseti/pkg-plist
#	fooseti/Makefile
#
echo c - fooseti
mkdir -p fooseti > /dev/null 2>&1
echo c - fooseti/files
mkdir -p fooseti/files > /dev/null 2>&1
echo x - fooseti/files/patch-src::fooseti.c
sed 's/^X//' >fooseti/files/patch-src::fooseti.c << 'END-of-fooseti/files/patch-src::fooseti.c'
X--- src/fooseti.c.orig	Sat Jun 23 00:40:18 2001
X+++ src/fooseti.c	Thu Jun 28 16:22:36 2001
X@@ -39,7 +39,7 @@
X static GtkWidget* window;
X static GtkWidget* name;
X static GtkWidget* packet;
X-static GtkWidget* time;
X+static GtkWidget* gtime;
X static GtkWidget* atime;
X static GtkWidget* user_label;
X static GtkWidget* packcomp_label;
X@@ -96,7 +96,7 @@
X   window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
X   name = gtk_label_new(data.user);
X   packet = gtk_label_new(data.packet);
X-	time = gtk_label_new(data.time);
X+	gtime = gtk_label_new(data.time);
X 	atime = gtk_label_new(data.atime);
X   user_label = gtk_label_new("User: ");
X   packcomp_label = gtk_label_new("Packets Completed: ");
X@@ -168,7 +168,7 @@
X 	/* pack the fourth hbox */
X 
X 	gtk_box_pack_start(GTK_BOX(tTimeBox), total_time_label, FALSE, FALSE, 1);
X-	gtk_box_pack_start(GTK_BOX(tTimeBox), time, FALSE, FALSE, 1);
X+	gtk_box_pack_start(GTK_BOX(tTimeBox), gtime, FALSE, FALSE, 1);
X 
X 	if (options.time)
X 		gtk_widget_show_all(tTimeBox);
X@@ -289,7 +289,7 @@
X 		gtk_label_set_text(GTK_LABEL(name), data.user);
X     gtk_label_set_text(GTK_LABEL(packet), data.packet);
X 		gtk_label_set_text(GTK_LABEL(atime), data.atime);
X-		gtk_label_set_text(GTK_LABEL(time), data.time);
X+		gtk_label_set_text(GTK_LABEL(gtime), data.time);
X     gtk_progress_set_percentage(GTK_PROGRESS(progressBar), data.packetStatus);
X   } // if the client is running
X 
X@@ -332,7 +332,7 @@
X 			gtk_label_set_text(GTK_LABEL(name), data.user);
X 			gtk_label_set_text(GTK_LABEL(packet), data.packet);
X 			gtk_label_set_text(GTK_LABEL(atime), data.atime);
X-			gtk_label_set_text(GTK_LABEL(time), data.time);
X+			gtk_label_set_text(GTK_LABEL(gtime), data.time);
X 			gtk_label_set_text(GTK_LABEL(runstop_label), "Stop");
X       gtk_progress_set_percentage(GTK_PROGRESS(progressBar), data.packetStatus);
X       gtk_progress_set_format_string(GTK_PROGRESS(progressBar), "%p%% complete");
END-of-fooseti/files/patch-src::fooseti.c
echo x - fooseti/distinfo
sed 's/^X//' >fooseti/distinfo << 'END-of-fooseti/distinfo'
XMD5 (fooseti-0.6.4.tar.gz) = da715f1f82232007ae6934e392f75438
END-of-fooseti/distinfo
echo x - fooseti/pkg-comment
sed 's/^X//' >fooseti/pkg-comment << 'END-of-fooseti/pkg-comment'
XGTK+ frontend to SETI@Home
END-of-fooseti/pkg-comment
echo x - fooseti/pkg-descr
sed 's/^X//' >fooseti/pkg-descr << 'END-of-fooseti/pkg-descr'
Xfooseti is a small GTK+ frontend to SETI@Home.  It can display your total
XCPU time, number of packets completed and the average time to complete them,
Xas well as the status of the current packet.
X
XWWW: http://www-personal.engin.umich.edu/~agorski/fooseti
X
X- Pete
Xpetef@databits.net
END-of-fooseti/pkg-descr
echo x - fooseti/pkg-plist
sed 's/^X//' >fooseti/pkg-plist << 'END-of-fooseti/pkg-plist'
Xbin/fooseti
END-of-fooseti/pkg-plist
echo x - fooseti/Makefile
sed 's/^X//' >fooseti/Makefile << 'END-of-fooseti/Makefile'
X# Ports collection makefile for:	fooseti
X# Date created:				28 June 2001
X# Whom:					Pete Fritchman <petef@databits.net>
X#
X# $FreeBSD$
X#
X
XPORTNAME=	fooseti
XPORTVERSION=	0.6.4
XCATEGORIES=	astro
XMASTER_SITES=	http://www-personal.engin.umich.edu/~agorski/fooseti/
X
XMAINTAINER=	petef@databits.net
X
XLIB_DEPENDS=	intl.1:${PORTSDIR}/devel/gettext
X
XGNU_CONFIGURE=	yes
XUSE_GTK=	yes
X
X.include <bsd.port.mk>
END-of-fooseti/Makefile
exit

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200106290339.f5T3dhc46008>