Gentoo Archives: gentoo-commits

From: "Mart Raudsepp (leio)" <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/gnome-doc-utils: ChangeLog gnome-doc-utils-0.14.0.ebuild
Date: Tue, 07 Oct 2008 11:30:00
Message-Id: E1KnAlJ-00088w-Kt@stork.gentoo.org
1 leio 08/10/07 11:29:57
2
3 Modified: ChangeLog
4 Added: gnome-doc-utils-0.14.0.ebuild
5 Log:
6 New version - correctly handles content and tooltips for links to anchor elements; does not reprocess book titles when title and bookinfo/title exist. FHS patch reworked to not require eautoreconf
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 x86_64)
8
9 Revision Changes Path
10 1.119 app-text/gnome-doc-utils/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gnome-doc-utils/ChangeLog?rev=1.119&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gnome-doc-utils/ChangeLog?rev=1.119&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gnome-doc-utils/ChangeLog?r1=1.118&r2=1.119
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/ChangeLog,v
19 retrieving revision 1.118
20 retrieving revision 1.119
21 diff -u -r1.118 -r1.119
22 --- ChangeLog 12 Aug 2008 23:22:24 -0000 1.118
23 +++ ChangeLog 7 Oct 2008 11:29:57 -0000 1.119
24 @@ -1,6 +1,14 @@
25 # ChangeLog for app-text/gnome-doc-utils
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/ChangeLog,v 1.118 2008/08/12 23:22:24 leio Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-doc-utils/ChangeLog,v 1.119 2008/10/07 11:29:57 leio Exp $
29 +
30 +*gnome-doc-utils-0.14.0 (07 Oct 2008)
31 +
32 + 07 Oct 2008; Mart Raudsepp <leio@g.o>
33 + +files/gnome-doc-utils-0.14.0-fhs.patch, +gnome-doc-utils-0.14.0.ebuild:
34 + New version - correctly handles content and tooltips for links to anchor
35 + elements; does not reprocess book titles when title and bookinfo/title
36 + exist. FHS patch reworked to not require eautoreconf
37
38 12 Aug 2008; Mart Raudsepp <leio@g.o>
39 -gnome-doc-utils-0.10.3.ebuild, gnome-doc-utils-0.12.0.ebuild,
40
41
42
43 1.1 app-text/gnome-doc-utils/gnome-doc-utils-0.14.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gnome-doc-utils/gnome-doc-utils-0.14.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/gnome-doc-utils/gnome-doc-utils-0.14.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gnome-doc-utils-0.14.0.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/app-text/gnome-doc-utils/gnome-doc-utils-0.14.0.ebuild,v 1.1 2008/10/07 11:29:57 leio Exp $
53
54 inherit eutils python gnome2
55
56 DESCRIPTION="A collection of documentation utilities for the Gnome project"
57 HOMEPAGE="http://www.gnome.org/"
58
59 LICENSE="GPL-2 LGPL-2.1"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
62 IUSE=""
63
64 RDEPEND=">=dev-libs/libxml2-2.6.12
65 >=dev-libs/libxslt-1.1.8
66 >=dev-lang/python-2"
67 DEPEND="${RDEPEND}
68 sys-devel/gettext
69 >=dev-util/intltool-0.35
70 >=dev-util/pkgconfig-0.9
71 ~app-text/docbook-xml-dtd-4.4"
72
73 DOCS="AUTHORS ChangeLog NEWS README"
74
75 src_unpack() {
76 gnome2_src_unpack
77
78 # Make xml2po FHS compliant, bug #190798
79 epatch "${FILESDIR}/${P}-fhs.patch"
80
81 # If there is a need to reintroduce eautomake or eautoreconf, make sure
82 # to AT_M4DIR="tools m4", bug #224609 (m4 removes glib build time dep)
83 }
84
85 pkg_setup() {
86 G2CONF="--disable-scrollkeeper"
87
88 if ! built_with_use dev-libs/libxml2 python; then
89 eerror "Please re-emerge dev-libs/libxml2 with the python use flag set"
90 die "dev-libs/libxml2 needs python use flag"
91 fi
92 }
93
94 pkg_postinst() {
95 python_version
96 python_mod_optimize /usr/lib/python${PYVER}/site-packages/xml2po
97 gnome2_pkg_postinst
98 }
99
100 pkg_postrm() {
101 python_mod_cleanup /usr/lib/python*/site-packages/xml2po
102 gnome2_pkg_postrm
103 }