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

(-)Makefile (-4 / +3 lines)
Lines 2-12 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	moreutils
4
PORTNAME=	moreutils
5
PORTVERSION=	0.53
5
PORTVERSION=	0.55
6
PORTREVISION=	1
7
CATEGORIES=	sysutils
6
CATEGORIES=	sysutils
8
MASTER_SITES=	DEBIAN_POOL
7
MASTER_SITES=	DEBIAN_POOL
9
DISTNAME=	${PORTNAME}_${PORTVERSION}
8
DISTNAME=	${PORTNAME}_${PORTVERSION}.orig
10
9
11
MAINTAINER=	sunpoet@FreeBSD.org
10
MAINTAINER=	sunpoet@FreeBSD.org
12
COMMENT=	Additional Unix utilities
11
COMMENT=	Additional Unix utilities
Lines 21-27 Link Here
21
20
22
ALL_TARGET=	errnos.h ${CANNED_MANPAGES:R}
21
ALL_TARGET=	errnos.h ${CANNED_MANPAGES:R}
23
USES=		perl5 shebangfix
22
USES=		perl5 shebangfix
24
WRKSRC=		${WRKDIR}/${PORTNAME}
23
WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
25
24
26
CANNED_MANPAGES=errno.1 \
25
CANNED_MANPAGES=errno.1 \
27
		ifdata.1 \
26
		ifdata.1 \
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (moreutils_0.53.tar.gz) = 4f1842467759b6747f28a624c317a315f0b54a44440d2c8e2eec4d10144696fc
1
SHA256 (moreutils_0.55.orig.tar.gz) = da9d5cd145ceea967a65dd50031d168d66199c3eb41b9390b57f35d4a5808ab5
2
SIZE (moreutils_0.53.tar.gz) = 47613
2
SIZE (moreutils_0.55.orig.tar.gz) = 46500
(-)files/patch-moreutils-parallel.c (-6 / +14 lines)
Lines 1-6 Link Here
1
--- ./parallel.c.orig	2010-07-06 12:06:47.000000000 -0700
1
--- parallel.c.orig	2015-01-19 18:03:51 UTC
2
+++ ./parallel.c	2010-11-17 15:49:57.000000000 -0800
2
+++ parallel.c
3
@@ -87,6 +87,7 @@
3
@@ -31,6 +31,7 @@
4
 #include <sys/types.h>
5
 #include <sys/wait.h>
6
 #include <unistd.h>
7
+#include <signal.h>
8
 
9
 #ifdef __sun
10
 # include <sys/loadavg.h> /* getloadavg() */
11
@@ -112,6 +113,7 @@ void exec_child(char **command, char **a
4
 	return;
12
 	return;
5
 }
13
 }
6
 
14
 
Lines 8-14 Link Here
8
 int wait_for_child(int options) {
16
 int wait_for_child(int options) {
9
 	id_t id_ignored = 0;
17
 	id_t id_ignored = 0;
10
 	siginfo_t infop;
18
 	siginfo_t infop;
11
@@ -101,6 +102,18 @@
19
@@ -126,6 +128,18 @@ int wait_for_child(int options) {
12
 	}
20
 	}
13
 	return 1;
21
 	return 1;
14
 }
22
 }
Lines 25-29 Link Here
25
+#endif
33
+#endif
26
+
34
+
27
 
35
 
28
 int main(int argc, char **argv) {
36
 static int pipe_child(int fd, int orig_fd)
29
 	int maxjobs = -1;
37
 {

Return to bug 200104