diff options
author | sketch <sketch@pkgsrc.org> | 2006-07-10 20:38:50 +0000 |
---|---|---|
committer | sketch <sketch@pkgsrc.org> | 2006-07-10 20:38:50 +0000 |
commit | 068b9617d179beb88ea3ce5bfe5c289c46c2ebff (patch) | |
tree | 15eec79db9fb1d3e7c6721a9d6fb611b870c7f31 /pkgtools | |
parent | 17183945bbb31a647c767724d3f30fa9fe8a039d (diff) | |
download | pkgsrc-068b9617d179beb88ea3ce5bfe5c289c46c2ebff.tar.gz |
Solaris doesn't have mktemp (recently added to pkg_chk) in the base system, so
pull in as a dependancy.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_chk/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgtools/pkg_chk/Makefile b/pkgtools/pkg_chk/Makefile index 610feca28e5..71114af8ab5 100644 --- a/pkgtools/pkg_chk/Makefile +++ b/pkgtools/pkg_chk/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.35 2006/06/09 16:43:33 abs Exp $ +# $NetBSD: Makefile,v 1.36 2006/07/10 20:38:50 sketch Exp $ DISTNAME= pkg_chk-1.75 +PKGREVISION= 1 CATEGORIES= pkgtools MASTER_SITES= # empty DISTFILES= # empty @@ -22,6 +23,10 @@ INSTALLATION_DIRS= sbin man/man8 .include "../../mk/bsd.prefs.mk" +.if ${OPSYS} == "SunOS" +DEPENDS+= mktemp>=1.4:../../sysutils/mktemp +.endif + MAKECONF?= /etc/mk.conf #XXX: how to get GZIP_CMD?! |