summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Coutts <dcoutts@gentoo.org>2006-10-11 23:45:53 +0000
committerDuncan Coutts <dcoutts@gentoo.org>2006-10-11 23:45:53 +0000
commit0e753d5f96a2635c57ebe489a53f9db9ce8355ae (patch)
tree8b5e8ccce6f805d48d17eff5d8af752ad305028a /dev-haskell/uulib
parentVersion bump (diff)
downloadhistorical-0e753d5f96a2635c57ebe489a53f9db9ce8355ae.tar.gz
historical-0e753d5f96a2635c57ebe489a53f9db9ce8355ae.tar.bz2
historical-0e753d5f96a2635c57ebe489a53f9db9ce8355ae.zip
Fix for ghc-6.6 and remove unecessary cpphs dep.
Package-Manager: portage-2.1.1-r1
Diffstat (limited to 'dev-haskell/uulib')
-rw-r--r--dev-haskell/uulib/ChangeLog6
-rw-r--r--dev-haskell/uulib/uulib-0.9.2.ebuild15
2 files changed, 15 insertions, 6 deletions
diff --git a/dev-haskell/uulib/ChangeLog b/dev-haskell/uulib/ChangeLog
index 8e302178b02d..60b27772fd31 100644
--- a/dev-haskell/uulib/ChangeLog
+++ b/dev-haskell/uulib/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-haskell/uulib
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/uulib/ChangeLog,v 1.11 2006/10/05 03:04:51 cparrott Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/uulib/ChangeLog,v 1.12 2006/10/11 23:45:53 dcoutts Exp $
+
+ 11 Oct 2006; Duncan Coutts <dcoutts@gentoo.org> -uulib-0.9.1.ebuild,
+ uulib-0.9.2.ebuild:
+ Fix for ghc-6.6 and remove unecessary cpphs dep.
05 Oct 2006; Chris Parrott <cparrott@gentoo.org> uulib-0.9.2.ebuild:
marked stable for amd64
diff --git a/dev-haskell/uulib/uulib-0.9.2.ebuild b/dev-haskell/uulib/uulib-0.9.2.ebuild
index 7db3af142144..7beba2fee40c 100644
--- a/dev-haskell/uulib/uulib-0.9.2.ebuild
+++ b/dev-haskell/uulib/uulib-0.9.2.ebuild
@@ -1,9 +1,9 @@
# 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.2.ebuild,v 1.7 2006/10/05 03:04:51 cparrott Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/uulib/uulib-0.9.2.ebuild,v 1.8 2006/10/11 23:45:53 dcoutts Exp $
-CABAL_FEATURES="haddock cpphs lib"
-inherit haskell-cabal
+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"
@@ -14,6 +14,11 @@ SLOT="0"
KEYWORDS="amd64 ~ppc ppc64 sparc x86"
IUSE=""
-DEPEND=">=virtual/ghc-6.2.2
- >=dev-haskell/cpphs-0.9"
+DEPEND=">=virtual/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"
+}