diff options
author | Duncan Coutts <dcoutts@gentoo.org> | 2006-10-11 23:45:53 +0000 |
---|---|---|
committer | Duncan Coutts <dcoutts@gentoo.org> | 2006-10-11 23:45:53 +0000 |
commit | d62ec7def44a267808c95d3aa643bd4aaf9504c0 (patch) | |
tree | 01a865c7c4cbd260f3643701471880ec830cac51 /dev-haskell/uulib | |
parent | Version bump (diff) | |
download | gentoo-2-d62ec7def44a267808c95d3aa643bd4aaf9504c0.tar.gz gentoo-2-d62ec7def44a267808c95d3aa643bd4aaf9504c0.tar.bz2 gentoo-2-d62ec7def44a267808c95d3aa643bd4aaf9504c0.zip |
Fix for ghc-6.6 and remove unecessary cpphs dep.
(Portage version: 2.1.1-r1)
Diffstat (limited to 'dev-haskell/uulib')
-rw-r--r-- | dev-haskell/uulib/ChangeLog | 6 | ||||
-rw-r--r-- | dev-haskell/uulib/uulib-0.9.2.ebuild | 15 |
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" +} |