diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2007-07-22 11:37:27 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2007-07-22 11:37:27 +0000 |
commit | f5d8c1a58e14f252e18d3f57c4c887cb3f585f66 (patch) | |
tree | d78f47c25403bdd86d5eb7a3c0e39fe2e0c3dcb6 /dns | |
parent | ccb2a8b3403682f8e8095a99fe39e471b5baca1f (diff) |
- Ignore on FreeBSD 5.X
Notes
Notes:
svn path=/head/; revision=196054
Diffstat (limited to 'dns')
-rw-r--r-- | dns/maradns/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dns/maradns/Makefile b/dns/maradns/Makefile index 2296e34f5035..ac2c416eaf5f 100644 --- a/dns/maradns/Makefile +++ b/dns/maradns/Makefile @@ -28,6 +28,12 @@ MAN5= mararc.5 csv1.5 csv2.5 csv2_txt.5 MAN8= maradns.8 zoneserver.8 duende.8 #MANLANG= "" fr.ISO8859-1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 600000 +IGNORE= does not compile on FreeBSD 5.X, needs pidfile functions in libutil +.endif + post-patch: @${FIND} ${WRKSRC} -type f | ${XARGS} ${REINPLACE_CMD} -e \ 's|/etc/mara|${PREFIX}/etc/mara|g' @@ -84,4 +90,4 @@ do-install: ${CP} -R ${WRKSRC}/doc/en/text ${DOCSDIR}/en .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |