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.5.ebuild
Date: Wed, 16 Nov 2011 18:27:25
Message-Id: 20111116182715.C91CE2004B@flycatcher.gentoo.org
1 ssuominen 11/11/16 18:27:15
2
3 Modified: ChangeLog
4 Added: raptor-2.0.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha73/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.112 media-libs/raptor/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.112&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?rev=1.112&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/ChangeLog?r1=1.111&r2=1.112
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v
20 retrieving revision 1.111
21 retrieving revision 1.112
22 diff -u -r1.111 -r1.112
23 --- ChangeLog 18 Oct 2011 16:52:48 -0000 1.111
24 +++ ChangeLog 16 Nov 2011 18:27:15 -0000 1.112
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.111 2011/10/18 16:52:48 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/raptor/ChangeLog,v 1.112 2011/11/16 18:27:15 ssuominen Exp $
30 +
31 +*raptor-2.0.5 (16 Nov 2011)
32 +
33 + 16 Nov 2011; Samuli Suominen <ssuominen@g.o> +raptor-2.0.5.ebuild:
34 + Version bump.
35
36 18 Oct 2011; Samuli Suominen <ssuominen@g.o> -raptor-1.4.20.ebuild:
37 old
38
39
40
41 1.1 media-libs/raptor/raptor-2.0.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/raptor/raptor-2.0.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: raptor-2.0.5.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.5.ebuild,v 1.1 2011/11/16 18:27:15 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 dev-util/gtk-doc-am" # remove once eautoreconf is gone
77
78 S=${WORKDIR}/${MY_P}
79
80 DOCS=( AUTHORS ChangeLog NEWS NOTICE README )
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 $(use_enable static-libs static) \
106 $(use_enable unicode nfc-check) \
107 $(use_enable debug) \
108 $(use_with json yajl) \
109 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html \
110 ${myconf}
111 }
112
113 src_install() {
114 default
115 dohtml {NEWS,README,RELEASE,UPGRADING}.html
116 find "${ED}" -name '*.la' -exec rm -f {} +
117 }