aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-09-18 17:49:31 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-09-18 17:49:31 +0000
commitfe54d2a7c76c819f48572aaac53161c6073e4bc2 (patch)
treecd3a2332516a8e0f6a9b518a6f6eb3a97af4baa7 /misc
parentb64acc87813cd14f5610cecd37bb98e52497b3fa (diff)
downloadports-fe54d2a7c76c819f48572aaac53161c6073e4bc2.tar.gz
ports-fe54d2a7c76c819f48572aaac53161c6073e4bc2.zip
Notes
Diffstat (limited to 'misc')
-rw-r--r--misc/goblin/Makefile4
-rw-r--r--misc/lile/Makefile8
2 files changed, 11 insertions, 1 deletions
diff --git a/misc/goblin/Makefile b/misc/goblin/Makefile
index 06fbde562900..31a67f2b98eb 100644
--- a/misc/goblin/Makefile
+++ b/misc/goblin/Makefile
@@ -37,6 +37,10 @@ WISH= ${LOCALBASE}/bin/wish8.3
.include <bsd.port.pre.mk>
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
.if ${OSVERSION} < 500035
CXXFLAGS+= -fhuge-objects
.endif
diff --git a/misc/lile/Makefile b/misc/lile/Makefile
index 083f36afba44..f6d26de868a7 100644
--- a/misc/lile/Makefile
+++ b/misc/lile/Makefile
@@ -19,9 +19,15 @@ COMMENT= An Input Line Editor that wraps itself around programs
MAN1= ile.1
PLIST_FILES= bin/ile
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 502126
+BROKEN= "Does not compile on FreeBSD >= 5.x"
+.endif
+
do-configure:
@(cd ${WRKSRC}; ${MV} Makefile Makefile.old; \
${SED} -e s:/usr/local:${PREFIX}: <Makefile.old > Makefile; \
${ECHO_CMD} all: ile >> Makefile; ${ECHO_CMD} CC=cc ${CFLAGS} >> Makefile)
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>