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: libxslt-1.1.24-r1.ebuild ChangeLog
Date: Sun, 31 May 2009 23:10:12
Message-Id: E1MAuAM-00056l-AU@stork.gentoo.org
1 eva 09/05/31 23:10:10
2
3 Modified: libxslt-1.1.24-r1.ebuild ChangeLog
4 Log:
5 Remove unused configure flags, bug #230750. Move documentation to one folder.
6 (Portage version: 2.2_rc33/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.3 dev-libs/libxslt/libxslt-1.1.24-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/libxslt-1.1.24-r1.ebuild?rev=1.3&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/libxslt-1.1.24-r1.ebuild?rev=1.3&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/libxslt-1.1.24-r1.ebuild?r1=1.2&r2=1.3
14
15 Index: libxslt-1.1.24-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxslt/libxslt-1.1.24-r1.ebuild,v
18 retrieving revision 1.2
19 retrieving revision 1.3
20 diff -u -r1.2 -r1.3
21 --- libxslt-1.1.24-r1.ebuild 5 Nov 2008 00:36:59 -0000 1.2
22 +++ libxslt-1.1.24-r1.ebuild 31 May 2009 23:10:10 -0000 1.3
23 @@ -1,22 +1,22 @@
24 -# Copyright 1999-2008 Gentoo Foundation
25 +# Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/libxslt-1.1.24-r1.ebuild,v 1.2 2008/11/05 00:36:59 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/libxslt-1.1.24-r1.ebuild,v 1.3 2009/05/31 23:10:10 eva Exp $
29
30 inherit libtool eutils python autotools
31
32 DESCRIPTION="XSLT libraries and tools"
33 HOMEPAGE="http://www.xmlsoft.org/"
34 +SRC_URI="ftp://xmlsoft.org/${PN}/${P}.tar.gz"
35
36 LICENSE="MIT"
37 SLOT="0"
38 KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd"
39 IUSE="crypt debug examples python"
40
41 -DEPEND=">=dev-libs/libxml2-2.6.27
42 +RDEPEND=">=dev-libs/libxml2-2.6.27
43 crypt? ( >=dev-libs/libgcrypt-1.1.92 )
44 python? ( dev-lang/python )"
45 -
46 -SRC_URI="ftp://xmlsoft.org/${PN}/${P}.tar.gz"
47 +DEPEND="${RDEPEND}"
48
49 src_unpack() {
50 unpack ${A}
51 @@ -46,25 +46,24 @@
52 }
53
54 src_compile() {
55 - # Always pass --with-debugger. It is required by third parties (see
56 - # e.g. bug #98345)
57 - local myconf="--with-debugger \
58 - $(use_with python) \
59 + local myconf="$(use_with python) \
60 $(use_with crypt crypto) \
61 $(use_with debug) \
62 $(use_with debug mem-debug)"
63
64 - econf ${myconf} || die "configure failed"
65 -
66 + econf ${myconf}
67 emake || die "Compilation failed"
68 }
69
70 src_install() {
71 - emake DESTDIR="${D}" install || die "Installation failed"
72 + emake DESTDIR="${D}" \
73 + DOCS_DIR=/usr/share/doc/${PF}/python \
74 + install || die "Installation failed"
75
76 - dodoc AUTHORS ChangeLog Copyright FEATURES NEWS README TODO
77 + dodoc AUTHORS ChangeLog Copyright FEATURES NEWS README TODO || die "dodoc failed"
78 + rm -rf "${D}/usr/share/doc/${PN}-python-${PV}"
79
80 if ! use examples; then
81 - rm -rf "${D}/usr/share/doc/${PN}-python-${PV}/examples"
82 + rm -rf "${D}/usr/share/doc/${PF}/python/examples"
83 fi
84 }
85
86
87
88 1.190 dev-libs/libxslt/ChangeLog
89
90 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/ChangeLog?rev=1.190&view=markup
91 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/ChangeLog?rev=1.190&content-type=text/plain
92 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libxslt/ChangeLog?r1=1.189&r2=1.190
93
94 Index: ChangeLog
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v
97 retrieving revision 1.189
98 retrieving revision 1.190
99 diff -u -r1.189 -r1.190
100 --- ChangeLog 31 May 2009 18:37:29 -0000 1.189
101 +++ ChangeLog 31 May 2009 23:10:10 -0000 1.190
102 @@ -1,6 +1,11 @@
103 # ChangeLog for dev-libs/libxslt
104 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
105 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.189 2009/05/31 18:37:29 eva Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/ChangeLog,v 1.190 2009/05/31 23:10:10 eva Exp $
107 +
108 + 31 May 2009; Gilles Dartiguelongue <eva@g.o>
109 + libxslt-1.1.24-r1.ebuild:
110 + Remove unused configure flags, bug #230750. Move documentation to one
111 + folder.
112
113 31 May 2009; Gilles Dartiguelongue <eva@g.o>
114 -files/libxslt-1.1.20-amd64.patch, -libxslt-1.1.22.ebuild: