diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2010-08-30 11:22:50 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2010-08-30 11:22:50 +0000 |
commit | 07e1fffbe8d9f76e3c6f6a3c06aeccdac55e3904 (patch) | |
tree | 984a62f4065c975c28a6a0e58f4107f3d4055a97 | |
parent | - Update to 4.10 (diff) |
- Mark as broken on 6.X
Reported by: pointyhat
Approved by: mentors (implicit)
Notes
Notes:
svn path=/head/; revision=260196
-rw-r--r-- | mail/dma/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/dma/Makefile b/mail/dma/Makefile index fa42124eea66..2561f153ab6d 100644 --- a/mail/dma/Makefile +++ b/mail/dma/Makefile @@ -24,6 +24,12 @@ LDFLAGS+= -L${OPENSSLLIB} SUB_FILES= pkg-message +.include <bsd.port.pre.mk> + +.if ${OSVERSION} <= 700000 +BROKEN= Does not build on 6.X +.endif + post-patch: @${REINPLACE_CMD} -e 's,/etc/dma,${PREFIX}/etc/dma,g' \ ${WRKSRC}/dma.8 \ @@ -51,4 +57,4 @@ do-install: post-install: @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |