Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Feb 2003 19:16:34 +0100 (CET)
From:      Miguel Mendez <flynn@energyhq.homeip.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/47816: [Maintainer Update] sysutils/thefish to 0.3
Message-ID:  <200302021816.h12IGYd3018536@christine.energyhq.tk>

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

>Number:         47816
>Category:       ports
>Synopsis:       [Maintainer Update] sysutils/thefish to 0.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sun Feb 02 10:20:08 PST 2003
>Closed-Date:
>Last-Modified:
>Originator:     Miguel Mendez
>Release:        FreeBSD 5.0-RELEASE i386
>Organization:
>Environment:
System: FreeBSD christine.energyhq.tk 5.0-RELEASE FreeBSD 5.0-RELEASE #0: Thu Jan 16 23:49:01 CET 2003 root@christine.energyhq.tk:/usr/obj/usr/src/sys/CHRISTINE i386


	
>Description:
 Changelog:

    0.2.5.1 -> 0.3

    More code cleanup. Some GTK2 enhancements. 
	New console UI based on CDK (Curses Development Kit). 
	This release is dedicated to the 7 astronauts who died in the Columbia accident. 
>How-To-Repeat:
	
>Fix:

	

--- thefish.diff begins here ---
diff -ruN thefish.old/Makefile thefish/Makefile
--- thefish.old/Makefile	Fri Jan 31 09:03:24 2003
+++ thefish/Makefile	Sun Feb  2 19:03:51 2003
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	thefish
-PORTVERSION=	0.2.5.1
-PORTREVISION=	1
+PORTVERSION=	0.3
 CATEGORIES=	sysutils
 MASTER_SITES=	http://energyhq.homeip.net/files/
 
@@ -19,6 +18,10 @@
 .else
 LIB_DEPENDS=	gtk-x11-2.0:${PORTSDIR}/x11-toolkits/gtk20
 USE_X_PREFIX=	yes
+.endif
+
+.if defined(WITH_CDK)
+LIB_DEPENDS+=	cdk:${PORTSDIR}/devel/cdk
 .endif
 
 MAN1=		thefish.1
