Gentoo Archives: gentoo-commits

From: Heather Cynede <cynede@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/dotnet:master commit in: dev-lang/fsharp/
Date: Wed, 01 Jan 2014 11:18:36
Message-Id: 1388574886.d8b74fb3919f79cca73bddac6ee422274a2986f9.cynede@gentoo
1 commit: d8b74fb3919f79cca73bddac6ee422274a2986f9
2 Author: Heather <Heather <AT> live <DOT> ru>
3 AuthorDate: Wed Jan 1 11:14:46 2014 +0000
4 Commit: Heather Cynede <cynede <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 1 11:14:46 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=d8b74fb3
7
8 F# 3.1
9
10 ---
11 dev-lang/fsharp/fsharp-3.1.0.ebuild | 28 ++++++++++++++++++++++++++++
12 1 file changed, 28 insertions(+)
13
14 diff --git a/dev-lang/fsharp/fsharp-3.1.0.ebuild b/dev-lang/fsharp/fsharp-3.1.0.ebuild
15 new file mode 100644
16 index 0000000..5f9b5eb
17 --- /dev/null
18 +++ b/dev-lang/fsharp/fsharp-3.1.0.ebuild
19 @@ -0,0 +1,28 @@
20 +# Copyright 1999-2013 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI="5"
25 +
26 +AUTOTOOLS_AUTORECONF=1
27 +
28 +inherit autotools-utils mono-env
29 +
30 +DESCRIPTION="The F# Compiler"
31 +HOMEPAGE="https://github.com/fsharp/fsharp"
32 +SRC_URI="https://github.com/fsharp/fsharp/archive/${PV}.tar.gz -> ${P}.tar.gz"
33 +
34 +LICENSE="Apache-2.0"
35 +SLOT="0"
36 +KEYWORDS="~x86 ~amd64"
37 +IUSE=""
38 +
39 +MAKEOPTS+=" -j1" #nowarn
40 +DEPEND="dev-lang/mono"
41 +RDEPEND="${DEPEND}"
42 +
43 +AUTOTOOLS_IN_SOURCE_BUILD=1
44 +
45 +src_install() {
46 + autotools-utils_src_install
47 +}