Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Feb 2002 20:14:38 -0500 (EST)
From:      Jonathan McGee <mcgee@wam.umd.edu>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/36918: Update to ports/misc/uf-view
Message-ID:  <200202220114.g1M1Ecg61086@caesar.rome>

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

>Number:         36918
>Category:       ports
>Synopsis:       Update to ports/misc/uf-view
>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:   Tue Apr 09 00:10:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Jonathan McGee
>Release:        FreeBSD 4.5-STABLE i386
>Organization:
n/a
>Environment:
System: FreeBSD caesar.rome 4.5-STABLE FreeBSD 4.5-STABLE #1: Sat Feb 16 19:50:47 EST 2002 mcgee@caesar.rome:/usr/src/sys/compile/CAESAR i386

>Description:
Sorry if this is the second posting, I forgot to correct the e-mail address in the first posting.  misc/uf-view has been refering to an out-of-date file and is unable to compile with the current port of gnome-vfs.  The supplied patch for the port in cvs at this time (21 Feb 2002) fixes both problems.  The file misc/uf-view/patch-uf-view.c was removed.

>How-To-Repeat:
n/a

>Fix:
Apply the patch.

--- uf-view.diff begins here ---
diff -uNr uf-view.orig/Makefile uf-view/Makefile
--- uf-view.orig/Makefile	Wed May 30 16:19:31 2001
+++ uf-view/Makefile	Sun Feb 17 13:01:32 2002
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	uf-view
-PORTVERSION=	1.4.2
+PORTVERSION=	1.6.1
 CATEGORIES=	misc
 MASTER_SITES=	http://hadess.net/files/
 
diff -uNr uf-view.orig/distinfo uf-view/distinfo
--- uf-view.orig/distinfo	Wed May 30 16:19:31 2001
+++ uf-view/distinfo	Sun Feb 17 12:43:33 2002
@@ -1 +1 @@
-MD5 (uf-view-1.4.2.tar.gz) = 36917754a13b06b0bbe183b7cab3a443
+MD5 (uf-view-1.6.1.tar.gz) = cd8f5584239bc042f6696f7eb82de077
diff -uNr uf-view.orig/files/patch-Makefile.in uf-view/files/patch-Makefile.in
--- uf-view.orig/files/patch-Makefile.in	Wed May 30 16:19:32 2001
+++ uf-view/files/patch-Makefile.in	Sun Feb 17 13:03:02 2002
@@ -1,8 +1,5 @@
-
-$FreeBSD: ports/misc/uf-view/files/patch-Makefile.in,v 1.1 2001/05/30 20:19:32 sobomax Exp $
-
---- Makefile.in	2001/05/30 20:07:13	1.1
-+++ Makefile.in	2001/05/30 20:07:31
+--- Makefile.in.orig	Sun Feb 17 12:58:34 2002
++++ Makefile.in	Sun Feb 17 12:59:39 2002
 @@ -120,7 +120,7 @@
  
  uf_view_SOURCES =  	uf-gui.c uf-gui.h 	uf-view.c uf-view.h
@@ -12,3 +9,12 @@
  
  EXTRA_DIST = uf-view.desktop $(foo_DATA) uf-view.spec.in
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+@@ -130,7 +130,7 @@
+ PROGRAMS =  $(bin_PROGRAMS)
+ 
+ 
+-DEFS = @DEFS@ -I. -I$(srcdir) -I.
++DEFS = @DEFS@ -I. -I$(srcdir) -I. -I/usr/X11R6/include/gnome-vfs-1.0
+ CPPFLAGS = @CPPFLAGS@
+ LDFLAGS = @LDFLAGS@
+ LIBS = @LIBS@
diff -uNr uf-view.orig/files/patch-uf-view.c uf-view/files/patch-uf-view.c
--- uf-view.orig/files/patch-uf-view.c	Wed May 30 16:19:32 2001
+++ uf-view/files/patch-uf-view.c	Wed Dec 31 19:00:00 1969
@@ -1,49 +0,0 @@
-
-$FreeBSD: ports/misc/uf-view/files/patch-uf-view.c,v 1.1 2001/05/30 20:19:32 sobomax Exp $
-
---- uf-view.c.orig	Sun May 13 21:13:07 2001
-+++ uf-view.c	Wed May 30 22:57:40 2001
-@@ -98,7 +98,7 @@
- 	if (url != NULL)
- 	{
- 		gchar foo[100] = "/tmp/ufXXXXXX";
--		mktemp(foo);
-+		mkstemp(foo);
- 
- 		appbar_send_msg(_("Fetching %s"), url);
- 
-@@ -206,6 +206,7 @@
- 	const gchar *authors[] = {
- 		("Bastien Nocera <hadess@hadess.net>"),
- 		("Robert Brady <rwb197@ecs.soton.ac.uk>"),
-+		("Drew Ogle <daliegri@wam.umd.edu>"),
- 		NULL,
- 	};
- 
-@@ -239,7 +240,7 @@
- void on_today_button_clicked(GtkWidget * button, gpointer user_data)
- {
- 	struct tm *time_struct;
--	glong curtime;
-+	time_t curtime;
- 	gint month, year, day;
- 
- 	curtime = time(0);
-@@ -383,7 +384,7 @@
- 	gchar foo[100] = "/tmp/ufXXXXXX";
- 
- 	/* Initialise */
--	mktemp(foo);
-+	mkstemp(foo);
- 
- 	if (date_error(year, month, day, 1997, 9, 17) == TRUE) {
- 		show_error(_("User Friendly did not exist at that time.\nPlease choose a later date."));
-@@ -466,7 +467,7 @@
- 	gchar foo[100] = "/tmp/ufXXXXXX";
- 
- 	/* Initialise */
--	mktemp(foo);
-+	mkstemp(foo);
- 
- 	if (date_error(year, month, day, 2000, 3, 17) == TRUE) {
- 		show_error(_("This Penny Arcade's stuff's too old.\nPlease choose a later date."));
--- uf-view.diff ends here ---


>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?200202220114.g1M1Ecg61086>