summaryrefslogtreecommitdiff
path: root/sysutils/coreutils
diff options
context:
space:
mode:
authordholland <dholland>2009-05-17 23:11:21 +0000
committerdholland <dholland>2009-05-17 23:11:21 +0000
commitda3ba7b75924dec2a99f24dab36b19adb08827ab (patch)
treee4bf5070688902930e34030f104f1f4e85177b80 /sysutils/coreutils
parent08df2ea1abc15fca2684f66182010559593b4a36 (diff)
downloadpkgsrc-da3ba7b75924dec2a99f24dab36b19adb08827ab.tar.gz
Hack around misuse of math.h. From Heath Caldwell in PR 41350.
Nominally a build fix, but bump PKGREVISION as a precaution.
Diffstat (limited to 'sysutils/coreutils')
-rw-r--r--sysutils/coreutils/Makefile4
-rw-r--r--sysutils/coreutils/distinfo3
-rw-r--r--sysutils/coreutils/patches/patch-ac15
3 files changed, 20 insertions, 2 deletions
diff --git a/sysutils/coreutils/Makefile b/sysutils/coreutils/Makefile
index 6069cc7b364..7d0ac196f71 100644
--- a/sysutils/coreutils/Makefile
+++ b/sysutils/coreutils/Makefile
@@ -1,7 +1,9 @@
-# $NetBSD: Makefile,v 1.47 2008/05/15 20:01:03 tnn Exp $
+# $NetBSD: Makefile,v 1.48 2009/05/17 23:11:21 dholland Exp $
.include "../../sysutils/coreutils/Makefile.common"
+PKGREVISION= 1
+
CONFLICTS= fileutils-[0-9]* linuxls-[0-9]* sh-utils-[0-9]* textutils-[0-9]*
# if GNU_PROGRAM_PREFIX == 'g'
diff --git a/sysutils/coreutils/distinfo b/sysutils/coreutils/distinfo
index 101c7aeaca0..40231ec1a3c 100644
--- a/sysutils/coreutils/distinfo
+++ b/sysutils/coreutils/distinfo
@@ -1,10 +1,11 @@
-$NetBSD: distinfo,v 1.17 2008/12/02 10:16:30 tron Exp $
+$NetBSD: distinfo,v 1.18 2009/05/17 23:11:21 dholland Exp $
SHA1 (coreutils-6.12.tar.gz) = 1bb297fdf8b38ca19ab5252c6179b1b2aecd020e
RMD160 (coreutils-6.12.tar.gz) = 95b941657242cfc3f67d721e582a60a4090802ec
Size (coreutils-6.12.tar.gz) = 9001890 bytes
SHA1 (patch-aa) = 0bfbfe0f60576d2bb8b996df297c79ccf0806115
SHA1 (patch-ab) = bc1e79814a6ebc177862eae1816a24e3a4a5c577
+SHA1 (patch-ac) = f30b98b85cd5f9abbcf42d7265c8cc3b400aaf2a
SHA1 (patch-ad) = 145a88a6731fbec315037a140677f2fc763e5026
SHA1 (patch-ag) = 3e24b8e025a151eb7bed4c778a326da5eed09ded
SHA1 (patch-ah) = 33fe73aac79731f980fcbe1afda4c64537aff742
diff --git a/sysutils/coreutils/patches/patch-ac b/sysutils/coreutils/patches/patch-ac
new file mode 100644
index 00000000000..c56fceb5198
--- /dev/null
+++ b/sysutils/coreutils/patches/patch-ac
@@ -0,0 +1,15 @@
+$NetBSD: patch-ac,v 1.10 2009/05/17 23:11:21 dholland Exp $
+
+Hack around misuse of math.h.
+Upstream: already fixed upstream in coreutils 7.x.
+
+--- src/seq.c.orig Mon May 4 16:07:31 2009
++++ src/seq.c Mon May 4 16:08:05 2009
+@@ -20,7 +20,6 @@
+ #include <getopt.h>
+ #include <stdio.h>
+ #include <sys/types.h>
+-#include <math.h>
+ #include <float.h>
+
+ #include "system.h"