diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2016-06-07 22:26:11 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2016-06-07 22:26:25 +0100 |
commit | 0956ba9a9477be38e4f892bf4a8967f8e91875f4 (patch) | |
tree | 3bc80c2f28f0068e93f1f4350e51ef5bfcb0865f /dev-haskell | |
parent | net-irc/irssi: Add missing slot operator on dev-lang/perl (diff) | |
download | gentoo-0956ba9a9477be38e4f892bf4a8967f8e91875f4.tar.gz gentoo-0956ba9a9477be38e4f892bf4a8967f8e91875f4.tar.bz2 gentoo-0956ba9a9477be38e4f892bf4a8967f8e91875f4.zip |
dev-haskell/bio: allow binary-0.8, add missing depend, bug #585318
Reported-by: Toralf Förster
Bug: https://bugs.gentoo.org/585318
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'dev-haskell')
-rw-r--r-- | dev-haskell/bio/bio-0.5.3-r2.ebuild | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/dev-haskell/bio/bio-0.5.3-r2.ebuild b/dev-haskell/bio/bio-0.5.3-r2.ebuild new file mode 100644 index 000000000000..cda25f5f6d3a --- /dev/null +++ b/dev-haskell/bio/bio-0.5.3-r2.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.3.2.9999 + +CABAL_FEATURES="bin lib profile haddock hoogle hscolour" +inherit eutils haskell-cabal + +DESCRIPTION="A bioinformatics library" +HOMEPAGE="http://biohaskell.org/Libraries/Bio" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="+examples test" + +RDEPEND=">=dev-haskell/binary-0.4:=[profile?] + dev-haskell/mtl:=[profile?] + dev-haskell/old-time:=[profile?] + dev-haskell/parallel:=[profile?] + dev-haskell/parsec:=[profile?] + >=dev-haskell/quickcheck-2:2=[profile?] + dev-haskell/random:=[profile?] + >=dev-haskell/tagsoup-0.8:=[profile?] + >=dev-lang/ghc-6.10.4:=" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6" + +src_prepare() { + epatch "${FILESDIR}"/${P}-ghc-7.10.patch + + cabal_chdeps \ + 'binary >=0.4 && <0.5' 'binary >=0.4' +} + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag examples examples) \ + $(cabal_flag test test) +} + +src_test() { + dist/build/qc/qc || die +} + +src_install() { + haskell-cabal_src_install + + use test && rm "${ED}"/usr/bin/qc + # many examples collide with dev-haskell/flower + if use examples ; then + pushd "${ED}"/usr/bin + local example + for example in * + do + mv "${example}" "${PN}-example-${example}" + done + popd + fi +} |