Gentoo Archives: gentoo-commits

From: "Dror Levin (spatz)" <spatz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/raptor: ChangeLog raptor-2.0.0.ebuild raptor-1.9.0.ebuild
Date: Tue, 25 Jan 2011 19:25:04
Message-Id: 20110125192454.AFD7020054@flycatcher.gentoo.org
1 spatz 11/01/25 19:24:54
2
3 Modified: ChangeLog
4 Added: raptor-2.0.0.ebuild
5 Removed: raptor-1.9.0.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.91 media-libs/raptor/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.91&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.91&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.90&r2=1.91
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
21 retrieving revision 1.90
22 retrieving revision 1.91
23 diff -u -r1.90 -r1.91
24 --- ChangeLog 27 Oct 2010 22:12:29 -0000 1.90
25 +++ ChangeLog 25 Jan 2011 19:24:54 -0000 1.91
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-libs/raptor
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.90 2010/10/27 22:12:29 maekke Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.91 2011/01/25 19:24:54 spatz Exp $
32 +
33 +*raptor-2.0.0 (25 Jan 2011)
34 +
35 + 25 Jan 2011; Dror Levin <spatz@g.o> -raptor-1.9.0.ebuild,
36 + +raptor-2.0.0.ebuild:
37 + Version bump.
38
39 27 Oct 2010; Markus Meier <maekke@g.o> raptor-1.9.0.ebuild:
40 add ~arm, bug #341149
41
42
43
44 1.1 media-libs/raptor/raptor-2.0.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: raptor-2.0.0.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/raptor-2.0.0.ebuild,v 1.1 2011/01/25 19:24:54 spatz Exp $
54
55 EAPI=3
56 inherit eutils libtool
57
58 MY_P=${PN}2-${PV}
59
60 DESCRIPTION="The RDF Parser Toolkit"
61 HOMEPAGE="http://librdf.org/raptor"
62 SRC_URI="http://download.librdf.org/source/${MY_P}.tar.gz"
63
64 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
65 SLOT="2"
66 KEYWORDS="~amd64 ~arm ~hppa ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
67 IUSE="+curl debug json static-libs unicode +xml"
68
69 RDEPEND="unicode? ( dev-libs/glib:2 )
70 xml? ( >=dev-libs/libxml2-2.6.8 )
71 !xml? ( dev-libs/expat )
72 curl? ( net-misc/curl )
73 json? ( dev-libs/yajl )
74 dev-libs/libxslt
75 !<media-libs/raptor-1.4.21-r1"
76 DEPEND="${RDEPEND}
77 sys-devel/flex
78 dev-util/pkgconfig"
79
80 S=${WORKDIR}/${MY_P}
81
82 src_prepare() {
83 epunt_cxx
84 elibtoolize
85 }
86
87 src_configure() {
88 local myconf
89
90 if use xml; then
91 myconf+=" --with-xml-parser=libxml"
92 else
93 myconf+=" --with-xml-parser=expat"
94 fi
95
96 if use curl; then
97 myconf+=" --with-www=curl"
98 elif use xml; then
99 myconf+=" --with-www=xml"
100 else
101 myconf+=" --with-www=none"
102 fi
103
104 econf \
105 --disable-dependency-tracking \
106 $(use_enable static-libs static) \
107 $(use_enable unicode nfc-check) \
108 $(use_enable debug) \
109 $(use_with json yajl) \
110 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
111 ${myconf}
112 }
113
114 src_install() {
115 emake DESTDIR="${D}" install || die
116 dodoc AUTHORS ChangeLog NEWS NOTICE README
117 dohtml {NEWS,README,RELEASE,UPGRADING}.html
118 find "${ED}" -name '*.la' -exec rm -f '{}' +
119 }