diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-04-10 21:37:43 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-04-10 21:37:43 +0000 |
commit | ca702b7472a02765c85493e45500186c4cdaaf5d (patch) | |
tree | 17c9cb042125929039544777dd37d88a391a840e /sysutils/dd_rescue | |
parent | - Fix dependencies, unbreak (diff) |
BROKEN on 4.x: Does not compile
Diffstat (limited to 'sysutils/dd_rescue')
-rw-r--r-- | sysutils/dd_rescue/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sysutils/dd_rescue/Makefile b/sysutils/dd_rescue/Makefile index 293e6e98e2d9..2b4e5098f74b 100644 --- a/sysutils/dd_rescue/Makefile +++ b/sysutils/dd_rescue/Makefile @@ -16,6 +16,12 @@ COMMENT= A dd tool suitable for rescuing data from a medium with errors WRKSRC= ${WRKDIR}/${PORTNAME} ALL_TARGET= default +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on FreeBSD 4.x" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/dd_rescue ${PREFIX}/bin .if !defined(NOPORTDOCS) @@ -23,4 +29,4 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/README.dd_rescue ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |