diff options
author | David Seifert <soap@gentoo.org> | 2016-02-07 23:43:01 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-02-07 23:43:29 +0100 |
commit | 79af85fc5f101a70f1aafcf5565904ff42de3d8a (patch) | |
tree | 39a3a266e93a9c067328be78a0113965a45a0597 /sci-calculators/orpie/files | |
parent | dev-lang/go: sync live ebuild (diff) | |
download | gentoo-79af85fc5f101a70f1aafcf5565904ff42de3d8a.tar.gz gentoo-79af85fc5f101a70f1aafcf5565904ff42de3d8a.tar.bz2 gentoo-79af85fc5f101a70f1aafcf5565904ff42de3d8a.zip |
sci-calculators/orpie: Version bump to 1.5.2
Gentoo-Bug: 532776
* EAPI=6
* Add missing dependency on dev-ml/camlp4 (thanks Quentin Minster)
* Amend patches for -p1
Package-Manager: portage-2.2.27
Diffstat (limited to 'sci-calculators/orpie/files')
-rw-r--r-- | sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch | 4 | ||||
-rw-r--r-- | sci-calculators/orpie/files/orpie-1.5.2-nogsl.patch | 51 |
2 files changed, 53 insertions, 2 deletions
diff --git a/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch b/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch index 45894f2039dc..8719bfd1c5d3 100644 --- a/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch +++ b/sci-calculators/orpie/files/orpie-1.5.1-nogsl.patch @@ -1,5 +1,5 @@ ---- Makefile.in.orig 2010-06-03 21:02:14.000000000 +0100 -+++ Makefile.in 2010-06-03 21:02:49.000000000 +0100 +--- orpie-1.5.1/Makefile.in.orig 2010-06-03 21:02:14.000000000 +0100 ++++ orpie-1.5.1/Makefile.in 2010-06-03 21:02:49.000000000 +0100 @@ -38,7 +38,7 @@ CURSES_LIB = @CURSES_LIB@ GSL_LIB = @GSL_LIB@ diff --git a/sci-calculators/orpie/files/orpie-1.5.2-nogsl.patch b/sci-calculators/orpie/files/orpie-1.5.2-nogsl.patch new file mode 100644 index 000000000000..75a56a79c0e6 --- /dev/null +++ b/sci-calculators/orpie/files/orpie-1.5.2-nogsl.patch @@ -0,0 +1,51 @@ +--- orpie-1.5.2/Makefile.in ++++ orpie-1.5.2/Makefile.in +@@ -44,7 +44,7 @@ + CURSES_LIB = @CURSES_LIB@ + GSL_LIB = @GSL_LIB@ + +-INCLUDES = -I ./curses -I ./gsl -I ./units ++INCLUDES = -I ./curses -I /usr/lib/ocaml/gsl -I ./units + BFLAGS = -pp camlp4o -g $(INCLUDES) -thread + OFLAGS = -pp camlp4o $(INCLUDES) -thread + BLFLAGS = -custom -cclib '$(LDFLAGS) $(CURSES_LIB) $(GSL_LIB) -lm' +@@ -78,17 +78,8 @@ + CURSES_BOBJS = $(CURSES_CMO) $(CURSES_COBJS) + CURSES_OOBJS = $(CURSES_CMX) $(CURSES_COBJS) + +-GSL_CMO = gsl/gsl_error.cmo gsl/gsl_blas.cmo gsl/gsl_complex.cmo gsl/gsl_matrix.cmo gsl/gsl_matrix_complex.cmo \ +- gsl/gsl_vector.cmo gsl/gsl_vector_complex.cmo gsl/gsl_vector_flat.cmo gsl/gsl_matrix_flat.cmo \ +- gsl/gsl_vector_complex_flat.cmo gsl/gsl_matrix_complex_flat.cmo gsl/gsl_vectmat.cmo \ +- gsl/gsl_permut.cmo gsl/gsl_linalg.cmo gsl/gsl_fun.cmo +-GSL_CMX = $(GSL_CMO:.cmo=.cmx) +-GSL_COBJS = gsl/mlgsl_error.o gsl/mlgsl_blas.o gsl/mlgsl_blas_complex.o gsl/mlgsl_complex.o gsl/mlgsl_blas_float.o \ +- gsl/mlgsl_blas_complex_float.o gsl/mlgsl_matrix_complex.o gsl/mlgsl_matrix_double.o gsl/mlgsl_matrix_float.o \ +- gsl/mlgsl_matrix_complex_float.o gsl/mlgsl_vector_double.o gsl/mlgsl_vector_float.o \ +- gsl/mlgsl_permut.o gsl/mlgsl_linalg.o gsl/mlgsl_linalg_complex.o gsl/mlgsl_fun.o gsl/mlgsl_math.o gsl/mlgsl_sf.o +-GSL_BOBJS = $(GSL_COBJS) $(GSL_CMO) +-GSL_OOBJS = $(GSL_COBJS) $(GSL_CMX) ++GSL_BOBJS = /usr/lib/ocaml/gsl/gsl.cma ++GSL_OOBJS = /usr/lib/ocaml/gsl/gsl.cmxa + + UNITS_CMO = units/units.cmo + UNITS_CMX = $(UNITS_CMO:.cmo=.cmx) +@@ -324,7 +305,7 @@ + config.status: configure + ./config.status --recheck + +-configure: configure.in ++configure: configure.ac + autoconf + + # clean +--- orpie-1.5.2/curses_keys.ml ++++ orpie-1.5.2/curses_keys.ml +@@ -19,7 +19,7 @@ + *) + + open Curses;; +- ++open Curses_assist;; + + begin + let std = initscr () in |