blob: 5f0421c4a42ee1f080cb70aae8dd752b820694ea (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
KEYWORDS="~alpha ~amd64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86"
DESCRIPTION="C++ client API for PostgreSQL. The standard front-end for writing C++ programs that use PostgreSQL. Supersedes older libpq++ interface."
SRC_URI="ftp://thaiopensource.org/software/${PN}/${P}.tar.gz"
HOMEPAGE="http://thaiopensource.org/development/libpqxx/"
LICENSE="BSD"
SLOT="0"
IUSE=""
DEPEND="dev-db/libpq"
RDEPEND="${DEPEND}"
src_compile() {
cd "${S}"
econf --enable-shared || die "econf failed"
emake || die "emake failed"
}
src_install () {
cd "${S}"
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README* TODO
dohtml -r doc/html/*
}
src_test() {
ewarn "The tests need a running PostgreSQL server and an existing database!"
ewarn "You can set the following environment variables to change the connection parameters:"
ewarn "PGDATABASE (default: username, probably root)"
ewarn "PGHOST (default: localhost)"
ewarn "PGPORT (default: pg's UNIX domain-socket)"
ewarn "PGUSER (default: username, probably root)"
epause 10
cd "${S}/test"
emake -j1 check || die "emake check failed"
}
|