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-cpp/libxmlpp: ChangeLog libxmlpp-2.26.1.ebuild
Date: Sun, 02 Aug 2009 10:13:17
Message-Id: E1MXY42-0007pv-Oa@stork.gentoo.org
1 eva 09/08/02 10:13:14
2
3 Modified: ChangeLog
4 Added: libxmlpp-2.26.1.ebuild
5 Log:
6 Version bump. Build fixes.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.88 dev-cpp/libxmlpp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libxmlpp/ChangeLog?rev=1.88&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libxmlpp/ChangeLog?rev=1.88&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libxmlpp/ChangeLog?r1=1.87&r2=1.88
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libxmlpp/ChangeLog,v
19 retrieving revision 1.87
20 retrieving revision 1.88
21 diff -u -r1.87 -r1.88
22 --- ChangeLog 10 May 2009 22:26:38 -0000 1.87
23 +++ ChangeLog 2 Aug 2009 10:13:14 -0000 1.88
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-cpp/libxmlpp
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libxmlpp/ChangeLog,v 1.87 2009/05/10 22:26:38 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libxmlpp/ChangeLog,v 1.88 2009/08/02 10:13:14 eva Exp $
29 +
30 +*libxmlpp-2.26.1 (02 Aug 2009)
31 +
32 + 02 Aug 2009; Gilles Dartiguelongue <eva@g.o>
33 + +libxmlpp-2.26.1.ebuild:
34 + Version bump. Build fixes.
35
36 *libxmlpp-2.26.0 (10 May 2009)
37
38
39
40
41 1.1 dev-cpp/libxmlpp/libxmlpp-2.26.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libxmlpp/libxmlpp-2.26.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libxmlpp/libxmlpp-2.26.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libxmlpp-2.26.1.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-cpp/libxmlpp/libxmlpp-2.26.1.ebuild,v 1.1 2009/08/02 10:13:14 eva Exp $
51
52 inherit gnome2 eutils
53
54 MY_PN="${PN/pp/++}"
55 MY_P="${MY_PN}-${PV}"
56 S="${WORKDIR}/${MY_P}"
57
58 DESCRIPTION="C++ wrapper for the libxml2 XML parser library"
59 HOMEPAGE="http://libxmlplusplus.sourceforge.net/"
60 SRC_URI="mirror://gnome/sources/libxml++/${PV%.*}/${MY_P}.tar.bz2"
61
62 LICENSE="LGPL-2.1"
63 SLOT="2.6"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
65 IUSE="doc"
66
67 RDEPEND=">=dev-libs/libxml2-2.6.1
68 >=dev-cpp/glibmm-2.4"
69
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig"
72
73 DOCS="AUTHORS ChangeLog NEWS README*"
74
75 src_unpack() {
76 gnome2_src_unpack
77
78 # don't waste time building the examples
79 sed 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' \
80 -i Makefile.am Makefile.in || die "sed Makefile.in failed"
81 }
82
83 src_install() {
84 gnome2_src_install
85
86 rm -fr "${D}"/usr/share/doc/libxml++*
87 use doc && dohtml docs/reference/${PV%.*}/html/*
88 }