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