Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.19.ebuild
Date: Sun, 25 Apr 2010 13:33:36
Message-Id: 20100425133334.9AD812C04C@corvid.gentoo.org
1 aballier 10/04/25 13:33:34
2
3 Modified: ChangeLog
4 Added: rasqal-0.9.19.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.42 dev-libs/rasqal/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.42&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.42&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.41&r2=1.42
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
19 retrieving revision 1.41
20 retrieving revision 1.42
21 diff -u -r1.41 -r1.42
22 --- ChangeLog 18 Apr 2010 13:58:20 -0000 1.41
23 +++ ChangeLog 25 Apr 2010 13:33:34 -0000 1.42
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/rasqal
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.41 2010/04/18 13:58:20 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.42 2010/04/25 13:33:34 aballier Exp $
29 +
30 +*rasqal-0.9.19 (25 Apr 2010)
31 +
32 + 25 Apr 2010; Alexis Ballier <aballier@g.o> +rasqal-0.9.19.ebuild:
33 + version bump
34
35 18 Apr 2010; Samuli Suominen <ssuominen@g.o> rasqal-0.9.17.ebuild:
36 amd64 stable wrt #301306
37
38
39
40 1.1 dev-libs/rasqal/rasqal-0.9.19.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild?rev=1.1&content-type=text/plain
44
45 Index: rasqal-0.9.19.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/dev-libs/rasqal/rasqal-0.9.19.ebuild,v 1.1 2010/04/25 13:33:34 aballier Exp $
50
51 EAPI=2
52 inherit libtool
53
54 DESCRIPTION="library that handles Resource Description Framework (RDF)"
55 HOMEPAGE="http://librdf.org/rasqal/"
56 SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
57
58 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
59 SLOT="0"
60 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
61 IUSE="gmp pcre test xml"
62
63 RDEPEND=">=media-libs/raptor-1.4.18
64 pcre? ( dev-libs/libpcre )
65 xml? ( dev-libs/libxml2 )
66 !gmp? ( dev-libs/mpfr )
67 gmp? ( dev-libs/gmp )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig
70 sys-devel/flex
71 test? ( dev-perl/XML-DOM )"
72
73 src_prepare() {
74 elibtoolize
75 }
76
77 src_configure() {
78 use prefix || EPREFIX=
79 local regex="posix"
80 local decimal="mpfr"
81
82 use pcre && regex="pcre"
83 use gmp && decimal="gmp"
84
85 econf \
86 --disable-dependency-tracking \
87 --with-raptor=system \
88 $(use_enable pcre) \
89 $(use_enable xml xml2) \
90 --with-regex-library=${regex} \
91 --with-decimal=${decimal} \
92 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
93 }
94
95 src_install() {
96 emake DESTDIR="${D}" install || die
97 dodoc AUTHORS ChangeLog NEWS README
98 dohtml {NEWS,README,RELEASE}.html
99 }