blob: 0d78ff39a1f89799d2794aba8e52ea59ac14008b (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/redland/redland-1.0.9-r2.ebuild,v 1.2 2009/12/27 17:16:29 armin76 Exp $
EAPI=2
inherit autotools eutils libtool
DESCRIPTION="High-level interface for the Resource Description Framework"
HOMEPAGE="http://librdf.org"
SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
LICENSE="LGPL-2.1 Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="berkdb mysql postgres sqlite ssl threads xml"
RDEPEND="mysql? ( virtual/mysql )
sqlite? ( =dev-db/sqlite-3* )
berkdb? ( sys-libs/db )
xml? ( dev-libs/libxml2 )
!xml? ( dev-libs/expat )
ssl? ( dev-libs/openssl )
>=media-libs/raptor-1.4.16
>=dev-libs/rasqal-0.9.16
postgres? ( virtual/postgresql-base )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/gtk-doc-am
>=sys-devel/libtool-2"
# Please, remove this RESTRICT from next version. See bug #285110.
RESTRICT="test"
src_prepare() {
epatch "${FILESDIR}"/${P}-ldflags.patch \
"${FILESDIR}"/${P}-sqlite.patch \
"${FILESDIR}"/${P}-librdf_storage_register_factory.patch
sed -i \
-e 's:bdbc_version in 4.7:bdbc_version in 4.8 4.7:g' \
configure.ac || die
eautoreconf
}
src_configure() {
local myconf
if use xml; then
myconf="${myconf} --with-xml-parser=libxml"
else
myconf="${myconf} --with-xml-parser=expat"
fi
econf --with-raptor=system \
--with-rasqal=system \
$(use_with berkdb bdb) \
$(use_with ssl openssl-digests) \
$(use_with mysql) \
$(use_with threads) \
$(use_with sqlite) \
$(use_with postgres postgresql) \
${myconf}
}
src_test() {
if ! use berkdb; then
export REDLAND_TEST_CLONING_STORAGE_TYPE=hashes
export REDLAND_TEST_CLONING_STORAGE_NAME=test
export REDLAND_TEST_CLONING_STORAGE_OPTIONS="hash-type='memory',dir='.',write='yes',new='yes',contexts='yes'"
fi
default
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog* NEWS NOTICE README TODO
dohtml {FAQS,NEWS,README,RELEASE,TODO}.html
}
|