Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libxslt: ChangeLog libxslt-1.1.23.ebuild libxslt-1.1.20.ebuild libxslt-1.1.20-r1.ebuild
Date: Sun, 20 Apr 2008 11:20:27
Message-Id: E1JnXaq-00030s-6Y@stork.gentoo.org
1 eva 08/04/20 11:20:24
2
3 Modified: ChangeLog
4 Added: libxslt-1.1.23.ebuild
5 Removed: libxslt-1.1.20.ebuild libxslt-1.1.20-r1.ebuild
6 Log:
7 bump to 1.1.23. Bug and build fixes. Fix bug #212784.
8 (Portage version: 2.1.5_rc5)
9
10 Revision Changes Path
11 1.174 dev-libs/libxslt/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/ChangeLog?rev=1.174&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/ChangeLog?rev=1.174&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/ChangeLog?r1=1.173&r2=1.174
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v
20 retrieving revision 1.173
21 retrieving revision 1.174
22 diff -u -r1.173 -r1.174
23 --- ChangeLog 26 Mar 2008 03:41:42 -0000 1.173
24 +++ ChangeLog 20 Apr 2008 11:20:23 -0000 1.174
25 @@ -1,6 +1,13 @@
26 # ChangeLog for dev-libs/libxslt
27 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.173 2008/03/26 03:41:42 ricmm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.174 2008/04/20 11:20:23 eva Exp $
30 +
31 +*libxslt-1.1.23 (20 Apr 2008)
32 +
33 + 20 Apr 2008; Gilles Dartiguelongue <eva@g.o>
34 + +files/libxslt-1.1.23-parallel-install.patch, -libxslt-1.1.20.ebuild,
35 + -libxslt-1.1.20-r1.ebuild, +libxslt-1.1.23.ebuild:
36 + bump to 1.1.23. Bug and build fixes. Fix bug #212784.
37
38 25 Mar 2008; <ricmm@g.o> libxslt-1.1.20.ebuild,
39 libxslt-1.1.20-r1.ebuild, libxslt-1.1.22.ebuild:
40
41
42
43 1.1 dev-libs/libxslt/libxslt-1.1.23.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/libxslt-1.1.23.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/libxslt-1.1.23.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libxslt-1.1.23.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/libxslt-1.1.23.ebuild,v 1.1 2008/04/20 11:20:23 eva Exp $
53
54 inherit libtool eutils python autotools
55
56 DESCRIPTION="XSLT libraries and tools"
57 HOMEPAGE="http://www.xmlsoft.org/"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd"
62 IUSE="crypt debug examples python"
63
64 DEPEND=">=dev-libs/libxml2-2.6.27
65 crypt? ( >=dev-libs/libgcrypt-1.1.92 )
66 python? ( dev-lang/python )"
67
68 SRC_URI="ftp://xmlsoft.org/${PN}/${P}.tar.gz"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73
74 # we still require the 1.1.8 patch for the .m4 file, to add
75 # the CXXFLAGS defines <obz@g.o>
76 epatch "${FILESDIR}/libxslt.m4-${PN}-1.1.8.patch"
77
78 # fix parallel install, bug #212784.
79 epatch "${FILESDIR}/${P}-parallel-install.patch"
80
81 # Patch Makefile to fix bug #99382 so that html gets installed in ${PF}
82 sed -i -e "s:libxslt-\$(VERSION):${PF}:" doc/Makefile.am
83
84 eautomake
85 epunt_cxx
86 elibtoolize
87 }
88
89 src_compile() {
90 # Always pass --with-debugger. It is required by third parties (see
91 # e.g. bug #98345)
92 local myconf="--with-debugger \
93 $(use_with python) \
94 $(use_with crypt crypto) \
95 $(use_with debug) \
96 $(use_with debug mem-debug)"
97
98 econf ${myconf} || die "configure failed"
99
100 emake || die "Compilation failed"
101 }
102
103 src_install() {
104 emake DESTDIR="${D}" install || die "Installation failed"
105
106 dodoc AUTHORS ChangeLog Copyright FEATURES NEWS README TODO
107
108 if ! use examples; then
109 rm -rf "${D}/usr/share/doc/${PN}-python-${PV}/examples"
110 fi
111 }
112
113
114
115 --
116 gentoo-commits@l.g.o mailing list