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

(-)gv/Makefile (-3 / +3 lines)
Lines 7-14 Link Here
7
#
7
#
8
8
9
PORTNAME=	gv
9
PORTNAME=	gv
10
PORTVERSION=	3.6.7
10
PORTVERSION=	3.6.8
11
PORTREVISION=	1
12
CATEGORIES=	print
11
CATEGORIES=	print
13
MASTER_SITES=	${MASTER_SITE_GNU}
12
MASTER_SITES=	${MASTER_SITE_GNU}
14
MASTER_SITE_SUBDIR=	${PORTNAME}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
Lines 23-29 Link Here
23
USE_GMAKE=	yes
22
USE_GMAKE=	yes
24
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
25
CONFIGURE_ARGS+=	--libdir=${PREFIX}/lib/X11 \
24
CONFIGURE_ARGS+=	--libdir=${PREFIX}/lib/X11 \
26
			--enable-setenv-code
25
			--enable-setenv-code \
26
			--enable-SIGCHLD-fallback
27
27
28
MAN1=		gv.1 gv-update-userconfig.1
28
MAN1=		gv.1 gv-update-userconfig.1
29
INFO=		gv
29
INFO=		gv
(-)gv/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (gv-3.6.7.tar.gz) = fdad147dd0440446cf9daaffca83343f
1
MD5 (gv-3.6.8.tar.gz) = 581ef7834c0e07ac1536b1ee8faa11d5
2
SHA256 (gv-3.6.7.tar.gz) = ee71a4f1604fe00388242c3f3c055aa067cd60bf72e6d5249897455d559fb3b1
2
SHA256 (gv-3.6.8.tar.gz) = 2094e5c49dff6aa863caa878373fc60b593d97340e44721f02e972ed385106c5
3
SIZE (gv-3.6.7.tar.gz) = 545104
3
SIZE (gv-3.6.8.tar.gz) = 544998
(-)gv/files/patch-src-callbacks.c (-20 lines)
Lines 1-20 Link Here
1
--- src/callbacks.c.orig	2009-04-10 00:01:22.379498762 -0400
2
+++ src/callbacks.c	2009-04-10 00:02:32.330844813 -0400
3
@@ -957,7 +957,7 @@
4
     
5
     BEGINMESSAGE(cb_presentation)
6
 
7
-    sigold = signal(SIGCLD, SIG_IGN); /* Avoid zombies */
8
+    sigold = signal(SIGCHLD, SIG_IGN); /* Avoid zombies */
9
     if (!(pid = fork()))
10
     {
11
        /* We have to close all open file descriptors so the child does not
12
@@ -969,7 +969,7 @@
13
        printf("Cannot exec %s\n", gv_bin);
14
        exit(1);
15
     }
16
-    signal(SIGCLD, sigold); /* restore signal handler */
17
+    signal(SIGCHLD, sigold); /* restore signal handler */
18
     
19
     ENDMESSAGE(cb_presentation)
20
 }
(-)gv/files/patch-src_FileSel.c (+10 lines)
Line 0 Link Here
1
--- src/FileSel.c.orig	2010-01-16 19:32:22.000000000 -0500
2
+++ src/FileSel.c	2010-01-16 19:33:09.000000000 -0500
3
@@ -1488,6 +1488,7 @@
4
      else          SetIncompleteDirectoryView(fs,cannotopenList);
5
      chdir(APP_DIR);
6
      ENDMESSAGE(SetDirectoryView)
7
+     (void)closedir(dirp);
8
      return;
9
    }
10

Return to bug 142898