Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/raptor: ChangeLog raptor-1.4.20.ebuild
Date: Mon, 30 Nov 2009 12:35:16
Message-Id: E1NF5TD-0002bq-JX@stork.gentoo.org
1 ssuominen 09/11/30 12:35:11
2
3 Modified: ChangeLog
4 Added: raptor-1.4.20.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc54/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.73 media-libs/raptor/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.73&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.73&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.72&r2=1.73
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
19 retrieving revision 1.72
20 retrieving revision 1.73
21 diff -u -r1.72 -r1.73
22 --- ChangeLog 23 Oct 2009 14:31:38 -0000 1.72
23 +++ ChangeLog 30 Nov 2009 12:35:11 -0000 1.73
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/raptor
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.72 2009/10/23 14:31:38 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.73 2009/11/30 12:35:11 ssuominen Exp $
29 +
30 +*raptor-1.4.20 (30 Nov 2009)
31 +
32 + 30 Nov 2009; Samuli Suominen <ssuominen@g.o> +raptor-1.4.20.ebuild:
33 + Version bump.
34
35 23 Oct 2009; Jeroen Roovers <jer@g.o> raptor-1.4.19.ebuild:
36 Stable for HPPA (bug #286193).
37
38
39
40 1.1 media-libs/raptor/raptor-1.4.20.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/raptor-1.4.20.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/raptor-1.4.20.ebuild?rev=1.1&content-type=text/plain
44
45 Index: raptor-1.4.20.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-1.4.20.ebuild,v 1.1 2009/11/30 12:35:11 ssuominen Exp $
50
51 EAPI=2
52 inherit eutils libtool
53
54 DESCRIPTION="The RDF Parser Toolkit"
55 HOMEPAGE="http://librdf.org/raptor"
56 SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
57
58 LICENSE="LGPL-2.1 Apache-2.0"
59 SLOT="0"
60 KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
61 IUSE="curl debug unicode xml"
62
63 RDEPEND="unicode? ( dev-libs/glib:2 )
64 xml? ( >=dev-libs/libxml2-2.6.8 )
65 !xml? ( dev-libs/expat )
66 curl? ( net-misc/curl )
67 dev-libs/libxslt"
68 DEPEND="${RDEPEND}
69 sys-devel/flex
70 dev-util/pkgconfig"
71
72 src_prepare() {
73 epunt_cxx
74 elibtoolize # Required by FreeBSD .so versioning
75 }
76
77 src_configure() {
78 local myconf
79
80 if use xml; then
81 myconf="${myconf} --with-xml-parser=libxml"
82 else
83 myconf="${myconf} --with-xml-parser=expat"
84 fi
85
86 if use curl; then
87 myconf="${myconf} --with-www=curl"
88 elif use xml; then
89 myconf="${myconf} --with-www=xml"
90 else
91 myconf="${myconf} --with-www=none"
92 fi
93
94 econf \
95 $(use_enable unicode nfc-check) \
96 $(use_enable debug) \
97 ${myconf}
98 }
99
100 src_install() {
101 emake DESTDIR="${D}" install || die "emake install failed"
102 dodoc AUTHORS ChangeLog NEWS NOTICE README
103 dohtml NEWS.html README.html RELEASE.html
104 }