diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-17 08:42:52 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-17 08:42:52 +0000 |
commit | fc59aa9e7335af2bd81f66553e7fa5772b970d20 (patch) | |
tree | ba61d1df7748b9ce5fa8a4782783c842171eea59 | |
parent | 3049538b7156bbbba2e4fa52abf521de189c1ffb (diff) | |
download | ports-fc59aa9e7335af2bd81f66553e7fa5772b970d20.tar.gz ports-fc59aa9e7335af2bd81f66553e7fa5772b970d20.zip |
Notes
-rw-r--r-- | misc/videotext/Makefile | 8 | ||||
-rw-r--r-- | textproc/gmat/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/misc/videotext/Makefile b/misc/videotext/Makefile index 3152bb071758..3498b9656539 100644 --- a/misc/videotext/Makefile +++ b/misc/videotext/Makefile @@ -25,4 +25,10 @@ MAN1= tunerctl.1 videotext.1 vtxget.1 FONTSDIR= lib/X11/fonts/local PLIST_SUB= FONTSDIR=${FONTSDIR} -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502102 +BROKEN= "Does not build" +.endif + +.include <bsd.port.post.mk> diff --git a/textproc/gmat/Makefile b/textproc/gmat/Makefile index 8259ea58137d..48ef13668716 100644 --- a/textproc/gmat/Makefile +++ b/textproc/gmat/Makefile @@ -20,6 +20,12 @@ RUN_DEPENDS= ${LOCALBASE}/bin/nsgmls:${PORTSDIR}/textproc/sp \ ${LOCALBASE}/share/sgml/docbook/3.1/docbook.dtd:${PORTSDIR}/textproc/docbook-310 \ gv:${PORTSDIR}/print/gv +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502102 +BROKEN= "Does not build" +.endif + post-install: (cd ${WRKSRC}; tar cf - test) | (cd ${LOCALBASE}/share/gmat; tar xvf -) # Change the pathnames in CATALOG @@ -28,4 +34,4 @@ post-install: s:/usr/local/prod:${LOCALBASE}/share/gmat:g" \ > ${LOCALBASE}/share/gmat/test/CATALOG ) -.include <bsd.port.mk> +.include <bsd.port.post.mk> |