diff options
author | Lennart Kolmodin <kolmodin@gentoo.org> | 2010-06-20 12:51:22 +0000 |
---|---|---|
committer | Lennart Kolmodin <kolmodin@gentoo.org> | 2010-06-20 12:51:22 +0000 |
commit | 068abb809416761fb982f71cac860e0fca0c73d6 (patch) | |
tree | 864868b2859de70eaf389b1a8ebcdba8d6d133d9 /dev-haskell | |
parent | Adding missing bits fixing bug 269250 (diff) | |
download | gentoo-2-068abb809416761fb982f71cac860e0fca0c73d6.tar.gz gentoo-2-068abb809416761fb982f71cac860e0fca0c73d6.tar.bz2 gentoo-2-068abb809416761fb982f71cac860e0fca0c73d6.zip |
Add dev-util/pkgconfig as a runtime dependency to dev-haskell/cabal
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-haskell')
-rw-r--r-- | dev-haskell/cabal/ChangeLog | 9 | ||||
-rw-r--r-- | dev-haskell/cabal/cabal-1.8.0.6-r1.ebuild | 41 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-haskell/cabal/ChangeLog b/dev-haskell/cabal/ChangeLog index c17f0e9db044..2dabd1470f4a 100644 --- a/dev-haskell/cabal/ChangeLog +++ b/dev-haskell/cabal/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-haskell/cabal # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal/ChangeLog,v 1.56 2010/06/15 21:16:41 kolmodin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal/ChangeLog,v 1.57 2010/06/20 12:51:22 kolmodin Exp $ + +*cabal-1.8.0.6-r1 (18 Jun 2010) + + 18 Jun 2010; Lennart Kolmodin <kolmodin@gentoo.org> + +cabal-1.8.0.6-r1.ebuild: + Add dev-util/pkgconfig as a runtime dependency, cabal does resolving using + this tool. *cabal-1.8.0.6 (15 Jun 2010) diff --git a/dev-haskell/cabal/cabal-1.8.0.6-r1.ebuild b/dev-haskell/cabal/cabal-1.8.0.6-r1.ebuild new file mode 100644 index 000000000000..1314450f1809 --- /dev/null +++ b/dev-haskell/cabal/cabal-1.8.0.6-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal/cabal-1.8.0.6-r1.ebuild,v 1.1 2010/06/20 12:51:22 kolmodin Exp $ + +CABAL_FEATURES="bootstrap lib profile" +inherit haskell-cabal eutils + +MY_PN="Cabal" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A framework for packaging Haskell software" +HOMEPAGE="http://www.haskell.org/cabal/" +SRC_URI="http://hackage.haskell.org/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" +IUSE="doc" + +# Cabal.cabal only depends on base>=1&&<5 and filepath>=1&&<1.2 +# filepath has been a ghc core library since ghc 6.6.1, so let's use that as the +# lowest possible ghc version +DEPEND=">=dev-lang/ghc-6.6.1" +RDEPEND="${DEPEND} + dev-util/pkgconfig" +# cabal uses dev-util/pkgconfig using runtime to resolve C dependencies, so +# repoman's RDEPEND.suspect QA does not apply here + +S="${WORKDIR}/${MY_P}" + +CABAL_CORE_LIB_GHC_PV="6.12.3" + +src_compile() { + if ! cabal-is-dummy-lib; then + einfo "Bootstrapping Cabal..." + $(ghc-getghc) -i -i. -i"${WORKDIR}/${FP_P}" -cpp --make Setup.hs \ + -o setup || die "compiling Setup.hs failed" + cabal-configure + cabal-build + fi +} |