Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ml/ocamlgsl: metadata.xml ChangeLog ocamlgsl-0.6.0.ebuild
Date: Thu, 03 Jun 2010 19:36:26
Message-Id: 20100603193620.8F6532CF48@corvid.gentoo.org
1 bicatali 10/06/03 19:36:20
2
3 Added: metadata.xml ChangeLog ocamlgsl-0.6.0.ebuild
4 Log:
5 Initial import in the main tree from the sunrise overlay. Thanks Guillaume Horel for his work
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-ml/ocamlgsl/metadata.xml
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgsl/metadata.xml?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgsl/metadata.xml?rev=1.1&content-type=text/plain
13
14 Index: metadata.xml
15 ===================================================================
16 <?xml version="1.0" encoding="UTF-8"?>
17 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
18 <pkgmetadata>
19 <herd>sci</herd>
20 <longdescription lang='en'>
21 This is an interface to GSL (GNU scientific library), for the
22 Objective Caml langage.
23 </longdescription>
24 </pkgmetadata>
25
26
27
28 1.1 dev-ml/ocamlgsl/ChangeLog
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgsl/ChangeLog?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgsl/ChangeLog?rev=1.1&content-type=text/plain
32
33 Index: ChangeLog
34 ===================================================================
35 # ChangeLog for dev-ml/ocamlgsl
36 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
37 # $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgsl/ChangeLog,v 1.1 2010/06/03 19:36:20 bicatali Exp $
38
39 *ocamlgsl-0.6.0 (03 Jun 2010)
40
41 03 Jun 2010; Sébastien Fabbro <bicatali@g.o>
42 +ocamlgsl-0.6.0.ebuild, +files/ocamlgsl-0.6.0-ocaml311.patch,
43 +metadata.xml:
44 Initial import in the main tree from the sunrise overlay. Thanks Guillaume
45 Horel for his work
46
47 17 Aug 2009; Guillaume Horel (thrasibule) <guillaume.horel@×××××.com>
48 +ocamlgsl-0.6.0.ebuild, +files/ocaml-3.11.patch, +metadata.xml:
49 New Ebuild for dev-ml/ocamlgsl (bug #280939)
50
51
52
53
54 1.1 dev-ml/ocamlgsl/ocamlgsl-0.6.0.ebuild
55
56 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgsl/ocamlgsl-0.6.0.ebuild?rev=1.1&view=markup
57 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/ocamlgsl/ocamlgsl-0.6.0.ebuild?rev=1.1&content-type=text/plain
58
59 Index: ocamlgsl-0.6.0.ebuild
60 ===================================================================
61 # Copyright 1999-2010 Gentoo Foundation
62 # Distributed under the terms of the GNU General Public License v2
63 # $Header: /var/cvsroot/gentoo-x86/dev-ml/ocamlgsl/ocamlgsl-0.6.0.ebuild,v 1.1 2010/06/03 19:36:20 bicatali Exp $
64
65 EAPI="2"
66
67 inherit base findlib
68
69 DESCRIPTION="OCaml bindings for the GSL library"
70 HOMEPAGE="http://oandrieu.nerim.net/ocaml/gsl/"
71 SRC_URI="http://oandrieu.nerim.net/ocaml/gsl/${P}.tar.gz"
72
73 LICENSE="GPL-2"
74 SLOT="0"
75 KEYWORDS="~amd64 ~x86"
76 IUSE="doc"
77
78 DEPEND=">=dev-lang/ocaml-3.10
79 sci-libs/gsl"
80 RDEPEND="${DEPEND}"
81
82 PATCHES=( "${FILESDIR}/${P}-ocaml311.patch" )
83
84 src_compile() {
85 emake CFLAGS="${CFLAGS}" || die "emake failed"
86 }
87
88 src_install() {
89 findlib_src_preinst
90 emake install-findlib || die "emake install failed"
91
92 dodoc README NEWS NOTES
93 doinfo *.info* || die "info install failed"
94 if use doc; then
95 dohtml doc/* || die "html docs install failed"
96 fi
97 }