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/libxml: libxml-1.8.17-r3.ebuild ChangeLog
Date: Tue, 03 Feb 2009 23:53:11
Message-Id: E1LUV4n-00044u-BE@stork.gentoo.org
1 patrick 09/02/03 23:53:09
2
3 Modified: ChangeLog
4 Added: libxml-1.8.17-r3.ebuild
5 Log:
6 gcc 4.3.3 fix, thanks to Romain Perier. Closes #257309
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 dev-libs/libxml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxml/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 14 Oct 2008 09:24:33 -0000 1.22
23 +++ ChangeLog 3 Feb 2009 23:53:09 -0000 1.23
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/libxml
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml/ChangeLog,v 1.22 2008/10/14 09:24:33 robbat2 Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml/ChangeLog,v 1.23 2009/02/03 23:53:09 patrick Exp $
30 +
31 +*libxml-1.8.17-r3 (03 Feb 2009)
32 +
33 + 03 Feb 2009; Patrick Lauer <patrick@g.o>
34 + +files/open_call_fix.patch, +libxml-1.8.17-r3.ebuild:
35 + gcc 4.3.3 fix, thanks to Romain Perier. Closes #257309
36
37 14 Oct 2008; Robin H. Johnson <robbat2@g.o>
38 libxml-1.8.17-r2.ebuild:
39
40
41
42 1.1 dev-libs/libxml/libxml-1.8.17-r3.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml/libxml-1.8.17-r3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxml/libxml-1.8.17-r3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libxml-1.8.17-r3.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/libxml/libxml-1.8.17-r3.ebuild,v 1.1 2009/02/03 23:53:09 patrick Exp $
52
53 inherit eutils flag-o-matic
54
55 DESCRIPTION="Version 1 of the library to manipulate XML files"
56 HOMEPAGE="http://www.xmlsoft.org/"
57 SRC_URI="ftp://xmlsoft.org/old/${P}.tar.gz"
58
59 LICENSE="GPL-2 LGPL-2"
60 SLOT="1"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
62 IUSE="doc"
63
64 RDEPEND=">=sys-libs/ncurses-5.2"
65 DEPEND="${RDEPEND}
66 >=sys-libs/readline-4.1
67 doc? ( >=dev-util/gtk-doc-1 )"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 epatch "${FILESDIR}"/configure-LANG.patch
73 epatch "${FILESDIR}"/open_call_fix.patch
74 }
75
76 src_compile() {
77 LIBS="-lncurses" econf || die
78 emake -j1 || die # Doesn't work with -j 4 (hallski)
79 }
80
81 src_install() {
82 make DESTDIR="${D}" \
83 BASE_DIR=/usr/share/doc \
84 DOC_MODULE=${PF} \
85 TARGET_DIR=/usr/share/doc/${PF}/html \
86 install || die
87
88 # This link must be fixed
89 rm "${D}"/usr/include/gnome-xml/libxml
90 dosym /usr/include/gnome-xml /usr/include/gnome-xml/libxml
91
92 dodoc AUTHORS ChangeLog NEWS README
93 }
94
95 pkg_preinst() {
96 if [[ -e ${ROOT}/usr/include/gnome-xml/libxml ]] ; then
97 rm -f "${ROOT}"/usr/include/gnome-xml/libxml
98 fi
99 }