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.28.ebuild
Date: Fri, 18 Nov 2011 11:41:51
Message-Id: 20111118114140.410512004B@flycatcher.gentoo.org
1 ssuominen 11/11/18 11:41:40
2
3 Modified: ChangeLog
4 Added: rasqal-0.9.28.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.68 dev-libs/rasqal/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.68&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.68&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.67&r2=1.68
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
20 retrieving revision 1.67
21 retrieving revision 1.68
22 diff -u -r1.67 -r1.68
23 --- ChangeLog 18 Oct 2011 16:54:33 -0000 1.67
24 +++ ChangeLog 18 Nov 2011 11:41:40 -0000 1.68
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.67 2011/10/18 16:54:33 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.68 2011/11/18 11:41:40 ssuominen Exp $
30 +
31 +*rasqal-0.9.28 (18 Nov 2011)
32 +
33 + 18 Nov 2011; Samuli Suominen <ssuominen@g.o> +rasqal-0.9.28.ebuild:
34 + Version bump.
35
36 18 Oct 2011; Samuli Suominen <ssuominen@g.o> -rasqal-0.9.17.ebuild,
37 -rasqal-0.9.19.ebuild, -rasqal-0.9.26.ebuild:
38
39
40
41 1.1 dev-libs/rasqal/rasqal-0.9.28.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/rasqal-0.9.28.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/rasqal-0.9.28.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rasqal-0.9.28.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.28.ebuild,v 1.1 2011/11/18 11:41:40 ssuominen Exp $
51
52 EAPI=4
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 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
61 IUSE="+crypt doc gmp +mhash pcre static-libs test xml"
62
63 RDEPEND="media-libs/raptor:2
64 pcre? ( dev-libs/libpcre )
65 xml? ( dev-libs/libxml2 )
66 !gmp? ( dev-libs/mpfr )
67 gmp? ( dev-libs/gmp )
68 crypt? (
69 !mhash? ( dev-libs/libgcrypt )
70 mhash? ( app-crypt/mhash )
71 )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 sys-devel/flex
75 test? ( dev-perl/XML-DOM )"
76
77 DOCS=( AUTHORS ChangeLog NEWS README )
78
79 src_configure() {
80 # FIXME: From 0.9.27 to .28 --with-random-approach= was introduced, do we
81 # need a logic for it? Perhaps for dev-libs/gmp?
82
83 local regex=posix
84 local decimal=mpfr
85 local digest=internal
86
87 use pcre && regex=pcre
88 use gmp && decimal=gmp
89
90 if use crypt; then
91 digest=gcrypt
92 use mhash && digest=mhash
93 fi
94
95 econf \
96 $(use_enable pcre) \
97 $(use_enable static-libs static) \
98 $(use_enable xml xml2) \
99 --with-regex-library=${regex} \
100 --with-digest-library=${digest} \
101 --with-decimal=${decimal} \
102 --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
103 }
104
105 src_install() {
106 default
107 dohtml {NEWS,README,RELEASE}.html
108 use doc || rm -rf "${ED}"/usr/share/doc/${PF}/html/rasqal
109 find "${ED}" -name '*.la' -exec rm -f '{}' +
110 }