diff options
author | tnn <tnn@pkgsrc.org> | 2009-09-20 11:57:16 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2009-09-20 11:57:16 +0000 |
commit | 7239b9b9f5153eb43c60ac808d1c2501949002c6 (patch) | |
tree | 1756f2a744d29840ae578260dd13eeed7e4baedb /pkgtools/pkgdiff | |
parent | 12bd4001509e97d945e64252c7533c2b9398948a (diff) | |
download | pkgsrc-7239b9b9f5153eb43c60ac808d1c2501949002c6.tar.gz |
depend on diffutils on Tru64
Diffstat (limited to 'pkgtools/pkgdiff')
-rw-r--r-- | pkgtools/pkgdiff/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgtools/pkgdiff/Makefile b/pkgtools/pkgdiff/Makefile index 68075bfd640..5461eeb3907 100644 --- a/pkgtools/pkgdiff/Makefile +++ b/pkgtools/pkgdiff/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.67 2009/04/09 00:48:13 joerg Exp $ +# $NetBSD: Makefile,v 1.68 2009/09/20 11:57:16 tnn Exp $ # DISTNAME= pkgdiff-0.121 @@ -25,13 +25,15 @@ MAKE_ENV+= PKGSRCDIR=${_PKGSRCDIR:Q} BUILD_DEFS+= MANINSTALL -.if ${OPSYS} == "SunOS" +.if ${OPSYS} == "SunOS" || ${OPSYS} == "OSF1" DEPENDS+= diffutils-[0-9]*:../../devel/diffutils -DIFF?= ${LOCALBASE}/bin/${GNU_PROGRAM_PREFIX}diff -MANINSTALL= catinstall +DIFF?= ${PREFIX}/bin/${GNU_PROGRAM_PREFIX}diff .else DIFF?= diff .endif +.if ${OPSYS} == "SunOS" +MANINSTALL= catinstall +.endif INSTALLATION_DIRS= bin .if !empty(MANINSTALL:Mcatinstall) |