public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Remi Cardona (remi)" <remi@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/pixman: ChangeLog pixman-0.14.0-r1.ebuild
Date: Tue, 24 Mar 2009 11:20:59 +0000	[thread overview]
Message-ID: <E1Lm4gl-0001th-IA@stork.gentoo.org> (raw)

remi        09/03/24 11:20:59

  Modified:             ChangeLog
  Added:                pixman-0.14.0-r1.ebuild
  Log:
  x11-libs/pixman: drop the useless sse USE flag, disable mmx/sse2 instead of dying (fixes bugs #236558 and #260287 among others)
  (Portage version: 2.2_rc26/cvs/Linux x86_64)

Revision  Changes    Path
1.31                 x11-libs/pixman/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	18 Mar 2009 14:20:33 -0000	1.30
+++ ChangeLog	24 Mar 2009 11:20:59 -0000	1.31
@@ -1,6 +1,12 @@
 # ChangeLog for x11-libs/pixman
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v 1.30 2009/03/18 14:20:33 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v 1.31 2009/03/24 11:20:59 remi Exp $
+
+*pixman-0.14.0-r1 (24 Mar 2009)
+
+  24 Mar 2009; Rémi Cardona <remi@gentoo.org> +pixman-0.14.0-r1.ebuild:
+  drop the useless sse USE flag, disable mmx/sse2 instead of dying (fixes
+  bugs #236558 and #260287 among others)
 
   18 Mar 2009; Raúl Porcel <armin76@gentoo.org> pixman-0.12.0.ebuild:
   alpha/ia64 stable wrt #260063



1.1                  x11-libs/pixman/pixman-0.14.0-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/pixman-0.14.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pixman/pixman-0.14.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: pixman-0.14.0-r1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/pixman-0.14.0-r1.ebuild,v 1.1 2009/03/24 11:20:59 remi Exp $

# Must be before x-modular eclass is inherited
#SNAPSHOT="yes"

inherit x-modular toolchain-funcs versionator

DESCRIPTION="Low-level pixel manipulation routines"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="altivec mmx sse2"

pkg_setup() {
	CONFIGURE_OPTIONS="
		$(use_enable altivec vmx)
		--disable-gtk"

	local enable_mmx="$(use mmx && echo 1 || echo 0)"
	local enable_sse2="$(use sse2 && echo 1 || echo 0)"

	# this block fixes bug #260287
	if use x86; then
		if use sse2 && ! $(version_is_at_least "4.2" "$(gcc-version)"); then
			ewarn "SSE2 instructions require GCC 4.2 or higher."
			ewarn "pixman will be built *without* SSE2 support"
			enable_sse2="0"
		fi
	fi

	# this block fixes bug #236558
	case "$enable_mmx,$enable_sse2" in
	'1,1')
		CONFIGURE_OPTIONS="${CONFIGURE_OPTIONS} --enable-mmx --enable-sse2" ;;
	'1,0')
		CONFIGURE_OPTIONS="${CONFIGURE_OPTIONS} --enable-mmx --disable-sse2" ;;
	'0,1')
		ewarn "You enabled SSE2 but have MMX disabled. This is an invalid."
		ewarn "pixman will be built *without* MMX/SSE2 support."
		CONFIGURE_OPTIONS="${CONFIGURE_OPTIONS} --disable-mmx --disable-sse2" ;;
	'0,0')
		CONFIGURE_OPTIONS="${CONFIGURE_OPTIONS} --disable-mmx --disable-sse2" ;;
	esac
}

src_unpack() {
	x-modular_src_unpack
	cd "${S}"

	epatch "${FILESDIR}"/pixman-0.12.0-sse.patch

	eautoreconf
	elibtoolize
}






             reply	other threads:[~2009-03-24 11:21 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-24 11:20 Remi Cardona (remi) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-04-03 13:51 [gentoo-commits] gentoo-x86 commit in x11-libs/pixman: ChangeLog pixman-0.14.0-r1.ebuild Brent Baude (ranger)
2009-04-03 14:30 Brent Baude (ranger)
2009-04-05 18:51 Olivier Crete (tester)
2009-04-05 21:10 Markus Meier (maekke)
2009-04-06 19:15 Friedrich Oslage (bluebird)
2009-04-15 14:26 Raul Porcel (armin76)
2009-04-16  2:42 Jeroen Roovers (jer)
2009-05-15 14:37 Raul Porcel (armin76)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1Lm4gl-0001th-IA@stork.gentoo.org \
    --to=remi@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox