Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/raptor: ChangeLog raptor-1.4.21.ebuild
Date: Sun, 25 Apr 2010 13:48:13
Message-Id: 20100425134808.6177D2C04C@corvid.gentoo.org
1 aballier 10/04/25 13:48:08
2
3 Modified: ChangeLog
4 Added: raptor-1.4.21.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.81 media-libs/raptor/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.81&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.81&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.80&r2=1.81
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
19 retrieving revision 1.80
20 retrieving revision 1.81
21 diff -u -r1.80 -r1.81
22 --- ChangeLog 18 Apr 2010 14:00:06 -0000 1.80
23 +++ ChangeLog 25 Apr 2010 13:48:08 -0000 1.81
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-libs/raptor
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.80 2010/04/18 14:00:06 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.81 2010/04/25 13:48:08 aballier Exp $
29 +
30 +*raptor-1.4.21 (25 Apr 2010)
31 +
32 + 25 Apr 2010; Alexis Ballier <aballier@g.o> +raptor-1.4.21.ebuild:
33 + version bump
34
35 18 Apr 2010; Samuli Suominen <ssuominen@g.o> raptor-1.4.20.ebuild:
36 amd64 stable wrt #301306
37
38
39
40 1.1 media-libs/raptor/raptor-1.4.21.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/raptor/raptor-1.4.21.ebuild?rev=1.1&content-type=text/plain
44
45 Index: raptor-1.4.21.ebuild
46 ===================================================================
47 # Copyright 1999-2010 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.21.ebuild,v 1.1 2010/04/25 13:48:08 aballier 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 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
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 }