Gentoo Archives: gentoo-commits

From: "Lennart Kolmodin (kolmodin)" <kolmodin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/c2hs: c2hs-0.16.0.ebuild ChangeLog
Date: Wed, 29 Jul 2009 21:39:35
Message-Id: E1MWGs0-0000R3-LZ@stork.gentoo.org
1 kolmodin 09/07/29 21:39:32
2
3 Modified: ChangeLog
4 Added: c2hs-0.16.0.ebuild
5 Log:
6 Version bump dev-haskell/c2hs.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.27 dev-haskell/c2hs/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/c2hs/ChangeLog?rev=1.27&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/c2hs/ChangeLog?rev=1.27&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/c2hs/ChangeLog?r1=1.26&r2=1.27
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-haskell/c2hs/ChangeLog,v
19 retrieving revision 1.26
20 retrieving revision 1.27
21 diff -u -r1.26 -r1.27
22 --- ChangeLog 14 Dec 2007 01:43:28 -0000 1.26
23 +++ ChangeLog 29 Jul 2009 21:39:32 -0000 1.27
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-haskell/c2hs
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/c2hs/ChangeLog,v 1.26 2007/12/14 01:43:28 dcoutts Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/c2hs/ChangeLog,v 1.27 2009/07/29 21:39:32 kolmodin Exp $
30 +
31 +*c2hs-0.16.0 (29 Jul 2009)
32 +
33 + 29 Jul 2009; Lennart Kolmodin <kolmodin@g.o> +c2hs-0.16.0.ebuild:
34 + Version bump.
35
36 *c2hs-0.15.1 (14 Dec 2007)
37
38
39
40
41 1.1 dev-haskell/c2hs/c2hs-0.16.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/c2hs/c2hs-0.16.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/c2hs/c2hs-0.16.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: c2hs-0.16.0.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/c2hs/c2hs-0.16.0.ebuild,v 1.1 2009/07/29 21:39:32 kolmodin Exp $
51
52 CABAL_FEATURES="bin"
53 inherit haskell-cabal
54
55 DESCRIPTION="C->Haskell FFI tool that gives some cross-language type safety"
56 HOMEPAGE="http://www.cse.unsw.edu.au/~chak/haskell/c2hs/"
57 SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~x86"
62 IUSE="doc"
63
64 DEPEND=">=dev-lang/ghc-6.6.1
65 >=dev-haskell/cabal-1.2
66 dev-haskell/filepath
67 >=dev-haskell/language-c-0.3.1.1
68 doc? ( ~app-text/docbook-xml-dtd-4.2
69 app-text/docbook-xsl-stylesheets
70 >=dev-libs/libxslt-1.1.2 )"
71 RDEPEND="dev-libs/gmp"
72
73
74 src_compile() {
75 cabal_src_compile
76
77 if use doc; then
78 emake -C doc
79 fi
80 }
81
82 src_install() {
83 cabal_src_install
84
85 doman "${S}/doc/man1/c2hs.1"
86
87 if use doc; then
88 dohtml "${S}/doc/users_guide/"*
89 fi
90 }