Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libxslt: libxslt-1.1.26.ebuild ChangeLog
Date: Wed, 07 Oct 2009 14:40:06
Message-Id: E1MvXgG-0007HQ-Ey@stork.gentoo.org
1 ssuominen 09/10/07 14:39:52
2
3 Modified: ChangeLog
4 Added: libxslt-1.1.26.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc44/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.191 dev-libs/libxslt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/ChangeLog?rev=1.191&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/ChangeLog?rev=1.191&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/ChangeLog?r1=1.190&r2=1.191
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v
19 retrieving revision 1.190
20 retrieving revision 1.191
21 diff -u -r1.190 -r1.191
22 --- ChangeLog 31 May 2009 23:10:10 -0000 1.190
23 +++ ChangeLog 7 Oct 2009 14:39:51 -0000 1.191
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/libxslt
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.190 2009/05/31 23:10:10 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.191 2009/10/07 14:39:51 ssuominen Exp $
29 +
30 +*libxslt-1.1.26 (07 Oct 2009)
31 +
32 + 07 Oct 2009; Samuli Suominen <ssuominen@g.o>
33 + +libxslt-1.1.26.ebuild, +files/libxslt.m4-libxslt-1.1.26.patch:
34 + Version bump.
35
36 31 May 2009; Gilles Dartiguelongue <eva@g.o>
37 libxslt-1.1.24-r1.ebuild:
38
39
40
41 1.1 dev-libs/libxslt/libxslt-1.1.26.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/libxslt-1.1.26.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/libxslt-1.1.26.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libxslt-1.1.26.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/libxslt/libxslt-1.1.26.ebuild,v 1.1 2009/10/07 14:39:51 ssuominen Exp $
51
52 EAPI=2
53 inherit autotools eutils
54
55 DESCRIPTION="XSLT libraries and tools"
56 HOMEPAGE="http://www.xmlsoft.org/"
57 SRC_URI="ftp://xmlsoft.org/${PN}/${P}.tar.gz"
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 python"
63
64 RDEPEND=">=dev-libs/libxml2-2.6.27
65 crypt? ( >=dev-libs/libgcrypt-1.1.42 )
66 python? ( >=dev-lang/python-2.5 )"
67 DEPEND="${RDEPEND}"
68
69 src_prepare() {
70 epatch "${FILESDIR}"/libxslt.m4-${P}.patch \
71 "${FILESDIR}"/${PN}-1.1.23-parallel-install.patch
72 eautoreconf
73 epunt_cxx
74 }
75
76 src_configure() {
77 econf \
78 --disable-dependency-tracking \
79 --with-html-dir=/usr/share/doc/${PF} \
80 --with-html-subdir=html \
81 $(use_with crypt crypto) \
82 $(use_with python) \
83 $(use_with debug) \
84 $(use_with debug mem-debug)
85
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die
90 mv -vf "${D}"/usr/share/doc/${PN}-python-${PV} \
91 "${D}"/usr/share/doc/${PF}/python
92 dodoc AUTHORS ChangeLog FEATURES NEWS README TODO || die
93 }