diff options
author | asau <asau@pkgsrc.org> | 2009-04-18 11:17:33 +0000 |
---|---|---|
committer | asau <asau@pkgsrc.org> | 2009-04-18 11:17:33 +0000 |
commit | bd510be7a3ed2b1a2703354938679297c358a642 (patch) | |
tree | 1fd1c74f95b71e75429a9b7ea31e2f721755be9f /math | |
parent | 059ee64a0aab2c1a64fc8994f8dcce897deffd93 (diff) | |
download | pkgsrc-bd510be7a3ed2b1a2703354938679297c358a642.tar.gz |
Don't depend on Fortran.
CLISP and SBCL are build dependencies.
Diffstat (limited to 'math')
-rw-r--r-- | math/openaxiom/Makefile | 4 | ||||
-rw-r--r-- | math/openaxiom/options.mk | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/math/openaxiom/Makefile b/math/openaxiom/Makefile index 95f3e00964a..99a1e946d68 100644 --- a/math/openaxiom/Makefile +++ b/math/openaxiom/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.2 2009/04/10 05:21:59 asau Exp $ +# $NetBSD: Makefile,v 1.3 2009/04/18 11:17:33 asau Exp $ # DISTNAME= open-axiom-1.2.1 PKGNAME= ${DISTNAME:S/open-/open/} +PKGREVISION= 1 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=open-axiom/} EXTRACT_SUFX= .tar.bz2 @@ -16,7 +17,6 @@ MAKE_JOBS_SAFE= no GNU_CONFIGURE= yes USE_TOOLS+= gmake makeinfo awk:run -USE_LANGUAGES+= fortran BUILD_DEPENDS+= noweb-[0-9]*:../../devel/noweb CONFIGURE_ENV= HOST_AWK=${TOOLS_PLATFORM.awk:Q} diff --git a/math/openaxiom/options.mk b/math/openaxiom/options.mk index d5c15b37636..ecae31b97e5 100644 --- a/math/openaxiom/options.mk +++ b/math/openaxiom/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1.1.1 2008/08/28 20:07:51 ahoka Exp $ +# $NetBSD: options.mk,v 1.2 2009/04/18 11:17:33 asau Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.openaxiom PKG_OPTIONS_REQUIRED_GROUPS= lisp @@ -13,12 +13,12 @@ PKG_SUGGESTED_OPTIONS+= clisp x11 # Select Lisp backend .if !empty(PKG_OPTIONS:Mclisp) FASL= fas -DEPENDS+= clisp>=2.41:../../lang/clisp +BUILD_DEPENDS+= clisp>=2.41:../../lang/clisp CONFIGURE_ARGS+= --with-lisp=clisp .endif .if !empty(PKG_OPTIONS:Msbcl) FASL= fasl -DEPENDS+= sbcl-[0-9]*:../../lang/sbcl +BUILD_DEPENDS+= sbcl-[0-9]*:../../lang/sbcl CONFIGURE_ARGS+= --with-lisp=sbcl .endif .if !empty(PKG_OPTIONS:Mecl) |