head 1.4; access; symbols pkgsrc-2013Q2:1.4.0.22 pkgsrc-2013Q2-base:1.4 pkgsrc-2012Q4:1.4.0.20 pkgsrc-2012Q4-base:1.4 pkgsrc-2011Q4:1.4.0.18 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q2:1.4.0.16 pkgsrc-2011Q2-base:1.4 pkgsrc-2009Q4:1.4.0.14 pkgsrc-2009Q4-base:1.4 pkgsrc-2008Q4:1.4.0.12 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.10 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.8 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.6 pkgsrc-2008Q2-base:1.4 pkgsrc-2008Q1:1.4.0.4 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.4.0.2 pkgsrc-2007Q4-base:1.4 pkgsrc-2007Q3:1.3.0.14 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.3.0.12 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.3.0.10 pkgsrc-2007Q1-base:1.3 pkgsrc-2006Q4:1.3.0.8 pkgsrc-2006Q4-base:1.3 pkgsrc-2006Q3:1.3.0.6 pkgsrc-2006Q3-base:1.3 pkgsrc-2006Q2:1.3.0.4 pkgsrc-2006Q2-base:1.3 pkgsrc-2006Q1:1.3.0.2 pkgsrc-2006Q1-base:1.3 pkgsrc-2005Q4:1.2.0.2 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.1.0.18 pkgsrc-2005Q3-base:1.1 pkgsrc-2005Q2:1.1.0.16 pkgsrc-2005Q2-base:1.1 pkgsrc-2005Q1:1.1.0.14 pkgsrc-2005Q1-base:1.1 pkgsrc-2004Q4:1.1.0.12 pkgsrc-2004Q4-base:1.1 pkgsrc-2004Q3:1.1.0.10 pkgsrc-2004Q3-base:1.1 pkgsrc-2004Q2:1.1.0.8 pkgsrc-2004Q2-base:1.1 pkgsrc-2004Q1:1.1.0.6 pkgsrc-2004Q1-base:1.1 pkgsrc-2003Q4:1.1.0.4 pkgsrc-2003Q4-base:1.1 netbsd-1-6-1:1.1.0.2 netbsd-1-6-1-base:1.1; locks; strict; comment @# @; 1.4 date 2007.10.16.00.45.54; author tnn; state dead; branches; next 1.3; 1.3 date 2006.03.20.18.05.22; author jlam; state Exp; branches; next 1.2; 1.2 date 2005.10.11.02.03.18; author jschauma; state Exp; branches; next 1.1; 1.1 date 2002.10.22.11.35.40; author wiz; state Exp; branches; next ; desc @@ 1.4 log @Update to findutils-4.2.31 and enable DESTDIR support. The list of changes from 4.1 is long and includes a range of performance improvements, portability fixes and a locate(1) security fix. Most of the pkgsrc patches have also been merged or otherwise fixed upstream. @ text @$NetBSD: patch-ad,v 1.3 2006/03/20 18:05:22 jlam Exp $ --- xargs/Makefile.in.orig 1994-11-05 09:44:18.000000000 -0500 +++ xargs/Makefile.in @@@@ -102,7 +102,7 @@@@ install-man: echo installing $$man as $$mdir/$$inst; \ $(INSTALL_DATA) $(srcdir)/$$man $$mdir/$$inst; \ cdir=$(mandir)/cat$$sect; \ - if test -d $$cdir; then \ + if false && test -d $$cdir; then \ echo formatting $$man as $$cdir/$$inst; \ $(NROFF) -man $(srcdir)/$$man > $$cdir/$$inst; \ fi; \ @ 1.3 log @* Honor PKGINFODIR and PKGMANDIR, and remove use of obsolete INFO_DIR. * List info files directly in the PLIST. * Don't install the catman pages at all to fix PLIST problems. Bump the PKGREVISION to 6. @ text @d1 1 a1 1 $NetBSD$ @ 1.2 log @Somehow the last commit only got Makefile. Commit missing bits: Make this build and install under IRIX. To do this, we patch one file to get the proper include (not quite what's suggested in PR pkg/31273, but based on it), add the proper library to link against and simply ignore the fact that we don't have nroff (and thus don't install pre-formatted manual pages). @ text @d1 1 a1 1 $NetBSD: patch-ad,v 1.1 2002/10/22 11:35:40 wiz Exp $ d3 1 a3 1 --- xargs/Makefile.in.orig Sat Nov 5 15:44:18 1994 d5 1 a5 7 @@@@ -97,14 +97,15 @@@@ install-man: for man in $(MANS); do \ sect=`echo $$man|sed 's%.*\.\([0-9][a-z]*\)$$%\1%'`; \ inst=`basename $$man $$sect|sed '$(transform)'`$$sect; \ + inst0=`basename $$man $$sect|sed '$(transform)'`0; \ mdir=$(mandir)/man$$sect; \ $(top_srcdir)/mkinstalldirs $$mdir; \ d9 4 a12 5 if test -d $$cdir; then \ - echo formatting $$man as $$cdir/$$inst; \ - $(NROFF) -man $(srcdir)/$$man > $$cdir/$$inst; \ + echo formatting $$man as $$cdir/$$inst0; \ + $(NROFF) -man $(srcdir)/$$man > $$cdir/$$inst0 || true; \ a13 2 done @ 1.1 log @Install catted man pages with proper suffix. Bump PKGREVISION to 4.1nb1. Closes PR 18758. @ text @d1 1 a1 1 $NetBSD$ d19 1 a19 1 + $(NROFF) -man $(srcdir)/$$man > $$cdir/$$inst0; \ @