diff options
author | Andres Loeh <kosmikus@gentoo.org> | 2005-03-24 15:05:31 +0000 |
---|---|---|
committer | Andres Loeh <kosmikus@gentoo.org> | 2005-03-24 15:05:31 +0000 |
commit | 5d592d1335484f18e67f11cf404d55ed20a24a27 (patch) | |
tree | d13195c1db1a51925cb80393d96e36fae5dddd33 /dev-haskell | |
parent | Added German longdescription. (diff) | |
download | historical-5d592d1335484f18e67f11cf404d55ed20a24a27.tar.gz historical-5d592d1335484f18e67f11cf404d55ed20a24a27.tar.bz2 historical-5d592d1335484f18e67f11cf404d55ed20a24a27.zip |
Use a safer check to test the ghc version used to compile the package.
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'dev-haskell')
-rw-r--r-- | dev-haskell/happy/ChangeLog | 5 | ||||
-rw-r--r-- | dev-haskell/happy/Manifest | 12 | ||||
-rw-r--r-- | dev-haskell/happy/happy-1.15.ebuild | 6 |
3 files changed, 13 insertions, 10 deletions
diff --git a/dev-haskell/happy/ChangeLog b/dev-haskell/happy/ChangeLog index b9e2801ad165..7169055ec5e3 100644 --- a/dev-haskell/happy/ChangeLog +++ b/dev-haskell/happy/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-haskell/happy # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/happy/ChangeLog,v 1.10 2005/03/19 13:12:49 kosmikus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/happy/ChangeLog,v 1.11 2005/03/24 15:05:31 kosmikus Exp $ + + 24 Mar 2005; Andres Loeh <kosmikus@gentoo.org> happy-1.15.ebuild: + Use ghc-package.eclass to check for ghc-6.4. 19 Mar 2005; Andres Loeh <kosmikus@gentoo.org> happy-1.14.ebuild, happy-1.15.ebuild: diff --git a/dev-haskell/happy/Manifest b/dev-haskell/happy/Manifest index 7c79fffdd590..1408c6f5258e 100644 --- a/dev-haskell/happy/Manifest +++ b/dev-haskell/happy/Manifest @@ -1,17 +1,17 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 f7f9c465ff7e0db372d7e4e258e67183 happy-1.15.ebuild 1457 +MD5 880569e97adea84e9aa9a6d77a3e2af3 happy-1.15.ebuild 1449 MD5 de509a6365e2f5e31d0628ce8587d8ad happy-1.14.ebuild 719 -MD5 d9451fcd15cc10a622990d72699c5016 ChangeLog 1439 +MD5 d27c6db97e2783da31bd3056f6255a95 ChangeLog 1555 MD5 a769ecfcd1cdd2d40986627df7dfb249 metadata.xml 224 MD5 ccdd754a8212bb8a0ad2fa759a297250 files/happy-1.14-gcc3.4.patch 1849 MD5 e4734e57e0ebad5144da11376e6aed02 files/digest-happy-1.14 66 MD5 eb8bc65651f73e615f61ffc31a95a7c6 files/digest-happy-1.15 66 -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.6 (GNU/Linux) +Version: GnuPG v1.4.1 (GNU/Linux) -iD8DBQFCPCaSOKSBj1ObwosRAsNIAJ90fQaAAuo02XKFANg664eVvrl5XQCcD8Dh -LNsP1JM6gOVil6PJ9gpbCTs= -=uRzV +iD8DBQFCQtisOKSBj1ObwosRAmhXAJ9FbSAe/OjPECDB14xh4OWXK8/IxQCfVjze +3DStCh4uzXXbGTV/t5yIV7A= +=tskW -----END PGP SIGNATURE----- diff --git a/dev-haskell/happy/happy-1.15.ebuild b/dev-haskell/happy/happy-1.15.ebuild index b2c1894d19cb..1f86efba0b47 100644 --- a/dev-haskell/happy/happy-1.15.ebuild +++ b/dev-haskell/happy/happy-1.15.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/happy/happy-1.15.ebuild,v 1.3 2005/03/19 13:12:49 kosmikus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/happy/happy-1.15.ebuild,v 1.4 2005/03/24 15:05:31 kosmikus Exp $ -inherit base eutils +inherit base eutils ghc-package DESCRIPTION="A yacc-like parser generator for Haskell" HOMEPAGE="http://haskell.org/happy/" @@ -24,7 +24,7 @@ src_unpack() { src_compile() { econf || die "configure failed" - if has_version '>=dev-lang/ghc-6.4'; then + if $(ghc-cabal); then echo "SRC_HC_OPTS += -ignore-package util" >> mk/build.mk fi emake -j1 || die "make failed" |