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.26.0.ebuild pango-1.24.2.ebuild
Date: Thu, 29 Oct 2009 21:26:00
Message-Id: E1N3cVK-0007LN-J6@stork.gentoo.org
1 eva 09/10/29 21:25:58
2
3 Modified: ChangeLog
4 Added: pango-1.26.0.ebuild
5 Removed: pango-1.24.2.ebuild
6 Log:
7 New version for GNOME 2.28. Clean up old revisions.
8 (Portage version: 2.2_rc46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.275 x11-libs/pango/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.275&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/ChangeLog?rev=1.275&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/ChangeLog?r1=1.274&r2=1.275
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v
20 retrieving revision 1.274
21 retrieving revision 1.275
22 diff -u -r1.274 -r1.275
23 --- ChangeLog 26 Oct 2009 18:13:45 -0000 1.274
24 +++ ChangeLog 29 Oct 2009 21:25:57 -0000 1.275
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-libs/pango
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.274 2009/10/26 18:13:45 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.275 2009/10/29 21:25:57 eva Exp $
30 +
31 +*pango-1.26.0 (29 Oct 2009)
32 +
33 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o> -pango-1.24.2.ebuild,
34 + +pango-1.26.0.ebuild, +files/pango-1.26.0-introspection-automagic.patch,
35 + +files/pango-1.26.0-lib64.patch:
36 + New version for GNOME 2.28. Clean up old revisions.
37
38 26 Oct 2009; Raúl Porcel <armin76@g.o> pango-1.24.5-r1.ebuild:
39 ia64/s390/sh/sparc stable wrt #285586
40
41
42
43 1.1 x11-libs/pango/pango-1.26.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/pango-1.26.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/pango-1.26.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pango-1.26.0.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.26.0.ebuild,v 1.1 2009/10/29 21:25:57 eva Exp $
53
54 EAPI="2"
55 GCONF_DEBUG="yes"
56
57 inherit autotools eutils gnome2 multilib
58
59 DESCRIPTION="Internationalized text layout and rendering library"
60 HOMEPAGE="http://www.pango.org/"
61
62 LICENSE="LGPL-2 FTL"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
65 IUSE="X doc test"
66
67 RDEPEND=">=dev-libs/glib-2.17.3
68 >=media-libs/fontconfig-2.5.0
69 media-libs/freetype:2
70 >=x11-libs/cairo-1.7.6[X?]
71 X? (
72 x11-libs/libXrender
73 x11-libs/libX11
74 x11-libs/libXft )"
75 DEPEND="${RDEPEND}
76 >=dev-util/pkgconfig-0.9
77 doc? (
78 >=dev-util/gtk-doc-1
79 ~app-text/docbook-xml-dtd-4.1.2
80 x11-libs/libXft )
81 test? (
82 >=dev-util/gtk-doc-1
83 ~app-text/docbook-xml-dtd-4.1.2
84 x11-libs/libXft )
85 X? ( x11-proto/xproto )"
86
87 DOCS="AUTHORS ChangeLog* NEWS README THANKS"
88
89 function multilib_enabled() {
90 has_multilib_profile || ( use x86 && [ "$(get_libdir)" = "lib32" ] )
91 }
92
93 pkg_setup() {
94 # XXX: DO NOT add introspection support, collides with gir-repository[pango]
95 G2CONF="${G2CONF}
96 --disable-introspection
97 $(use_with X x)"
98 }
99
100 src_prepare() {
101 gnome2_src_prepare
102
103 # make config file location host specific so that a 32bit and 64bit pango
104 # wont fight with each other on a multilib system. Fix building for
105 # emul-linux-x86-gtklibs
106 if multilib_enabled ; then
107 epatch "${FILESDIR}/${PN}-1.26.0-lib64.patch"
108 fi
109
110 # gtk-doc checks do not pass, upstream bug #578944
111 sed -e 's:TESTS = check.docs: TESTS = :g' \
112 -i docs/Makefile.am || die "sed failed"
113
114 # Fix introspection automagic.
115 # https://bugzilla.gnome.org/show_bug.cgi?id=596506
116 epatch "${FILESDIR}/${PN}-1.26.0-introspection-automagic.patch"
117
118 eautoreconf
119 }
120
121 pkg_postinst() {
122 if [ "${ROOT}" = "/" ] ; then
123 einfo "Generating modules listing..."
124
125 local PANGO_CONFDIR=
126
127 if multilib_enabled ; then
128 PANGO_CONFDIR="/etc/pango/${CHOST}"
129 else
130 PANGO_CONFDIR="/etc/pango"
131 fi
132
133 mkdir -p ${PANGO_CONFDIR}
134
135 pango-querymodules > ${PANGO_CONFDIR}/pango.modules
136 fi
137 }