Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/xqilla: ChangeLog xqilla-2.1.3-r1.ebuild
Date: Sun, 01 Mar 2009 13:23:57
Message-Id: E1Ldle6-0006Pt-Mi@stork.gentoo.org
1 patrick 09/03/01 13:23:54
2
3 Modified: ChangeLog
4 Added: xqilla-2.1.3-r1.ebuild
5 Log:
6 eapi2ification of 2.1.3 to avoid that annoying pkg_setup.
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 dev-libs/xqilla/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/ChangeLog?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/ChangeLog?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/ChangeLog?r1=1.3&r2=1.4
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- ChangeLog 15 Oct 2008 10:27:42 -0000 1.3
23 +++ ChangeLog 1 Mar 2009 13:23:54 -0000 1.4
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/xqilla
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v 1.3 2008/10/15 10:27:42 dev-zero Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/ChangeLog,v 1.4 2009/03/01 13:23:54 patrick Exp $
30 +
31 +*xqilla-2.1.3-r1 (01 Mar 2009)
32 +
33 + 01 Mar 2009; Patrick Lauer <patrick@g.o> +xqilla-2.1.3-r1.ebuild:
34 + eapi2ification of 2.1.3 to avoid that annoying pkg_setup.
35
36 15 Oct 2008; Tiziano Müller <dev-zero@g.o> xqilla-9999.ebuild:
37 Updated dep to match xerces-c-3.0.0
38
39
40
41 1.1 dev-libs/xqilla/xqilla-2.1.3-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/xqilla-2.1.3-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xqilla/xqilla-2.1.3-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xqilla-2.1.3-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/xqilla/xqilla-2.1.3-r1.ebuild,v 1.1 2009/03/01 13:23:54 patrick Exp $
51
52 EAPI="2"
53
54 inherit eutils
55
56 MY_P="XQilla-${PV}"
57
58 DESCRIPTION="An XQuery and XPath 2 library and command line utility written in C++."
59 HOMEPAGE="http://xqilla.sourceforge.net/HomePage"
60 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
61 LICENSE="Sleepycat BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="debug doc faxpp htmltidy"
65
66 RDEPEND="faxpp? ( dev-libs/faxpp )
67 ~dev-libs/xerces-c-2.8.0[xqilla]
68 htmltidy? ( app-text/htmltidy )"
69 DEPEND="${RDEPEND}
70 doc? ( app-doc/doxygen )"
71
72 S="${WORKDIR}/${MY_P}"
73
74 src_configure() {
75 econf --with-xerces=/usr \
76 $(use_enable debug) \
77 $(use_with htmltidy tidy) \
78 $(use_with faxpp faxpp /usr)
79 }
80 src_compile() {
81 emake || die "emake failed"
82
83 if use doc; then
84 emake docs || die "emake docs failed"
85 emake devdocs || die "emake devdocs failed"
86 fi
87 }
88
89 src_install () {
90 emake DESTDIR="${D}" install || die "emake docs failed"
91
92 dodoc ChangeLog TODO
93
94 if use doc; then
95 cd docs
96 dohtml -r dev-api dom3-api simple-api
97 fi
98 }