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: Sat, 28 Sep 2013 15:39:46
Message-Id: 1380382592.42d83035aca3257e937bc89cebd53fb499776989.cynede@gentoo
1 commit: 42d83035aca3257e937bc89cebd53fb499776989
2 Author: Heather <Heather <AT> cynede <DOT> net>
3 AuthorDate: Sat Sep 28 15:36:32 2013 +0000
4 Commit: Heather Cynede <cynede <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 28 15:36:32 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/dotnet.git;a=commit;h=42d83035
7
8 F# 3.0.28
9
10 ---
11 dev-lang/fsharp/fsharp-3.0.28.ebuild | 31 +++++++++++++++++++++++++++++++
12 1 file changed, 31 insertions(+)
13
14 diff --git a/dev-lang/fsharp/fsharp-3.0.28.ebuild b/dev-lang/fsharp/fsharp-3.0.28.ebuild
15 new file mode 100644
16 index 0000000..7fc4221
17 --- /dev/null
18 +++ b/dev-lang/fsharp/fsharp-3.0.28.ebuild
19 @@ -0,0 +1,31 @@
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 + default
47 +
48 + #for older software compatibility:
49 + dosym fsharpc /usr/bin/fsc
50 +}