summaryrefslogtreecommitdiff
path: root/math/octave
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>1998-11-26 00:48:51 +0000
committertron <tron@pkgsrc.org>1998-11-26 00:48:51 +0000
commit1c4da2d8c074868ce5692089ee7d1ae1138be3bf (patch)
treea870538a395bb46102a01780a1f0f83f357a0f3e /math/octave
parent5c38a8ee46299f27a69fd9ba7f46236cd870e9d6 (diff)
downloadpkgsrc-1c4da2d8c074868ce5692089ee7d1ae1138be3bf.tar.gz
Don't attempt to build package if egcs is installed.
Diffstat (limited to 'math/octave')
-rw-r--r--math/octave/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile
index ceba687becd..6aba7480fb9 100644
--- a/math/octave/Makefile
+++ b/math/octave/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 1998/11/26 00:01:32 tron Exp $
+# $NetBSD: Makefile,v 1.4 1998/11/26 00:48:51 tron Exp $
# FreeBSD Id: Makefile,v 1.18 1998/09/27 20:10:45 steve Exp
DISTNAME= octave-2.0.13
@@ -28,7 +28,13 @@ LDFLAGS+= -L${PREFIX}/lib
INFO_FILES= liboctave.info octave.info
LIBOCTAVE_INFO= liboctave.info liboctave.info-1 liboctave.info-2 liboctave.info-3
+GCC_VERSION!= gcc --version
+.if (${GCC_VERSION:C/-.*$$//} == egcs) && !target(clean)
+IGNORE= "cannot be built with egcs yet"
+.endif
+
post-extract:
+ echo ${GCC_VERSION:C/-.*$$//}
${MKDIR} ${WRKDIR}/include
${LN} -s ${PREFIX}/include/ncurses.h ${WRKDIR}/include
@@ -45,3 +51,4 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/doc/faq/Octave-FAQ.ps ${PREFIX}/share/octave/2.0.13/doc
.include <../../mk/bsd.pkg.mk>
+