diff options
author | Romain Perier <mrpouet@gentoo.org> | 2009-07-09 11:28:49 +0000 |
---|---|---|
committer | Romain Perier <mrpouet@gentoo.org> | 2009-07-09 11:28:49 +0000 |
commit | 562cd91b7d2d32dfac24a37627c545fa0a6cd262 (patch) | |
tree | 70c8e1f100f6e24000825e3c79917224268bf851 /x11-libs/pango | |
parent | Add ~mips keywords to KDE 3.5.10 (diff) | |
download | gentoo-2-562cd91b7d2d32dfac24a37627c545fa0a6cd262.tar.gz gentoo-2-562cd91b7d2d32dfac24a37627c545fa0a6cd262.tar.bz2 gentoo-2-562cd91b7d2d32dfac24a37627c545fa0a6cd262.zip |
Version bump to 1.24.4. Bug fixes
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'x11-libs/pango')
-rw-r--r-- | x11-libs/pango/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/pango/pango-1.24.4.ebuild | 79 |
2 files changed, 86 insertions, 1 deletions
diff --git a/x11-libs/pango/ChangeLog b/x11-libs/pango/ChangeLog index ba21b1c1f93e..2d6a100ff51a 100644 --- a/x11-libs/pango/ChangeLog +++ b/x11-libs/pango/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-libs/pango # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.258 2009/06/29 21:56:11 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/ChangeLog,v 1.259 2009/07/09 11:28:49 mrpouet Exp $ + +*pango-1.24.4 (09 Jul 2009) + + 09 Jul 2009; Romain Perier <mrpouet@gentoo.org> + +pango-1.24.4.ebuild: + Version bump to 1.24.4. Bug fixes *pango-1.24.3 (29 Jun 2009) diff --git a/x11-libs/pango/pango-1.24.4.ebuild b/x11-libs/pango/pango-1.24.4.ebuild new file mode 100644 index 000000000000..a17adeb547d6 --- /dev/null +++ b/x11-libs/pango/pango-1.24.4.ebuild @@ -0,0 +1,79 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/pango/pango-1.24.4.ebuild,v 1.1 2009/07/09 11:28:49 mrpouet Exp $ + +EAPI="2" + +inherit eutils gnome2 multilib + +DESCRIPTION="Text rendering and layout library" +HOMEPAGE="http://www.pango.org/" + +LICENSE="LGPL-2 FTL" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="X doc" + +# FIXME: add gobject-introspection dependency when it is available +RDEPEND="dev-libs/glib:2 + >=media-libs/fontconfig-2.5.0 + media-libs/freetype:2 + >=x11-libs/cairo-1.7.6[X?,svg] + X? ( + x11-libs/libXrender + x11-libs/libX11 + x11-libs/libXft )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( + >=dev-util/gtk-doc-1 + ~app-text/docbook-xml-dtd-4.1.2 ) + X? ( x11-proto/xproto )" + +DOCS="AUTHORS ChangeLog* NEWS README THANKS" + +function multilib_enabled() { + has_multilib_profile || ( use x86 && [ "$(get_libdir)" = "lib32" ] ) +} + +pkg_setup() { + G2CONF="${G2CONF} $(use_with X x)" +} + +src_prepare() { + gnome2_src_prepare + + # make config file location host specific so that a 32bit and 64bit pango + # wont fight with each other on a multilib system. Fix building for + # emul-linux-x86-gtklibs + if multilib_enabled ; then + epatch "${FILESDIR}/${PN}-1.2.5-lib64.patch" + fi + + # gtk-doc checks do not pass, upstream bug #578944 + sed 's:TESTS = check.docs: TESTS = :g'\ + -i docs/Makefile.am docs/Makefile.in || die "sed failed" +} + +src_install() { + gnome2_src_install + rm "${D}/etc/pango/pango.modules" || die "rm pango.modules failed" +} + +pkg_postinst() { + if [ "${ROOT}" = "/" ] ; then + einfo "Generating modules listing..." + + local PANGO_CONFDIR= + + if multilib_enabled ; then + PANGO_CONFDIR="/etc/pango/${CHOST}" + else + PANGO_CONFDIR="/etc/pango" + fi + + mkdir -p ${PANGO_CONFDIR} + + pango-querymodules > ${PANGO_CONFDIR}/pango.modules + fi +} |