diff options
author | tron <tron@pkgsrc.org> | 2014-01-14 22:43:19 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2014-01-14 22:43:19 +0000 |
commit | a1c99d325c2c4deb144b944b0641979867ef7f6b (patch) | |
tree | 01deb63eff14783e52dbaeb6df4eb09281f18a2c /net/ngrep | |
parent | e8a5545b14cd7ec08e076b12f7ca6084e819e56b (diff) | |
download | pkgsrc-a1c99d325c2c4deb144b944b0641979867ef7f6b.tar.gz |
Fix build with GNU Make 4.0 and newer.
Diffstat (limited to 'net/ngrep')
-rw-r--r-- | net/ngrep/distinfo | 4 | ||||
-rw-r--r-- | net/ngrep/patches/patch-ab | 20 |
2 files changed, 17 insertions, 7 deletions
diff --git a/net/ngrep/distinfo b/net/ngrep/distinfo index e047ff80658..3dc9c3ec7d7 100644 --- a/net/ngrep/distinfo +++ b/net/ngrep/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.14 2006/11/29 10:28:48 adam Exp $ +$NetBSD: distinfo,v 1.15 2014/01/14 22:43:19 tron Exp $ SHA1 (ngrep-1.45.tar.bz2) = f26090a6ac607db66df99c6fa9aef74968f3330f RMD160 (ngrep-1.45.tar.bz2) = d4b89dfa23f6a7c65d3ccefc846362054a46605f Size (ngrep-1.45.tar.bz2) = 463361 bytes SHA1 (patch-aa) = 7185b12af40ce9581e59c28086e4c0bfa481c804 -SHA1 (patch-ab) = c2ff90264a29fc18e16d2b43e7403d784a4ef584 +SHA1 (patch-ab) = 011df9c7bcd9c1f3d6a40309a443a68607a66afd SHA1 (patch-ac) = 4b070c7f0e577cd5e9cbff17ee9bac1be7860581 SHA1 (patch-ad) = d36cbf882976bbe6af98aa02fa0d0386741e0f87 diff --git a/net/ngrep/patches/patch-ab b/net/ngrep/patches/patch-ab index 9a7a7f990a8..d5269914f21 100644 --- a/net/ngrep/patches/patch-ab +++ b/net/ngrep/patches/patch-ab @@ -1,10 +1,11 @@ -$NetBSD: patch-ab,v 1.6 2006/10/07 07:24:49 rillig Exp $ +$NetBSD: patch-ab,v 1.7 2014/01/14 22:43:19 tron Exp $ -Tags: not-for-upstream +1.) Install manual pages in correct directory. +2.) Fix build with version 4.0 of GNU make. ---- Makefile.in.orig 2005-02-25 10:20:17.000000000 +0000 -+++ Makefile.in -@@ -25,7 +25,7 @@ exec_prefix = @exec_prefix@ +--- Makefile.in.orig 2006-11-28 13:35:37.000000000 +0000 ++++ Makefile.in 2014-01-14 22:40:38.000000000 +0000 +@@ -25,7 +25,7 @@ bindir = $(prefix)/bin datadir = $(prefix)/share @@ -13,3 +14,12 @@ Tags: not-for-upstream BINDIR_INSTALL = $(prefix)/bin MANDIR_INSTALL = $(mandir)/man8 +@@ -63,7 +63,7 @@ + rm -f config.status config.cache config.log config.h Makefile + + $(REGEX_OBJS): $(REGEX_OBJS:.o=.c) $(REGEX_DIR)/*.h +- $(MAKE) $(MAKEFLAGS) -C $(REGEX_DIR) $(notdir $(REGEX_OBJS)) ++ $(MAKE) -C $(REGEX_DIR) $(notdir $(REGEX_OBJS)) + + $(OBJS): Makefile ngrep.c ngrep.h + |