Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.24.ebuild
Date: Wed, 02 Feb 2011 19:59:52
Message-Id: 20110202195943.C27AC2004E@flycatcher.gentoo.org
1 ssuominen 11/02/02 19:59:43
2
3 Modified: ChangeLog
4 Added: rasqal-0.9.24.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.50 dev-libs/rasqal/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.50&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.50&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.49&r2=1.50
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
20 retrieving revision 1.49
21 retrieving revision 1.50
22 diff -u -r1.49 -r1.50
23 --- ChangeLog 25 Jan 2011 19:23:54 -0000 1.49
24 +++ ChangeLog 2 Feb 2011 19:59:43 -0000 1.50
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/rasqal
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.49 2011/01/25 19:23:54 spatz Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.50 2011/02/02 19:59:43 ssuominen Exp $
30 +
31 +*rasqal-0.9.24 (02 Feb 2011)
32 +
33 + 02 Feb 2011; Samuli Suominen <ssuominen@g.o> +rasqal-0.9.24.ebuild:
34 + Version bump.
35
36 *rasqal-0.9.22 (25 Jan 2011)
37
38
39
40
41 1.1 dev-libs/rasqal/rasqal-0.9.24.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/rasqal-0.9.24.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/rasqal-0.9.24.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rasqal-0.9.24.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/dev-libs/rasqal/rasqal-0.9.24.ebuild,v 1.1 2011/02/02 19:59:43 ssuominen Exp $
51
52 EAPI=3
53 inherit libtool
54
55 DESCRIPTION="library that handles Resource Description Framework (RDF)"
56 HOMEPAGE="http://librdf.org/rasqal/"
57 SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
58
59 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~amd64 ~arm ~hppa ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
62 IUSE="gmp pcre static-libs test xml"
63
64 RDEPEND="media-libs/raptor:2
65 pcre? ( dev-libs/libpcre )
66 xml? ( dev-libs/libxml2 )
67 !gmp? ( dev-libs/mpfr )
68 gmp? ( dev-libs/gmp )"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig
71 sys-devel/flex
72 test? ( dev-perl/XML-DOM )"
73
74 src_prepare() {
75 elibtoolize
76 }
77
78 src_configure() {
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 $(use_enable static-libs static) \
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 find "${ED}" -name '*.la' -exec rm -f '{}' +
100 }