blob: f457c1c4bfa8465a45972cc3592457f1b37063d9 (
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
|
# 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
}
|