# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/hsql-postgresql/hsql-postgresql-1.7.ebuild,v 1.10 2010/07/12 15:49:30 slyfox Exp $ CABAL_FEATURES="lib haddock" inherit haskell-cabal versionator DESCRIPTION="PostgreSQL driver for HSQL" HOMEPAGE="http://htoolkit.sourceforge.net/" SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" DEPEND=">=dev-lang/ghc-6.4.1 ~dev-haskell/hsql-${PV} dev-db/postgresql-base" CABAL_CONFIGURE_FLAGS="--constraint=base<4" src_unpack() { unpack ${A} cabal-mksetup echo >> "${S}/${PN}.cabal" echo 'include-dirs: /usr/include/postgresql/server' >> "${S}/${PN}.cabal" # Add in the extra split-base deps if version_is_at_least "6.8" "$(ghc-version)"; then echo "build-depends: old-time" >> "${S}/${PN}.cabal" fi }