blob: 2230f5c205a1d3deff071dfc3089b43fee6fff8c (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
KEYWORDS="~amd64 ~x86"
DESCRIPTION="A database access library for C++ that makes the illusion of embedding SQL queries in the regular C++ code."
HOMEPAGE="http://soci.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="Boost-1.0"
SLOT="0"
IUSE="debug firebird mysql postgres sqlite3 static"
DEPEND="firebird? ( dev-db/firebird )
mysql? ( virtual/mysql )
postgres? ( dev-db/libpq )
sqlite3? ( =dev-db/sqlite-3* )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-sqlite_fix.patch"
}
src_compile() {
local myconf
use debug && myconf="--enable-debug=yes" || myconf="--enable-debug=no"
econf ${myconf} \
$(use_enable mysql backend-mysql) \
$(use_enable sqlite3 backend-sqlite3) \
$(use_enable postgres backend-postgresql) \
$(use_enable firebird backend-firebird) \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc CHANGES README
dohtml -r doc/*
}
|