Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/pango/
Date: Tue, 28 Jun 2016 20:30:30
Message-Id: 1467145751.c2b30b9607d151a8d25a1222020779afb6685419.pacho@gentoo
1 commit: c2b30b9607d151a8d25a1222020779afb6685419
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 28 19:44:24 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 28 20:29:11 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2b30b96
7
8 x11-libs/pango: Drop old
9
10 Package-Manager: portage-2.3.0_rc1
11
12 x11-libs/pango/pango-1.36.8.ebuild | 80 --------------------------------------
13 1 file changed, 80 deletions(-)
14
15 diff --git a/x11-libs/pango/pango-1.36.8.ebuild b/x11-libs/pango/pango-1.36.8.ebuild
16 deleted file mode 100644
17 index d434de9..0000000
18 --- a/x11-libs/pango/pango-1.36.8.ebuild
19 +++ /dev/null
20 @@ -1,80 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI="5"
26 -GCONF_DEBUG="yes"
27 -GNOME2_LA_PUNT="yes"
28 -
29 -inherit gnome2 multilib toolchain-funcs multilib-minimal
30 -
31 -DESCRIPTION="Internationalized text layout and rendering library"
32 -HOMEPAGE="http://www.pango.org/"
33 -
34 -LICENSE="LGPL-2+ FTL"
35 -SLOT="0"
36 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
37 -
38 -IUSE="X +introspection"
39 -
40 -RDEPEND="
41 - >=media-libs/harfbuzz-0.9.12:=[glib(+),truetype(+),${MULTILIB_USEDEP}]
42 - >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
43 - >=media-libs/fontconfig-2.10.92:1.0=[${MULTILIB_USEDEP}]
44 - >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}]
45 - >=x11-libs/cairo-1.12.14-r4:=[X?,${MULTILIB_USEDEP}]
46 - introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
47 - X? (
48 - >=x11-libs/libXrender-0.9.8[${MULTILIB_USEDEP}]
49 - >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
50 - >=x11-libs/libXft-2.3.1-r1[${MULTILIB_USEDEP}]
51 - )
52 - abi_x86_32? (
53 - !<=app-emulation/emul-linux-x86-gtklibs-20131008-r3
54 - !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
55 - )
56 -"
57 -DEPEND="${RDEPEND}
58 - >=dev-util/gtk-doc-am-1.20
59 - virtual/pkgconfig
60 - X? ( >=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}] )
61 - !<=sys-devel/autoconf-2.63:2.5
62 -"
63 -
64 -MULTILIB_CHOST_TOOLS=(
65 - /usr/bin/pango-querymodules
66 -)
67 -
68 -multilib_src_configure() {
69 - tc-export CXX
70 -
71 - ECONF_SOURCE=${S} \
72 - gnome2_src_configure \
73 - --with-cairo \
74 - $(multilib_native_use_enable introspection) \
75 - $(use_with X xft) \
76 - "$(usex X --x-includes="${EPREFIX}/usr/include" "")" \
77 - "$(usex X --x-libraries="${EPREFIX}/usr/$(get_libdir)" "")"
78 -
79 - if multilib_is_native_abi; then
80 - ln -s "${S}"/docs/html docs/html || die
81 - fi
82 -}
83 -
84 -multilib_src_install() {
85 - gnome2_src_install
86 -}
87 -
88 -pkg_postinst() {
89 - gnome2_pkg_postinst
90 -
91 - multilib_pkg_postinst() {
92 - einfo "Generating modules listing..."
93 - "${CHOST}-pango-querymodules" --update-cache
94 -
95 - # Remove old autogenerated file to prevent collisions with newer
96 - rm -f "${EROOT}/etc/pango/${CHOST}/pango.modules"
97 - }
98 -
99 - multilib_foreach_abi multilib_pkg_postinst
100 -}