blob: 54ba12747773e545ae1efd4eda542d58d0ff1c8e (
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
34
35
36
37
38
39
40
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/ghc-bin/ghc-bin-6.2.2-r1.ebuild,v 1.9 2007/12/13 15:59:54 dcoutts Exp $
IUSE="" # use the non-binary version if you want to have more choice
DESCRIPTION="Glasgow Haskell Compiler"
# list all arches for proper digest building:
SRC_URI="x86? ( mirror://gentoo/${P}-r1-x86.tbz2 )
ppc? ( mirror://gentoo/${P}-r1-ppc.tbz2 )
sparc? ( mirror://gentoo/${P}-r1-sparc.tbz2 )"
HOMEPAGE="http://www.haskell.org/ghc/"
LICENSE="as-is"
KEYWORDS="-alpha -amd64 ppc sparc x86"
SLOT="0"
RESTRICT="strip" # already stripped
LOC="/opt/ghc"
DEPEND=""
RDEPEND=">=dev-lang/perl-5.6.1
>=sys-devel/gcc-2.95.3
>=dev-libs/gmp-4.1
=sys-libs/readline-5*"
S="${WORKDIR}"
src_compile() {
sed -i "s|/usr|${LOC}|g" usr/bin/* usr/lib/ghc-${PV}/package.conf
mkdir -p ./${LOC}
mv usr/* ./${LOC}
}
src_install () {
mv * ${D}
doenvd "${FILESDIR}/10ghc"
}
|