blob: 781277d64d1ec0c77fb39ce197a20949fc573732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal-install/cabal-install-0.6.2.ebuild,v 1.2 2009/04/19 16:36:47 mr_bones_ Exp $
CABAL_FEATURES="bin"
inherit haskell-cabal bash-completion
DESCRIPTION="The command-line interface for Cabal and Hackage."
HOMEPAGE="http://www.haskell.org/cabal/"
SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE=""
RDEPEND=">=dev-lang/ghc-6.4
=dev-haskell/cabal-1.6*"
DEPEND="${RDEPEND}
>=dev-haskell/filepath-1.0
>=dev-haskell/http-4000.0.2
dev-haskell/network
>=dev-haskell/zlib-0.4"
src_install() {
haskell-cabal_src_install
dobashcompletion "${S}/bash-completion/cabal"
}
pkg_postinst() {
ghc-package_pkg_postinst
bash-completion_pkg_postinst
}
|