blob: 2fdc70cc380d541c60a5341dbe1a1307b3c06fe9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/c2hs/c2hs-0.14.5.ebuild,v 1.6 2006/03/27 15:31:36 dcoutts Exp $
CABAL_FEATURES="bin"
inherit base eutils haskell-cabal
DESCRIPTION="An interface generator for Haskell"
HOMEPAGE="http://www.cse.unsw.edu.au/~chak/haskell/c2hs/"
SRC_URI="http://www.cse.unsw.edu.au/~chak/haskell/c2hs/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND=">=virtual/ghc-6.0"
src_unpack() {
base_src_unpack
cd "${S}"
epatch "${FILESDIR}/setupfix.patch"
epatch "${FILESDIR}/ghc622inc.patch"
}
src_install() {
cabal_src_install
exeinto /usr
dobin c2hs/c2hs
insinto "/usr/lib/${P}"
doins "${S}/c2hs/lib/C2HS.hs"
exeinto "/usr/lib/${P}"
doexe dist/build/c2hs/c2hs
}
|