Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libnxml: ChangeLog libnxml-0.18.2.ebuild
Date: Sun, 29 Mar 2009 15:30:13
Message-Id: E1Lnwxe-0004LP-7U@stork.gentoo.org
1 patrick 09/03/29 15:30:10
2
3 Modified: ChangeLog
4 Added: libnxml-0.18.2.ebuild
5 Log:
6 Bump to 0.18.2, fixes #214764
7 (Portage version: 2.2_rc28/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.13 net-libs/libnxml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnxml/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnxml/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnxml/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libnxml/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 3 Oct 2008 12:34:49 -0000 1.12
23 +++ ChangeLog 29 Mar 2009 15:30:10 -0000 1.13
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-libs/libnxml
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnxml/ChangeLog,v 1.12 2008/10/03 12:34:49 bluebird Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnxml/ChangeLog,v 1.13 2009/03/29 15:30:10 patrick Exp $
30 +
31 +*libnxml-0.18.2 (29 Mar 2009)
32 +
33 + 29 Mar 2009; Patrick Lauer <patrick@g.o> +libnxml-0.18.2.ebuild:
34 + Bump to 0.18.2, fixes #214764
35
36 03 Oct 2008; Friedrich Oslage <bluebird@g.o> libnxml-0.18.0.ebuild:
37 Add ~sparc keyword, bug #238946
38
39
40
41 1.1 net-libs/libnxml/libnxml-0.18.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnxml/libnxml-0.18.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libnxml/libnxml-0.18.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libnxml-0.18.2.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/net-libs/libnxml/libnxml-0.18.2.ebuild,v 1.1 2009/03/29 15:30:10 patrick Exp $
51
52 DESCRIPTION="A C-library for parsing and writing XML 1.0/1.1 files or streams"
53 HOMEPAGE="http://www2.autistici.org/bakunin/codes.php"
54 SRC_URI="http://www2.autistici.org/bakunin/${PN}/${P}.tar.gz"
55
56 LICENSE="LGPL-2.1"
57 SLOT="0"
58 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
59 IUSE="doc examples"
60
61 RDEPEND="net-misc/curl"
62 DEPEND="${RDEPEND}
63 doc? ( app-doc/doxygen )"
64
65 src_compile() {
66 econf || die "configure failed"
67
68 emake || die "make failed"
69
70 if use doc; then
71 ebegin "Creating documentation"
72 doxygen doxy.conf
73 eend 0
74 fi
75 }
76
77 src_install() {
78 emake DESTDIR="${D}" install || die "make install failed"
79 dodoc AUTHORS ChangeLog NEWS README
80
81 if use doc; then
82 dohtml doc/html/*
83 fi
84
85 if use examples; then
86 insinto /usr/share/doc/${PF}/test
87 doins test/*.c
88 fi
89 }