summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Fabbro <bicatali@gentoo.org>2009-02-03 14:37:55 +0000
committerSebastien Fabbro <bicatali@gentoo.org>2009-02-03 14:37:55 +0000
commit9ce1356d1d2129a4cc66a6d12b74214d0bde3723 (patch)
tree40bd49e5a9849e84027928d19d4c75ec33c873fb /sci-calculators
parentFix --as-needed bug #247338 (diff)
downloadgentoo-2-9ce1356d1d2129a4cc66a6d12b74214d0bde3723.tar.gz
gentoo-2-9ce1356d1d2129a4cc66a6d12b74214d0bde3723.tar.bz2
gentoo-2-9ce1356d1d2129a4cc66a6d12b74214d0bde3723.zip
Removed old versions
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sci-calculators')
-rw-r--r--sci-calculators/orpie/ChangeLog9
-rw-r--r--sci-calculators/orpie/files/orpie-1.4.3-quote-down-crash.patch26
-rw-r--r--sci-calculators/orpie/files/orpie-ocaml-gentoo.patch13
-rw-r--r--sci-calculators/orpie/orpie-1.4.3-r1.ebuild35
-rw-r--r--sci-calculators/orpie/orpie-1.5.1.ebuild5
5 files changed, 10 insertions, 78 deletions
diff --git a/sci-calculators/orpie/ChangeLog b/sci-calculators/orpie/ChangeLog
index 1eaa5275a4dd..668ef518e167 100644
--- a/sci-calculators/orpie/ChangeLog
+++ b/sci-calculators/orpie/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sci-calculators/orpie
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/ChangeLog,v 1.14 2008/03/27 19:15:52 maekke Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/ChangeLog,v 1.15 2009/02/03 14:37:55 bicatali Exp $
+
+ 03 Feb 2009; Sébastien Fabbro <bicatali@gentoo.org>
+ -files/orpie-1.4.3-quote-down-crash.patch,
+ -files/orpie-ocaml-gentoo.patch, -orpie-1.4.3-r1.ebuild:
+ Removed old versions
27 Mar 2008; Markus Meier <maekke@gentoo.org> orpie-1.5.1.ebuild:
x86 stable, bug #214622
diff --git a/sci-calculators/orpie/files/orpie-1.4.3-quote-down-crash.patch b/sci-calculators/orpie/files/orpie-1.4.3-quote-down-crash.patch
deleted file mode 100644
index 8fff3b98fff8..000000000000
--- a/sci-calculators/orpie/files/orpie-1.4.3-quote-down-crash.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -r a647c5e4b7c0 interface_main.ml
---- a/interface_main.ml Tue Oct 17 22:51:37 2006 +0200
-+++ b/interface_main.ml Tue Oct 17 23:00:25 2006 +0200
-@@ -1677,17 +1677,18 @@ let handle_abbrev_backspace (iface : int
-
- (* handle entry of an arbitrary character in abbrev mode *)
- let handle_abbrev_character (iface : interface_state_t) key =
-- let ch = char_of_int key in
-- let test_buffer = iface.abbrev_entry_buffer ^ (String.make 1 ch) in
-- (* search through the list of commands for the first one that matches
-- * iface.abbrev_entry_buffer *)
- try
-+ let ch = char_of_int key in
-+ let test_buffer = iface.abbrev_entry_buffer ^ (String.make 1 ch) in
-+ (* search through the list of commands for the first one that matches
-+ * iface.abbrev_entry_buffer *)
- iface.matched_abbrev_entry_list <- match_abbrev_buffer iface test_buffer;
- iface.abbrev_entry_buffer <- test_buffer;
- draw_help iface;
- draw_update_entry iface
- with
- Not_found -> let err = beep () in ()
-+ | Invalid_argument "char_of_int" -> ()
-
-
- (* enter an abbrev entry *)
diff --git a/sci-calculators/orpie/files/orpie-ocaml-gentoo.patch b/sci-calculators/orpie/files/orpie-ocaml-gentoo.patch
deleted file mode 100644
index 856a46c15f06..000000000000
--- a/sci-calculators/orpie/files/orpie-ocaml-gentoo.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -Naur orpie-1.4.3/gsl/mlgsl_error.c orpie-1.4.3-new/gsl/mlgsl_error.c
---- orpie-1.4.3/gsl/mlgsl_error.c 2005-10-29 22:40:23.000000000 -0400
-+++ orpie-1.4.3-new/gsl/mlgsl_error.c 2007-01-08 09:14:35.000000000 -0500
-@@ -43,7 +43,8 @@
- exn_arg = alloc_small(2, 0);
- Store_field(exn_arg, 0, Val_int(conv_err_code(gsl_errno)));
- Store_field(exn_arg, 1, copy_string(ml_gsl_exn_msg));
-- CAMLreturn(raise_with_arg(*ml_gsl_exn, exn_arg));
-+ raise_with_arg(*ml_gsl_exn, exn_arg);
-+ CAMLreturn0;
- }
-
- static void ml_gsl_error_handler(const char *reason, const char *file,
diff --git a/sci-calculators/orpie/orpie-1.4.3-r1.ebuild b/sci-calculators/orpie/orpie-1.4.3-r1.ebuild
deleted file mode 100644
index 2a15f450166b..000000000000
--- a/sci-calculators/orpie/orpie-1.4.3-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/orpie-1.4.3-r1.ebuild,v 1.3 2008/02/15 11:35:33 markusle Exp $
-
-inherit flag-o-matic
-
-DESCRIPTION="A fullscreen RPN calculator for the console"
-HOMEPAGE="http://www.eecs.umich.edu/~pelzlpj/orpie/"
-SRC_URI="http://www.eecs.umich.edu/~pelzlpj/orpie/${P}.tar.gz"
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="bindist"
-
-DEPEND="dev-lang/ocaml
- sys-libs/ncurses
- !bindist? ( sci-libs/gsl )
- bindist? ( <sci-libs/gsl-1.10 )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-quote-down-crash.patch
- epatch "${FILESDIR}"/${PN}-ocaml-gentoo.patch
-}
-
-src_install() {
- make install DESTDIR="${D}"
- dodoc ChangeLog
- dodoc doc/TODO
- insinto /usr/share/doc/${PF}
- doins doc/manual.pdf
- doins doc/manual.html
-}
diff --git a/sci-calculators/orpie/orpie-1.5.1.ebuild b/sci-calculators/orpie/orpie-1.5.1.ebuild
index 21173e7f7568..6e635abb7f36 100644
--- a/sci-calculators/orpie/orpie-1.5.1.ebuild
+++ b/sci-calculators/orpie/orpie-1.5.1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/orpie-1.5.1.ebuild,v 1.7 2008/03/27 19:15:52 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/orpie-1.5.1.ebuild,v 1.8 2009/02/03 14:37:55 bicatali Exp $
DESCRIPTION="A fullscreen RPN calculator for the console"
HOMEPAGE="http://pessimization.com/software/orpie/"
@@ -15,6 +15,7 @@ DEPEND="dev-lang/ocaml
sys-libs/ncurses
!bindist? ( sci-libs/gsl )
bindist? ( <sci-libs/gsl-1.10 )"
+RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"