blob: a5869eb97a0af0e246646995edbb5933e693d17d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hdbc-postgresql/hdbc-postgresql-0.99.0.0.ebuild,v 1.4 2006/03/01 19:39:11 hansmi Exp $
CABAL_FEATURES="lib haddock"
inherit haskell-cabal versionator
DESCRIPTION="PostgreSQL database driver for HDBC"
HOMEPAGE="http://quux.org/devel/hdbc/"
SRC_URI="http://quux.org/devel/hdbc/${PN}_${PV}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
#if possible try testing with "~ppc" and "~sparc"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
hdbc_PV=$(get_version_component_range 1-3)
DEPEND=">=virtual/ghc-6.4.1
~dev-haskell/hdbc-${hdbc_PV}
>=dev-db/libpq-7"
S="${WORKDIR}/${PN}"
|