diff options
author | tron <tron> | 1998-11-26 00:48:51 +0000 |
---|---|---|
committer | tron <tron> | 1998-11-26 00:48:51 +0000 |
commit | 0d499a6e617d8e20bed76269c4519df173838608 (patch) | |
tree | a870538a395bb46102a01780a1f0f83f357a0f3e /math | |
parent | 722c74c06b17ac5330514d8d6ae85614c923a3f3 (diff) | |
download | pkgsrc-0d499a6e617d8e20bed76269c4519df173838608.tar.gz |
Don't attempt to build package if egcs is installed.
Diffstat (limited to 'math')
-rw-r--r-- | math/octave/Makefile | 9 |
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> + |