29 lines
746 B
Bash
29 lines
746 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cgi/cgi-3001.1.1.ebuild,v 1.7 2009/04/19 12:14:16 kolmodin Exp $
|
|
|
|
CABAL_FEATURES="lib profile haddock"
|
|
inherit haskell-cabal
|
|
|
|
GHC_PV=6.6.1
|
|
|
|
DESCRIPTION="A haskell library for writing CGI programs"
|
|
HOMEPAGE="http://haskell.org/ghc/"
|
|
SRC_URI="http://www.haskell.org/ghc/dist/${GHC_PV}/ghc-${GHC_PV}-src-extralibs.tar.bz2"
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~alpha amd64 ~ppc sparc x86"
|
|
IUSE=""
|
|
|
|
DEPEND=">=dev-lang/ghc-6.6
|
|
>=dev-haskell/mtl-1.0
|
|
>=dev-haskell/xhtml-3000.0.0
|
|
>=dev-haskell/network-2.0"
|
|
|
|
S="${WORKDIR}/ghc-${GHC_PV}/libraries/${PN}"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cabal-mksetup
|
|
}
|