summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gentoo.org>2013-01-31 05:50:09 +0000
committerMatt Turner <mattst88@gentoo.org>2013-01-31 05:50:09 +0000
commitc51f1998ed49f29bc24e2ef63f806ec6c84a0f5c (patch)
tree191fad1da98e76b7588662db4775dda17886eea7 /x11-libs
parentAdd ":=" dependencies and gnome2_disable_deprecation_warning, as requested by... (diff)
downloadgentoo-2-c51f1998ed49f29bc24e2ef63f806ec6c84a0f5c.tar.gz
gentoo-2-c51f1998ed49f29bc24e2ef63f806ec6c84a0f5c.tar.bz2
gentoo-2-c51f1998ed49f29bc24e2ef63f806ec6c84a0f5c.zip
Version bump to 0.29.2.
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 974CA72A)
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/pixman/ChangeLog7
-rw-r--r--x11-libs/pixman/pixman-0.29.2.ebuild24
2 files changed, 30 insertions, 1 deletions
diff --git a/x11-libs/pixman/ChangeLog b/x11-libs/pixman/ChangeLog
index da33d5fce77d..55597efd817c 100644
--- a/x11-libs/pixman/ChangeLog
+++ b/x11-libs/pixman/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-libs/pixman
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v 1.152 2013/01/04 18:02:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/ChangeLog,v 1.153 2013/01/31 05:50:09 mattst88 Exp $
+
+*pixman-0.29.2 (31 Jan 2013)
+
+ 31 Jan 2013; Matt Turner <mattst88@gentoo.org> +pixman-0.29.2.ebuild:
+ Version bump to 0.29.2.
04 Jan 2013; Jeroen Roovers <jer@gentoo.org> pixman-0.28.0.ebuild:
Stable for HPPA (bug #440872).
diff --git a/x11-libs/pixman/pixman-0.29.2.ebuild b/x11-libs/pixman/pixman-0.29.2.ebuild
new file mode 100644
index 000000000000..3ca0c324d45a
--- /dev/null
+++ b/x11-libs/pixman/pixman-0.29.2.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/pixman/pixman-0.29.2.ebuild,v 1.1 2013/01/31 05:50:09 mattst88 Exp $
+
+EAPI=4
+inherit xorg-2 toolchain-funcs versionator
+
+EGIT_REPO_URI="git://anongit.freedesktop.org/git/pixman"
+DESCRIPTION="Low-level pixel manipulation routines"
+
+KEYWORDS="~alpha ~amd64 ~arm ~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"
+IUSE="altivec iwmmxt mmx neon sse2"
+
+src_configure() {
+ XORG_CONFIGURE_OPTIONS=(
+ $(use_enable mmx)
+ $(use_enable sse2)
+ $(use_enable altivec vmx)
+ $(use_enable neon arm-neon)
+ $(use_enable iwmmxt arm-iwmmxt)
+ --disable-gtk
+ )
+ xorg-2_src_configure
+}