Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-calculators/orpie: ChangeLog orpie-1.5.1-r1.ebuild
Date: Thu, 03 Jun 2010 19:40:30
Message-Id: 20100603194026.5224C2CF47@corvid.gentoo.org
1 bicatali 10/06/03 19:40:26
2
3 Modified: ChangeLog
4 Added: orpie-1.5.1-r1.ebuild
5 Log:
6 Now build with system ocamlgsl. Added a fix for more recent ocaml, thanks Dylan Simon for his patch. Closing bug #297409 and bug #314651. Dropping ppc until we have ocamlgsl keyworded
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 sci-calculators/orpie/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/orpie/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/orpie/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/orpie/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-calculators/orpie/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 3 Feb 2009 14:37:55 -0000 1.15
23 +++ ChangeLog 3 Jun 2010 19:40:26 -0000 1.16
24 @@ -1,6 +1,15 @@
25 # ChangeLog for sci-calculators/orpie
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/ChangeLog,v 1.15 2009/02/03 14:37:55 bicatali Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/ChangeLog,v 1.16 2010/06/03 19:40:26 bicatali Exp $
30 +
31 +*orpie-1.5.1-r1 (03 Jun 2010)
32 +
33 + 03 Jun 2010; Sébastien Fabbro <bicatali@g.o>
34 + +orpie-1.5.1-r1.ebuild, +files/orpie-1.5.1-nogsl.patch,
35 + +files/orpie-1.5.1-ocaml311.patch, +files/orpie-1.5.1-orpierc.patch:
36 + Now build with system ocamlgsl. Added a fix for more recent ocaml, thanks
37 + Dylan Simon for his patch. Closing bug #297409 and bug #314651. Dropping
38 + ppc until we have ocamlgsl keyworded
39
40 03 Feb 2009; Sébastien Fabbro <bicatali@g.o>
41 -files/orpie-1.4.3-quote-down-crash.patch,
42
43
44
45 1.1 sci-calculators/orpie/orpie-1.5.1-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/orpie/orpie-1.5.1-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-calculators/orpie/orpie-1.5.1-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: orpie-1.5.1-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/sci-calculators/orpie/orpie-1.5.1-r1.ebuild,v 1.1 2010/06/03 19:40:26 bicatali Exp $
55
56 EAPI=2
57 inherit eutils autotools
58
59 DESCRIPTION="A fullscreen RPN calculator for the console"
60 HOMEPAGE="http://pessimization.com/software/orpie/"
61 SRC_URI="http://pessimization.com/software/${PN}/${P}.tar.gz"
62 LICENSE="GPL-2"
63
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="doc"
67
68 DEPEND="dev-ocaml/ocamlgsl
69 sys-libs/ncurses"
70 RDEPEND="${DEPEND}"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${P}-ocaml311.patch
74 epatch "${FILESDIR}"/${P}-nogsl.patch
75 epatch "${FILESDIR}"/${P}-orpierc.patch
76 eautoreconf
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die "emake install failed"
81 dodoc README ChangeLog doc/TODO
82 if use doc; then
83 insinto /usr/share/doc/${PF}
84 doins doc/manual.pdf doc/manual.html
85 fi
86 }