Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/drift: ChangeLog drift-2.2.3.ebuild
Date: Mon, 01 Aug 2011 21:44:21
Message-Id: 20110801214411.9498C2004C@flycatcher.gentoo.org
1 slyfox 11/08/01 21:44:11
2
3 Modified: ChangeLog
4 Added: drift-2.2.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.1.10.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.20 dev-haskell/drift/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/drift/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/drift/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/drift/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-haskell/drift/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 31 Oct 2007 12:55:21 -0000 1.19
24 +++ ChangeLog 1 Aug 2011 21:44:11 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-haskell/drift
27 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/drift/ChangeLog,v 1.19 2007/10/31 12:55:21 dcoutts Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/drift/ChangeLog,v 1.20 2011/08/01 21:44:11 slyfox Exp $
31 +
32 +*drift-2.2.3 (01 Aug 2011)
33 +
34 + 01 Aug 2011; Sergei Trofimovich <slyfox@g.o> +drift-2.2.3.ebuild:
35 + Version bump.
36
37 31 Oct 2007; Duncan Coutts <dcoutts@g.o> drift-2.1.2.ebuild,
38 drift-2.2.0.ebuild:
39
40
41
42 1.1 dev-haskell/drift/drift-2.2.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/drift/drift-2.2.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/drift/drift-2.2.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: drift-2.2.3.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/drift/drift-2.2.3.ebuild,v 1.1 2011/08/01 21:44:11 slyfox Exp $
52
53 inherit ghc-package
54
55 MY_PN="DrIFT"
56 MY_P="${MY_PN}-${PV}"
57
58 DESCRIPTION="Preprocessor for automatic derivation of Haskell class instances"
59 HOMEPAGE="http://repetae.net/john/computer/haskell/DrIFT/"
60 SRC_URI="http://repetae.net/john/computer/haskell/DrIFT/drop/${MY_P}.tar.gz"
61 LICENSE="MIT"
62 SLOT="0"
63
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
65
66 IUSE=""
67
68 DEPEND=">=dev-lang/ghc-6"
69 RDEPEND=""
70
71 S="${WORKDIR}/${MY_P}"
72
73 src_compile() {
74 econf --with-hc="$(ghc-getghc)" || die "configure failed"
75 # Makefile has no parallelism
76 emake -j1 || die "emake failed"
77 }
78
79 src_install() {
80 make DESTDIR="${D}" install || die "make install failed"
81 }