Gentoo Archives: gentoo-commits

From: "Dror Levin (spatz)" <spatz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: rasqal-0.9.22.ebuild ChangeLog rasqal-0.9.20.ebuild
Date: Tue, 25 Jan 2011 19:24:03
Message-Id: 20110125192354.61BF120054@flycatcher.gentoo.org
1 spatz 11/01/25 19:23:54
2
3 Modified: ChangeLog
4 Added: rasqal-0.9.22.ebuild
5 Removed: rasqal-0.9.20.ebuild
6 Log:
7 Version bump, drop old.
8
9 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.49 dev-libs/rasqal/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.49&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.49&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.48&r2=1.49
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
21 retrieving revision 1.48
22 retrieving revision 1.49
23 diff -u -r1.48 -r1.49
24 --- ChangeLog 27 Oct 2010 22:14:47 -0000 1.48
25 +++ ChangeLog 25 Jan 2011 19:23:54 -0000 1.49
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/rasqal
28 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.48 2010/10/27 22:14:47 maekke Exp $
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.49 2011/01/25 19:23:54 spatz Exp $
32 +
33 +*rasqal-0.9.22 (25 Jan 2011)
34 +
35 + 25 Jan 2011; Dror Levin <spatz@g.o> -rasqal-0.9.20.ebuild,
36 + +rasqal-0.9.22.ebuild:
37 + Version bump, drop old.
38
39 27 Oct 2010; Markus Meier <maekke@g.o> rasqal-0.9.20.ebuild:
40 add ~arm, bug #341149
41
42
43
44 1.1 dev-libs/rasqal/rasqal-0.9.22.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/rasqal-0.9.22.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/rasqal-0.9.22.ebuild?rev=1.1&content-type=text/plain
48
49 Index: rasqal-0.9.22.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.22.ebuild,v 1.1 2011/01/25 19:23:54 spatz Exp $
54
55 EAPI=3
56 inherit libtool
57
58 DESCRIPTION="library that handles Resource Description Framework (RDF)"
59 HOMEPAGE="http://librdf.org/rasqal/"
60 SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
61
62 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~arm ~hppa ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
65 IUSE="gmp pcre static-libs test xml"
66
67 RDEPEND="media-libs/raptor:2
68 pcre? ( dev-libs/libpcre )
69 xml? ( dev-libs/libxml2 )
70 !gmp? ( dev-libs/mpfr )
71 gmp? ( dev-libs/gmp )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 sys-devel/flex
75 test? ( dev-perl/XML-DOM )"
76
77 src_prepare() {
78 elibtoolize
79 }
80
81 src_configure() {
82 local regex=posix
83 local decimal=mpfr
84
85 use pcre && regex=pcre
86 use gmp && decimal=gmp
87
88 econf \
89 --disable-dependency-tracking \
90 $(use_enable static-libs static) \
91 $(use_enable pcre) \
92 $(use_enable xml xml2) \
93 --with-regex-library=${regex} \
94 --with-decimal=${decimal} \
95 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
96 }
97
98 src_install() {
99 emake DESTDIR="${D}" install || die
100 dodoc AUTHORS ChangeLog NEWS README
101 dohtml {NEWS,README,RELEASE}.html
102 find "${ED}" -name '*.la' -exec rm -f '{}' +
103 }