diff options
author | Junqian Gordon Xu <xjqian@gmail.com> | 2008-01-08 18:20:21 +0000 |
---|---|---|
committer | Junqian Gordon Xu <xjqian@gmail.com> | 2008-01-08 18:20:21 +0000 |
commit | 50a7d7f1d703deadc727cf61d6f2bb38e0d2ed62 (patch) | |
tree | 73ccc94ec41e9ad55abe173a46dfd4ad926b1011 /packages/octave/octave.inc | |
parent | 514c5a89d85f68e9d68de280aa437702e9afbe3c (diff) |
octave: fix packaging (QA), be explicit on dependency/functionality during configure.
Diffstat (limited to 'packages/octave/octave.inc')
-rw-r--r-- | packages/octave/octave.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/octave/octave.inc b/packages/octave/octave.inc index 414f95bf83..5d8fe756f9 100644 --- a/packages/octave/octave.inc +++ b/packages/octave/octave.inc @@ -1,7 +1,4 @@ -DESCRIPTION = "GNU Octave is a high-level language, primarily intended for numerical computations. \ -It provides a convenient command line interface for solving linear and nonlinear problems numerically, \ -and for performing other numerical experiments using a language that is mostly compatible with Matlab. \ -It may also be used as a batch-oriented language." +DESCRIPTION = "Matlab alternative for numerical computations" HOMEPAGE = "http://www.gnu.org/software/octave/" SECTION = "console/scientific" LICENSE = "GPL" @@ -11,7 +8,11 @@ RDEPENDS = "libfftw3" inherit autotools -EXTRA_OECONF = "--without-hdf5" +EXTRA_OECONF = "--without-hdf5 --without-glpk -without-umfpack \ + --without-colamd --without-ccolamd --without-cholmod \ + --without-cxsparse" + +# additional missing dependency/functionality: Qhull gperf do_configure() { gnu-configize @@ -26,4 +27,3 @@ FILES_${PN}-m = "${datadir}/${PN}/*" do_stage() { autotools_stage_all } - |