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.16.ebuild
Date: Tue, 05 Aug 2008 14:53:31
Message-Id: E1KQNui-0005ew-BM@stork.gentoo.org
1 aballier 08/08/05 14:53:28
2
3 Modified: ChangeLog
4 Added: rasqal-0.9.16.ebuild
5 Log:
6 version bump
7 (Portage version: 2.2_rc6/cvs/Linux 2.6.25.7 x86_64)
8
9 Revision Changes Path
10 1.21 dev-libs/rasqal/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.21&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.21&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.20&r2=1.21
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
19 retrieving revision 1.20
20 retrieving revision 1.21
21 diff -u -r1.20 -r1.21
22 --- ChangeLog 12 May 2008 09:29:01 -0000 1.20
23 +++ ChangeLog 5 Aug 2008 14:53:27 -0000 1.21
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/rasqal
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.20 2008/05/12 09:29:01 aballier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.21 2008/08/05 14:53:27 aballier Exp $
29 +
30 +*rasqal-0.9.16 (05 Aug 2008)
31 +
32 + 05 Aug 2008; Alexis Ballier <aballier@g.o> +rasqal-0.9.16.ebuild:
33 + version bump
34
35 12 May 2008; Alexis Ballier <aballier@g.o> rasqal-0.9.10.ebuild,
36 rasqal-0.9.15.ebuild:
37
38
39
40 1.1 dev-libs/rasqal/rasqal-0.9.16.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.1&content-type=text/plain
44
45 Index: rasqal-0.9.16.ebuild
46 ===================================================================
47 # Copyright 1999-2008 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.16.ebuild,v 1.1 2008/08/05 14:53:27 aballier Exp $
50
51 inherit libtool
52
53 DESCRIPTION="library that handles Resource Description Framework (RDF)"
54 HOMEPAGE="http://librdf.org/rasqal"
55 SRC_URI="http://download.librdf.org/source/${P}.tar.gz"
56
57 LICENSE="LGPL-2.1 Apache-2.0"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
60 IUSE="debug gmp pcre test xml"
61
62 RDEPEND=">=media-libs/raptor-1.4.16
63 pcre? ( dev-libs/libpcre )
64 xml? ( dev-libs/libxml2 )
65 !gmp? ( dev-libs/mpfr )
66 gmp? ( dev-libs/gmp )
67 debug? ( >=dev-libs/dmalloc-5.5.2-r2 )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig
70 sys-devel/flex
71 test? ( dev-perl/XML-DOM )"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 elibtoolize
77 }
78
79 src_compile() {
80 local regex
81 local decimal
82
83 if use pcre; then
84 regex="pcre"
85 else
86 regex="posix"
87 fi
88
89 if use gmp; then
90 decimal="gmp"
91 else
92 decimal="mpfr"
93 fi
94
95 econf $(use_enable pcre) $(use_enable xml xml2) $(use_with debug dmalloc) \
96 $(use_enable debug maintainer-mode) --with-regex-library=${regex} \
97 --with-decimal=${decimal} --with-raptor=system
98
99 emake || die "emake failed."
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die "emake install failed."
104 dodoc AUTHORS ChangeLog* NEWS README
105 }