Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/pango: ChangeLog pango-1.20.5.ebuild
Date: Wed, 02 Jul 2008 21:47:37
Message-Id: E1KEAAm-00088R-B6@stork.gentoo.org
1 eva 08/07/02 21:47:32
2
3 Modified: ChangeLog
4 Added: pango-1.20.5.ebuild
5 Log:
6 bump to 1.20.5. fix a crasher bug with Linux-Libertine font.
7 (Portage version: 2.2_rc1/cvs/Linux 2.6.24-gentoo-r8-mactel x86_64)
8
9 Revision Changes Path
10 1.221 x11-libs/pango/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.221&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.221&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.220&r2=1.221
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
19 retrieving revision 1.220
20 retrieving revision 1.221
21 diff -u -r1.220 -r1.221
22 --- ChangeLog 30 Jun 2008 16:15:16 -0000 1.220
23 +++ ChangeLog 2 Jul 2008 21:47:31 -0000 1.221
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-libs/pango
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.220 2008/06/30 16:15:16 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.221 2008/07/02 21:47:31 eva Exp $
29 +
30 +*pango-1.20.5 (02 Jul 2008)
31 +
32 + 02 Jul 2008; Gilles Dartiguelongue <eva@g.o> +pango-1.20.5.ebuild:
33 + bump to 1.20.5. fix a crasher bug with Linux-Libertine font.
34
35 30 Jun 2008; Jeroen Roovers <jer@g.o> pango-1.20.3.ebuild:
36 Stable for HPPA (bug #227679).
37
38
39
40 1.1 x11-libs/pango/pango-1.20.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/pango-1.20.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/pango-1.20.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: pango-1.20.5.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.20.5.ebuild,v 1.1 2008/07/02 21:47:31 eva Exp $
50
51 inherit eutils gnome2 multilib
52
53 DESCRIPTION="Text rendering and layout library"
54 HOMEPAGE="http://www.pango.org/"
55
56 LICENSE="LGPL-2 FTL"
57 SLOT="0"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
59 IUSE="X doc"
60
61 # glib-2.16.3 dependency instead of 2.14 ensures Unicode 5.1 support on the system
62 RDEPEND=">=dev-libs/glib-2.16.3
63 >=media-libs/fontconfig-1.0.1
64 >=media-libs/freetype-2
65 >=x11-libs/cairo-1.2.6
66 X? (
67 x11-libs/libXrender
68 x11-libs/libX11
69 x11-libs/libXft
70 )"
71 DEPEND="${RDEPEND}
72 >=dev-util/pkgconfig-0.9
73 X? ( x11-proto/xproto )
74 doc? (
75 >=dev-util/gtk-doc-1
76 ~app-text/docbook-xml-dtd-4.1.2
77 )"
78
79 DOCS="AUTHORS ChangeLog* NEWS README"
80
81 function multilib_enabled() {
82 has_multilib_profile || ( use x86 && [ "$(get_libdir)" == "lib32" ] )
83 }
84
85 pkg_setup() {
86 G2CONF="${G2CONF} $(use_with X x)"
87 }
88
89 src_unpack() {
90 gnome2_src_unpack
91
92 # make config file location host specific so that a 32bit and 64bit pango
93 # wont fight with each other on a multilib system. Fix building for
94 # emul-linux-x86-gtklibs
95 if multilib_enabled ; then
96 epatch "${FILESDIR}/${PN}-1.2.5-lib64.patch"
97 fi
98
99 epunt_cxx
100 }
101
102 src_install() {
103 gnome2_src_install
104 rm "${D}/etc/pango/pango.modules"
105 }
106
107 pkg_postinst() {
108 if [[ "${ROOT}" == "/" ]] ; then
109 einfo "Generating modules listing..."
110
111 local PANGO_CONFDIR=
112
113 if multilib_enabled ; then
114 PANGO_CONFDIR="/etc/pango/${CHOST}"
115 else
116 PANGO_CONFDIR="/etc/pango"
117 fi
118
119 mkdir -p ${PANGO_CONFDIR}
120
121 pango-querymodules > ${PANGO_CONFDIR}/pango.modules
122 fi
123 }
124
125
126
127 --
128 gentoo-commits@l.g.o mailing list