Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/xqilla: ChangeLog xqilla-2.2.0.ebuild xqilla-2.1.2.ebuild xqilla-2.1.3.ebuild
Date: Tue, 03 Mar 2009 09:00:36
Message-Id: E1LeQUM-0005QP-DS@stork.gentoo.org
1 dev-zero 09/03/03 09:00:34
2
3 Modified: ChangeLog
4 Added: xqilla-2.2.0.ebuild
5 Removed: xqilla-2.1.2.ebuild xqilla-2.1.3.ebuild
6 Log:
7 Version bump. Dropped old versions.
8 (Portage version: 2.1.6.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.5 dev-libs/xqilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 1 Mar 2009 13:23:54 -0000 1.4
24 +++ ChangeLog 3 Mar 2009 09:00:34 -0000 1.5
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/xqilla
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v 1.4 2009/03/01 13:23:54 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v 1.5 2009/03/03 09:00:34 dev-zero Exp $
30 +
31 +*xqilla-2.2.0 (03 Mar 2009)
32 +
33 + 03 Mar 2009; Tiziano Müller <dev-zero@g.o> -xqilla-2.1.2.ebuild,
34 + -xqilla-2.1.3.ebuild, +xqilla-2.2.0.ebuild:
35 + Version bump. Dropped old versions.
36
37 *xqilla-2.1.3-r1 (01 Mar 2009)
38
39
40
41
42 1.1 dev-libs/xqilla/xqilla-2.2.0.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/xqilla-2.2.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/xqilla-2.2.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xqilla-2.2.0.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/xqilla-2.2.0.ebuild,v 1.1 2009/03/03 09:00:34 dev-zero Exp $
52
53 EAPI="2"
54
55 MY_P="XQilla-${PV}"
56
57 DESCRIPTION="An XQuery and XPath 2 library and command line utility written in C++."
58 HOMEPAGE="http://xqilla.sourceforge.net/HomePage"
59 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
60 LICENSE="Apache-2.0 BSD"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="debug doc faxpp htmltidy"
64
65 # XQilla bundles two libraries:
66 # - mapm, heavily patched
67 # - yajl, moderately patched
68 # There's currently no way to unbundle those
69
70 RDEPEND=">=dev-libs/xerces-c-3.0.1
71 faxpp? ( dev-libs/faxpp )
72 htmltidy? ( app-text/htmltidy )"
73 DEPEND="${RDEPEND}
74 doc? ( app-doc/doxygen )"
75
76 S="${WORKDIR}/${MY_P}"
77
78 src_prepare() {
79 sed -i -e 's|^LDFLAGS =|LDFLAGS +=|' Makefile.in || die "sed failed"
80 }
81
82 src_configure() {
83 econf \
84 --with-xerces=/usr \
85 $(use_enable debug) \
86 $(use_with htmltidy tidy) \
87 $(use_with faxpp faxpp /usr)
88 }
89
90 src_compile() {
91 default
92
93 if use doc; then
94 emake docs || die "emake docs failed"
95 emake devdocs || die "emake devdocs failed"
96 fi
97 }
98
99 src_install () {
100 emake DESTDIR="${D}" install || die "emake docs failed"
101
102 dodoc ChangeLog TODO
103
104 if use doc; then
105 cd docs
106 dohtml -r dev-api dom3-api simple-api
107 fi
108 }