diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2007-01-14 10:13:13 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2007-01-14 10:13:13 +0000 |
commit | 407b894a2215c7721ef0ef248f628da2710892c7 (patch) | |
tree | 1cc0259ad737d9f9b31c5b4827047c9b2bd8aa61 /emulators/vmw/Makefile | |
parent | 87a3371cad313e1c817fcc758f1d2d5d57206366 (diff) |
- mark IGNORE on FreeBSD < 6.0
Notes
Notes:
svn path=/head/; revision=182350
Diffstat (limited to 'emulators/vmw/Makefile')
-rw-r--r-- | emulators/vmw/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/emulators/vmw/Makefile b/emulators/vmw/Makefile index dbd66b317393..a7b13bd6f335 100644 --- a/emulators/vmw/Makefile +++ b/emulators/vmw/Makefile @@ -13,7 +13,7 @@ MASTER_SITES= http://chitchat.at.infoseek.co.jp/vmware/ MAINTAINER= dinoex@FreeBSD.org COMMENT= VM Back Command Line Tools for VMware -ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS= i386 WRKSRC= ${WRKDIR}/${PORTNAME}/src USE_ICONV= yes @@ -21,7 +21,7 @@ SBINS= vmw vmshrink vmftp .if !defined(NOPORTDOCS) PORTDOCS= README-eucj.TXT README-sjis.TXT README.TXT -.for i in ${SBINS} +.for i in ${SBINS} PORTDOCS+= ${i}-eucj.txt ${i}-sjis.txt ${i}.txt .endfor .endif @@ -38,4 +38,10 @@ do-install: @cd ${WRKSRC}/.. && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 600000 +IGNORE= not supported, CLOCK_REALTIME needed +.endif + +.include <bsd.port.post.mk> |