blob: a1719089166bf9caee5736ac8dfc8aaecb81c118 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/uulib/uulib-0.9.2.ebuild,v 1.11 2007/12/13 05:50:07 dcoutts Exp $
CABAL_FEATURES="haddock lib"
inherit base haskell-cabal
DESCRIPTION="The Utrecht University parsing, printing and DData libraries"
HOMEPAGE="http://www.cs.uu.nl/wiki/HUT/AttributeGrammarSystem"
SRC_URI="http://abaris.zoo.cs.uu.nl:8080/wiki/pub/HUT/Download/${P}-src.tar.gz"
LICENSE="LGPL-2.1-UUST"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE=""
DEPEND=">=dev-lang/ghc-6.2.2"
src_unpack() {
base_src_unpack
# GHC 6.6 is stricter in some class instance stuff
sed -i 's/Extensions:/Extensions: UndecidableInstances/' "${S}/uulib.cabal"
echo "ghc-options: -fglasgow-exts" >> "${S}/uulib.cabal"
}
|