blob: a457ca1d4ce30adc6d541637d74cc13c657f7718 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.9.ebuild,v 1.2 2006/09/21 06:07:06 corsair Exp $
inherit eutils
DESCRIPTION="The RDF Parser Toolkit"
HOMEPAGE="http://librdf.org/raptor/"
SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
LICENSE="LGPL-2 Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc-macos ppc64 ~sparc ~x86"
IUSE="curl xml gnome ssl"
DEPEND="virtual/libc
gnome? ( >=dev-libs/glib-2.2.1 dev-util/pkgconfig )
xml? ( >=dev-libs/libxml2-2.4.0 )
!xml? ( dev-libs/expat )
ssl? ( dev-libs/openssl )
curl? ( net-misc/curl )"
RDEPEND="virtual/libc
gnome? ( >=dev-libs/glib-2.2.1 )
xml? ( >=dev-libs/libxml2-2.4.0 )
!xml? ( dev-libs/expat )
ssl? ( dev-libs/openssl )
curl? ( net-misc/curl )"
# compilation with libwww currently breaks and for using libfetch I didn't find the right USE flag
#IUSE="curl xml libwww gnome"
#DEPEND="virtual/libc
# gnome? ( >=dev-libs/glib-2.2.1 dev-util/pkgconfig )
# xml? ( >=dev-libs/libxml2-2.4.0 ) : ( dev-libs/expat )
# ssl? ( dev-libs/openssl )
# curl? ( net-misc/curl ) : ( !xml? ( libwww? ( net-libs/libwww ) ) )
# "
#RDEPEND="virtual/libc
# gnome? ( >=dev-libs/glib-2.2.1 )
# xml? ( >=dev-libs/libxml2-2.4.0 ) : ( dev-libs/expat )
# ssl? ( dev-libs/openssl )
# curl? ( net-misc/curl ) : ( !xml? ( libwww? ( net-libs/libwww ) ) )"
src_unpack() {
unpack ${A}
epunt_cxx
}
src_compile() {
local myraptorconf=""
use xml \
&& myraptorconf="${myraptorconf} --with-xml-parser=libxml" \
|| myraptorconf="${myraptorconf} --with-xml-parser=expat"
if use curl ; then
myraptorconf="${myraptorconf} --with-www=curl"
elif use xml ; then
myraptorconf="${myraptorconf} --with-www=xml"
# elif use libwww ;
# myraptorconf="${myraptorconf} --with-www=libwww"
else
myraptorconf="${myraptorconf} --with-www=none"
fi
econf \
$(use_enable gnome nfc-check) \
${myraptorconf} \
|| die "configure failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README
dohtml NEWS.html README.html
}
|