diff -ruN thefish.old/distinfo thefish/distinfo
--- thefish.old/distinfo	Tue Jan 28 02:04:31 2003
+++ thefish/distinfo	Sun Feb  2 19:03:55 2003
@@ -1 +1 @@
-MD5 (thefish-0.2.5.1.tar.gz) = 3cb9611006f0e4e21d0b6b174fa4601b
+MD5 (thefish-0.3.tar.gz) = f51b20b4a3c4714f0902138e23765adf
diff -ruN thefish.old/files/patch-aa thefish/files/patch-aa
--- thefish.old/files/patch-aa	Fri Jan 31 09:03:24 2003
+++ thefish/files/patch-aa	Thu Jan  1 01:00:00 1970
@@ -1,100 +0,0 @@
---- gtk_ui.c.orig	Mon Jan 27 23:14:16 2003
-+++ gtk_ui.c	Thu Jan 30 21:53:48 2003
-@@ -24,7 +24,7 @@
- OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- 
--$Id: //depot/fish/gtk_ui.c#25 $
-+$Id: //depot/fish/gtk_ui.c#26 $
- 
- */
- 
-@@ -268,22 +268,22 @@
- 	gtk_box_pack_start((GtkBox *)h_buttons, about_button, FALSE, FALSE, 0);
- 	gtk_box_pack_start((GtkBox *) h_buttons, quit_button, FALSE, FALSE, 0);
- 
--	g_signal_connect_swapped(GTK_OBJECT(window), "delete_event",\
-+	g_signal_connect(GTK_OBJECT(window), "delete_event",\
- 		      GTK_SIGNAL_FUNC(delete_event), NULL);
- 
--	g_signal_connect_swapped(GTK_OBJECT(window), "destroy",\
-+	g_signal_connect(GTK_OBJECT(window), "destroy",\
- 		      GTK_SIGNAL_FUNC(destroy), NULL);
- 
--	g_signal_connect_swapped(GTK_OBJECT(commit_button), "clicked",\
-+	g_signal_connect(GTK_OBJECT(commit_button), "clicked",\
- 		      GTK_SIGNAL_FUNC(commit_pressed), NULL);
- 			  
--  	g_signal_connect_swapped(GTK_OBJECT(quit_button), "clicked",\
-+  	g_signal_connect(GTK_OBJECT(quit_button), "clicked",\
- 		      GTK_SIGNAL_FUNC(quit_pressed), NULL);
- 
--	g_signal_connect_swapped(GTK_OBJECT(about_button), "clicked",\
-+	g_signal_connect(GTK_OBJECT(about_button), "clicked",\
- 		      GTK_SIGNAL_FUNC(about_pressed), NULL);
- 
--	g_signal_connect_swapped(GTK_OBJECT(add_button), "clicked",\
-+	g_signal_connect(GTK_OBJECT(add_button), "clicked",\
- 		      GTK_SIGNAL_FUNC(add_pressed), NULL);
- 			  			  
- 	mytable1=gtk_table_new(num_knobs*2,3,FALSE);
-@@ -323,10 +323,10 @@
- 		
- 		} 
- 
--		g_signal_connect_swapped(GTK_OBJECT(radio_yes1[i]), "pressed",\
-+		g_signal_connect(GTK_OBJECT(radio_yes1[i]), "pressed",\
- 		      GTK_SIGNAL_FUNC(radio_yes_pressed), NULL);
- 
--		g_signal_connect_swapped(GTK_OBJECT(radio_no1[i]), "pressed",\
-+		g_signal_connect(GTK_OBJECT(radio_no1[i]), "pressed",\
- 		      GTK_SIGNAL_FUNC(radio_no_pressed), NULL);
- 
- 
-@@ -424,7 +424,7 @@
- 
- 		gtk_entry_set_text((GtkEntry *)str_entry[i],work->value);
- 		
--		g_signal_connect_swapped(GTK_OBJECT(str_entry[i]), "changed",\
-+		g_signal_connect(GTK_OBJECT(str_entry[i]), "changed",\
- 						GTK_SIGNAL_FUNC(entry_modified), NULL);
- 						
- 		gtk_table_attach((GtkTable *)mytable2, (GtkWidget *) str_label[i]
-@@ -914,13 +914,13 @@
- 	
- 	add_yes_button = gtk_button_new_with_label("OK");
- 	
--	g_signal_connect_swapped(GTK_OBJECT(add_yes_button), "clicked",\
-+	g_signal_connect(GTK_OBJECT(add_yes_button), "clicked",\
- 		      GTK_SIGNAL_FUNC(add_yes_pressed), NULL);
- 
- 
- 	add_no_button = gtk_button_new_with_label("Cancel");
- 	
--	g_signal_connect_swapped(GTK_OBJECT(add_no_button), "clicked",\
-+	g_signal_connect(GTK_OBJECT(add_no_button), "clicked",\
- 		      GTK_SIGNAL_FUNC(add_no_pressed), NULL);
- 			  
- 	add_hsep = gtk_hseparator_new ();
-@@ -1062,10 +1062,10 @@
- 		
- 			} 
- 
--			g_signal_connect_swapped(GTK_OBJECT(radio_yes1[r_num]), "pressed",\
-+			g_signal_connect(GTK_OBJECT(radio_yes1[r_num]), "pressed",\
- 			      GTK_SIGNAL_FUNC(radio_yes_pressed), NULL);
- 
--			g_signal_connect_swapped(GTK_OBJECT(radio_no1[r_num]), "pressed",\
-+			g_signal_connect(GTK_OBJECT(radio_no1[r_num]), "pressed",\
- 			      GTK_SIGNAL_FUNC(radio_no_pressed), NULL);
- 
- 			knob_label[r_num]=gtk_label_new(r_ptr[r_num].name);
-@@ -1102,7 +1102,7 @@
- 
- 			gtk_entry_set_text((GtkEntry *)str_entry[s_num],s_ptr[s_num].value);
- 		
--			g_signal_connect_swapped(GTK_OBJECT(str_entry[s_num]), "changed",\
-+			g_signal_connect(GTK_OBJECT(str_entry[s_num]), "changed",\
- 						GTK_SIGNAL_FUNC(entry_modified), NULL);
- 						
- 			gtk_table_attach((GtkTable *) mytable2, (GtkWidget *) str_label[s_num], 
diff -ruN thefish.old/pkg-message thefish/pkg-message
--- thefish.old/pkg-message	Tue Jan 28 02:04:31 2003
+++ thefish/pkg-message	Sun Feb  2 19:10:57 2003
@@ -1,5 +1,4 @@
-**********************************************************************
- HEADS UP: GTK+ 1.2 support has been dropped.
- ---------------------------------------------------------------------
- If you want to build The Fish without the GTK+ UI, use make -DNO_GUI
-**********************************************************************
+***********************************************************************
+To build The Fish without the GTK+ UI, define NO_GUI or WITHOUT_X11
+To enable the new (experimental) CDK console UI, define WITH_CDK
+***********************************************************************
--- thefish.diff ends here ---


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

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




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