blob: 05560b63a0e3f8f01d779b1c6aedf2fa6e965c7c (
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
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hsql/hsql-1.7.ebuild,v 1.12 2010/07/12 15:46:39 slyfox Exp $
CABAL_FEATURES="lib haddock"
inherit eutils haskell-cabal versionator
DESCRIPTION="SQL bindings for Haskell"
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"
CABAL_CONFIGURE_FLAGS="--constraint=base<4"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-sqltext-to-int.patch"
# Add in the extra split-base deps
if version_is_at_least "6.8" "$(ghc-version)"; then
sed -i -e '/build-depends:/a \
, old-time' \
-e '/extensions:/a \
, Rank2Types, DeriveDataTypeable' \
"${S}/hsql.cabal"
fi
}
pkg_postinst () {
ghc-package_pkg_postinst
elog "You will probably want to emerge one or more HSQL backend."
elog "These backends are available:"
elog " hsql-postgresql"
elog " hsql-mysql"
elog " hsql-sqlite"
elog " hsql-odbc"
}
|