Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/pixman/
Date: Fri, 25 Sep 2015 19:51:01
Message-Id: 1443210608.84d8a366e0ba9702f2285488fb0f1c1ee5ee6bf6.mattst88@gentoo
1 commit: 84d8a366e0ba9702f2285488fb0f1c1ee5ee6bf6
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 19:49:47 2015 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 19:50:08 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84d8a366
7
8 x11-libs/pixman: Version bump to 0.32.8.
9
10 x11-libs/pixman/Manifest | 1 +
11 x11-libs/pixman/pixman-0.32.8.ebuild | 32 ++++++++++++++++++++++++++++++++
12 2 files changed, 33 insertions(+)
13
14 diff --git a/x11-libs/pixman/Manifest b/x11-libs/pixman/Manifest
15 index f8b0d0d..79fdace 100644
16 --- a/x11-libs/pixman/Manifest
17 +++ b/x11-libs/pixman/Manifest
18 @@ -1,2 +1,3 @@
19 DIST pixman-0.32.6.tar.bz2 672201 SHA256 201fc0d7d6bc0017496f2bd27b3ca14224aea0df6b624c5ee2dc0307a4ff14a4 SHA512 162e34a3ac728b348b8cd429172fa9f6ba1fc8d94716368c84a8081c42c4e2639ec7624e5528d9059695736be785ee210835c7d832b4a07a2175aec349ddffe9 WHIRLPOOL f12567cf1feb7a82956f7b2edd1db29e439933e437a9419bf505eb1ce61ce8ac9ab1fe678f0e91064ef4a776b47892930940a10c9051da165155304f3757cd92
20 +DIST pixman-0.32.8.tar.bz2 696038 SHA256 5c63dbb3523fc4d86ed4186677815918a941b7cb390d5eec4f55cb5d66b59fb1 SHA512 43924a92f0d3e03359bd74701cc2a27c000b24fc513e0f760389da7e6ee1acec666a734003ef193d45251cc9645c07caf91142c3ff9134b1429a38a9167332a2 WHIRLPOOL 0035c6e5713a79caeeb88e865204d708f9dc2fdc8881cc4468d64f1d31243b7399f1404d76c33f43b3c17daf46f7c5e33659a961f0847993cfd3d09015fa26eb
21 DIST pixman-0.33.2.tar.bz2 725382 SHA256 0d12c669d69024c055ec9f877ecd6beb253796444ea3de14f8f197d438fb93fd SHA512 d74303840122160888c3983d1cb160ce29ecfbd8266f154fde69a489c7abe2c5d09c15c2414199c6e9f5458fe5dfcc166b02c7721489b493d9c5ee81bdc12b00 WHIRLPOOL 9e983b52ff26a586bec3afabf23553b7de773f3fe232ee19a217225fcc106bca93b437b7468b364a6e0cb63576a5f82a38a570b84b25feb6f490d26f6aec359d
22
23 diff --git a/x11-libs/pixman/pixman-0.32.8.ebuild b/x11-libs/pixman/pixman-0.32.8.ebuild
24 new file mode 100644
25 index 0000000..0b558b8
26 --- /dev/null
27 +++ b/x11-libs/pixman/pixman-0.32.8.ebuild
28 @@ -0,0 +1,32 @@
29 +# Copyright 1999-2015 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +# $Id$
32 +
33 +EAPI=5
34 +XORG_MULTILIB=yes
35 +inherit xorg-2 toolchain-funcs versionator
36 +
37 +EGIT_REPO_URI="git://anongit.freedesktop.org/git/pixman"
38 +DESCRIPTION="Low-level pixel manipulation routines"
39 +
40 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
41 +IUSE="altivec iwmmxt loongson2f cpu_flags_x86_mmxext neon cpu_flags_x86_sse2 cpu_flags_x86_ssse3"
42 +RDEPEND="abi_x86_32? (
43 + !<=app-emulation/emul-linux-x86-gtklibs-20131008
44 + !app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
45 + )"
46 +
47 +src_configure() {
48 + XORG_CONFIGURE_OPTIONS=(
49 + $(use_enable cpu_flags_x86_mmxext mmx)
50 + $(use_enable cpu_flags_x86_sse2 sse2)
51 + $(use_enable cpu_flags_x86_ssse3 ssse3)
52 + $(use_enable altivec vmx)
53 + $(use_enable neon arm-neon)
54 + $(use_enable iwmmxt arm-iwmmxt)
55 + $(use_enable loongson2f loongson-mmi)
56 + --disable-gtk
57 + --disable-libpng
58 + )
59 + xorg-2_src_configure
60 +}