Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/pixman: ChangeLog pixman-0.23.8.ebuild pixman-0.23.6.ebuild
Date: Mon, 31 Oct 2011 19:40:27
Message-Id: 20111031194017.7A3FD2004B@flycatcher.gentoo.org
1 chithanh 11/10/31 19:40:17
2
3 Modified: ChangeLog
4 Added: pixman-0.23.8.ebuild
5 Removed: pixman-0.23.6.ebuild
6 Log:
7 Bump to latest development release.
8
9 (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.114 x11-libs/pixman/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pixman/ChangeLog?rev=1.114&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pixman/ChangeLog?rev=1.114&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pixman/ChangeLog?r1=1.113&r2=1.114
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v
21 retrieving revision 1.113
22 retrieving revision 1.114
23 diff -u -r1.113 -r1.114
24 --- ChangeLog 22 Oct 2011 03:15:32 -0000 1.113
25 +++ ChangeLog 31 Oct 2011 19:40:17 -0000 1.114
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-libs/pixman
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v 1.113 2011/10/22 03:15:32 mattst88 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v 1.114 2011/10/31 19:40:17 chithanh Exp $
31 +
32 +*pixman-0.23.8 (31 Oct 2011)
33 +
34 + 31 Oct 2011; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
35 + -pixman-0.23.6.ebuild, +pixman-0.23.8.ebuild:
36 + Bump to latest development release.
37
38 *pixman-0.23.6 (22 Oct 2011)
39
40
41
42
43 1.1 x11-libs/pixman/pixman-0.23.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pixman/pixman-0.23.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/pixman/pixman-0.23.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pixman-0.23.8.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/pixman-0.23.8.ebuild,v 1.1 2011/10/31 19:40:17 chithanh Exp $
53
54 EAPI=4
55 inherit xorg-2 toolchain-funcs versionator
56
57 EGIT_REPO_URI="git://anongit.freedesktop.org/git/pixman"
58 DESCRIPTION="Low-level pixel manipulation routines"
59
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~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"
61 IUSE="altivec iwmmxt mmx neon sse2"
62
63 pkg_setup() {
64 xorg-2_pkg_setup
65
66 local enable_mmx="$(use mmx && echo 1 || echo 0)"
67 local enable_sse2="$(use sse2 && echo 1 || echo 0)"
68
69 # this block fixes bug #260287
70 if use x86; then
71 if use sse2 && ! $(version_is_at_least "4.2" "$(gcc-version)"); then
72 ewarn "SSE2 instructions require GCC 4.2 or higher."
73 ewarn "pixman will be built *without* SSE2 support"
74 enable_sse2="0"
75 fi
76 fi
77
78 local confadd
79 # this block fixes bug #236558
80 case "$enable_mmx,$enable_sse2" in
81 '1,1')
82 confadd=(--enable-mmx --enable-sse2) ;;
83 '1,0')
84 confadd=(--enable-mmx --disable-sse2) ;;
85 '0,1')
86 ewarn "You enabled SSE2 but have MMX disabled. This is an invalid."
87 ewarn "pixman will be built *without* MMX/SSE2 support."
88 confadd=(--disable-mmx --disable-sse2) ;;
89 '0,0')
90 confadd=(--disable-mmx --disable-sse2) ;;
91 esac
92
93 XORG_CONFIGURE_OPTIONS=(
94 "${confadd[@]}"
95 $(use_enable altivec vmx)
96 $(use_enable neon arm-neon)
97 $(use_enable iwmmxt arm-iwmmxt)
98 --disable-gtk
99 )
100 }