blob: b25580342d3c381e782cb972221f681340eb3cb9 (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-postgresql/hdbc-postgresql-1.1.3.0.ebuild,v 1.2 2008/05/19 19:18:59 dev-zero Exp $
CABAL_FEATURES="lib profile haddock"
inherit haskell-cabal versionator
MY_PN=HDBC-postgresql
MY_P=${MY_PN}-${PV}
DESCRIPTION="PostgreSQL database driver for HDBC"
HOMEPAGE="http://software.complete.org/hdbc-postgresql"
SRC_URI="http://hackage.haskell.org/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
hdbc_PV=$(get_version_component_range 1-3)
DEPEND=">=dev-lang/ghc-6.4.1
dev-haskell/mtl
=dev-haskell/hdbc-${hdbc_PV}*
>=virtual/postgresql-base-8"
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack "${A}"
cp "${FILESDIR}/hdbc-postgresql-helper.h" "${FILESDIR}/pgtypes.h" "${S}/"
sed -i -e 's/GHC-Options: -O2 -Wall/GHC-Options: -fvia-C/' \
-e '/include-dirs:/d' \
-e '/^Extensions:/a \
, ForeignFunctionInterface' \
"${S}/${MY_PN}.cabal"
echo "include-dirs: $(pg_config --includedir)," >> "${S}/${MY_PN}.cabal"
echo " $(pg_config --includedir-server), ." >> "${S}/${MY_PN}.cabal"
if version_is_at_least "6.8" "$(ghc-version)"; then
sed -i -e '/Build-Depends:/a \
, old-time' \
"${S}/${MY_PN}.cabal"
fi
}
|