blob: c4bbd7215020d75096328babb6904c0822e18d5d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/uulib/uulib-0.9.1.ebuild,v 1.2 2006/02/13 23:37:05 dcoutts Exp $
CABAL_FEATURES="haddock cpphs"
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="~x86 ~amd64" #if possible try testing with "~ppc" and "~sparc"
IUSE=""
DEPEND=">=virtual/ghc-6.2.2
>=dev-haskell/cpphs-0.9"
src_unpack() {
base_src_unpack
# fixes for cpp that comes with later versions of gcc.
# it should really use cpphs instead.
sed -i 's:infixl 9 \\\\:infixl 9 \\\\ --not a line continuation:' \
"${S}/src/UU/DData/Set.hs" \
"${S}/src/UU/DData/MultiSet.hs" \
"${S}/src/UU/DData/IntBag.hs"
sed -i 's:infixl 9 !,\\\\:infixl 9 !,\\\\ --not a line continuation:' \
"${S}/src/UU/DData/Map.hs"
}
|