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: raptor-2.0.7.ebuild ChangeLog
Date: Fri, 30 Mar 2012 18:54:46
Message-Id: 20120330185427.E248B2004B@flycatcher.gentoo.org
1 ssuominen 12/03/30 18:54:27
2
3 Modified: ChangeLog
4 Added: raptor-2.0.7.ebuild
5 Log:
6 Version bump wrt #409417 by Agostino Sarubbo
7
8 (Portage version: 2.2.0_alpha96/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.121 media-libs/raptor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.121&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.121&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.120&r2=1.121
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
20 retrieving revision 1.120
21 retrieving revision 1.121
22 diff -u -r1.120 -r1.121
23 --- ChangeLog 5 Mar 2012 21:10:08 -0000 1.120
24 +++ ChangeLog 30 Mar 2012 18:54:27 -0000 1.121
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/raptor
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.120 2012/03/05 21:10:08 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.121 2012/03/30 18:54:27 ssuominen Exp $
30 +
31 +*raptor-2.0.7 (30 Mar 2012)
32 +
33 + 30 Mar 2012; Samuli Suominen <ssuominen@g.o> +raptor-2.0.7.ebuild:
34 + Version bump wrt #409417 by Agostino Sarubbo
35
36 05 Mar 2012; Markus Meier <maekke@g.o> raptor-2.0.6.ebuild:
37 arm stable, bug #404795
38
39
40
41 1.1 media-libs/raptor/raptor-2.0.7.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: raptor-2.0.7.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.7.ebuild,v 1.1 2012/03/30 18:54:27 ssuominen Exp $
51
52 # FIXME: It should be possible to use net-nntp/inn for libinn.h and -linn!
53
54 EAPI=4
55 inherit libtool
56
57 MY_P=${PN}2-${PV}
58
59 DESCRIPTION="The RDF Parser Toolkit"
60 HOMEPAGE="http://librdf.org/raptor/"
61 SRC_URI="http://download.librdf.org/source/${MY_P}.tar.gz"
62
63 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
64 SLOT="2"
65 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"
66 IUSE="+curl debug json static-libs unicode"
67
68 RDEPEND="dev-libs/libxml2
69 dev-libs/libxslt
70 curl? ( net-misc/curl )
71 json? ( dev-libs/yajl )
72 unicode? ( dev-libs/icu )
73 !<media-libs/raptor-1.4.21-r1"
74 DEPEND="${RDEPEND}
75 dev-util/pkgconfig
76 sys-devel/flex"
77
78 S=${WORKDIR}/${MY_P}
79
80 DOCS="AUTHORS ChangeLog NEWS NOTICE README"
81
82 src_prepare() {
83 elibtoolize
84 }
85
86 src_configure() {
87 local myconf='--with-www=xml'
88 use curl && myconf='--with-www=curl'
89
90 econf \
91 $(use_enable static-libs static) \
92 $(use_enable debug) \
93 $(use unicode && echo --with-icu-config="${EPREFIX}"/usr/bin/icu-config) \
94 $(use_with json yajl) \
95 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
96 ${myconf}
97 }
98
99 src_install() {
100 default
101 dohtml {NEWS,README,RELEASE,UPGRADING}.html
102 find "${ED}" -name '*.la' -exec rm -f {} +
103 }