Gentoo Archives: gentoo-commits

From: "Saleem Abdulrasool (compnerd)" <compnerd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/pixman: ChangeLog pixman-0.12.0.ebuild
Date: Fri, 26 Sep 2008 05:34:35
Message-Id: E1Kj5yJ-0006G7-PT@stork.gentoo.org
1 compnerd 08/09/26 05:34:31
2
3 Modified: ChangeLog
4 Added: pixman-0.12.0.ebuild
5 Log:
6 version bump for cairo
7 (Portage version: 2.2_rc9/cvs/Linux 2.6.27-rc3-git3 i686)
8
9 Revision Changes Path
10 1.20 x11-libs/pixman/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/ChangeLog?rev=1.20&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/ChangeLog?rev=1.20&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/ChangeLog?r1=1.19&r2=1.20
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v
19 retrieving revision 1.19
20 retrieving revision 1.20
21 diff -u -r1.19 -r1.20
22 --- ChangeLog 26 Jul 2008 16:36:50 -0000 1.19
23 +++ ChangeLog 26 Sep 2008 05:34:31 -0000 1.20
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-libs/pixman
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v 1.19 2008/07/26 16:36:50 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v 1.20 2008/09/26 05:34:31 compnerd Exp $
29 +
30 +*pixman-0.12.0 (26 Sep 2008)
31 +
32 + 26 Sep 2008; Saleem Abdulrasool <compnerd@g.o>
33 + +files/pixman-0.12.0-sse.patch, +pixman-0.12.0.ebuild:
34 + Version bump from upstream
35
36 26 Jul 2008; Jeroen Roovers <jer@g.o> pixman-0.10.0.ebuild:
37 Stable for HPPA (bug #224929).
38
39
40
41 1.1 x11-libs/pixman/pixman-0.12.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/pixman-0.12.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/pixman-0.12.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pixman-0.12.0.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/pixman-0.12.0.ebuild,v 1.1 2008/09/26 05:34:31 compnerd Exp $
51
52 # Must be before x-modular eclass is inherited
53 #SNAPSHOT="yes"
54
55 inherit x-modular toolchain-funcs versionator
56
57 DESCRIPTION="Low-level pixel manipulation routines"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
59 IUSE="altivec mmx sse sse2"
60
61 CONFIGURE_OPTIONS="$(use_enable altivec vmx) $(use_enable mmx) \
62 $(use_enable sse2) --disable-gtk"
63
64 pkg_setup() {
65 if use sse2 && ! use sse; then
66 eerror "You enabled SSE2 but have SSE disabled. This is an invalid"
67 eerror "configuration. Either do USE='sse' or USE='-sse2'"
68 die "SSE2 selected without SSE"
69 fi
70
71 if use sse2 && ! $(version_is_at_least "4.2" "$(gcc-version)"); then
72 eerror "SSE2 instructions require GCC 4.2 or higher. Either use"
73 eerror "GCC 4.2 or higher or USE='-sse2'"
74 die "SSE2 instructions require GCC 4.2 or higher"
75 fi
76 }
77
78 src_unpack() {
79 x-modular_src_unpack
80 cd "${S}"
81
82 epatch "${FILESDIR}"/${P}-sse.patch
83
84 eautoreconf
85 elibtoolize
86 }