View | Details | Raw Unified | Return to bug 36918
Collapse All | Expand All

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

Return to bug 36918