diff options
author | jschauma <jschauma@pkgsrc.org> | 2005-10-11 01:59:49 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2005-10-11 01:59:49 +0000 |
commit | 13ba606245448e7541a4a80be1daf0909a8b60b2 (patch) | |
tree | 5486b69ecaced3a69b226cb179a8994842908bcc /sysutils | |
parent | 2188d182859d840f16e8d9731801bf3f76a136c3 (diff) | |
download | pkgsrc-13ba606245448e7541a4a80be1daf0909a8b60b2.tar.gz |
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).
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/findutils/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sysutils/findutils/Makefile b/sysutils/findutils/Makefile index 7a130150eed..e35477b7029 100644 --- a/sysutils/findutils/Makefile +++ b/sysutils/findutils/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2005/10/04 18:31:29 reed Exp $ +# $NetBSD: Makefile,v 1.19 2005/10/11 01:59:49 jschauma Exp $ DISTNAME= findutils-4.1 PKGREVISION= 4 @@ -13,11 +13,18 @@ GNU_CONFIGURE= YES CONFIGURE_HAS_INFODIR= NO CONFIGURE_HAS_MANDIR= NO MAKE_ENV+= INFO_DIR=${INFO_DIR} +LDFLAGS.IRIX+= -lgen INFO_FILES= find.info .include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "IRIX" +PLIST_SUBST+= USE_CATMAN="@comment " +.else +PLIST_SUBST+= USE_CATMAN="" +.endif + .if defined(GNU_PROGRAM_PREFIX) CONFIGURE_ARGS+= --program-prefix=${GNU_PROGRAM_PREFIX} .endif |