diff options
author | simon <simon@FreeBSD.org> | 2006-09-04 01:46:04 +0800 |
---|---|---|
committer | simon <simon@FreeBSD.org> | 2006-09-04 01:46:04 +0800 |
commit | 9198e457185923814b518b3312dbb6093641b54a (patch) | |
tree | ec93c4eaff852443d0b97e5ec29661dccaa9dce7 /security | |
parent | e5237c86b8141830cfca53b618a71f8bff9a3b49 (diff) | |
download | freebsd-ports-gnome-9198e457185923814b518b3312dbb6093641b54a.tar.gz freebsd-ports-gnome-9198e457185923814b518b3312dbb6093641b54a.tar.zst freebsd-ports-gnome-9198e457185923814b518b3312dbb6093641b54a.zip |
Mark BROKEN on recent -CURRENT since it doesn't compile with OpenSSL
0.9.8b, and I haven't found out how to fix it yet (patches are gladly
accepted).
Diffstat (limited to 'security')
-rw-r--r-- | security/isakmpd/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/security/isakmpd/Makefile b/security/isakmpd/Makefile index 23d54c15d4f6..a9af68eff4f9 100644 --- a/security/isakmpd/Makefile +++ b/security/isakmpd/Makefile @@ -34,9 +34,14 @@ MAN5= isakmpd.conf.5 isakmpd.policy.5 MAN8= certpatch.8 isakmpd.8 MANCOMPRESSED= yes +.include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700019 +BROKEN= is not buildable with OpenSSL 0.9.8b +.endif + post-patch: .for f in conf.h ike_auth.c isakmpd.8 isakmpd.conf.5 isakmpd.policy.5 policy.h ${REINPLACE_CMD} -e "s!/etc/!${PREFIX}/etc/!" ${WRKSRC}/${f} .endfor -.include <bsd.port.mk> +.include <bsd.port.post.mk> |