diff options
author | Fabian Groffen <grobian@gentoo.org> | 2013-07-03 21:20:45 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2013-07-03 21:20:45 +0000 |
commit | e6ab3339fff386770b5761f1da4baedcedf479a3 (patch) | |
tree | 86382e0e620a6ec85efab85f14ff37cd8db3014b /media-gfx | |
parent | version bump (diff) | |
download | gentoo-2-e6ab3339fff386770b5761f1da4baedcedf479a3.tar.gz gentoo-2-e6ab3339fff386770b5761f1da4baedcedf479a3.tar.bz2 gentoo-2-e6ab3339fff386770b5761f1da4baedcedf479a3.zip |
Fix compilation on PowerPC/Darwin, bug #450512
(Portage version: 2.2.01.22097-prefix/cvs/SunOS i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/graphite2/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/graphite2/graphite2-1.2.1.ebuild | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/media-gfx/graphite2/ChangeLog b/media-gfx/graphite2/ChangeLog index 6f30c4e79f13..d825416b3ff0 100644 --- a/media-gfx/graphite2/ChangeLog +++ b/media-gfx/graphite2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/graphite2 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphite2/ChangeLog,v 1.57 2013/06/30 13:28:58 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphite2/ChangeLog,v 1.58 2013/07/03 21:20:45 grobian Exp $ + + 03 Jul 2013; Fabian Groffen <grobian@gentoo.org> graphite2-1.2.1.ebuild: + Fix compilation on PowerPC/Darwin, bug #450512 30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> graphite2-1.2.1.ebuild: Stable for arm, wrt bug #470762 diff --git a/media-gfx/graphite2/graphite2-1.2.1.ebuild b/media-gfx/graphite2/graphite2-1.2.1.ebuild index ad0490707e42..41c75685a90f 100644 --- a/media-gfx/graphite2/graphite2-1.2.1.ebuild +++ b/media-gfx/graphite2/graphite2-1.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphite2/graphite2-1.2.1.ebuild,v 1.9 2013/06/30 13:28:58 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphite2/graphite2-1.2.1.ebuild,v 1.10 2013/07/03 21:20:45 grobian Exp $ EAPI=5 @@ -65,6 +65,9 @@ src_prepare() { src_configure() { local mycmakeargs=( "-DVM_MACHINE_TYPE=direct" + # http://sourceforge.net/p/silgraphite/bugs/49/ + $([[ ${CHOST} == powerpc*-apple* ]] && \ + echo "-DGRAPHITE2_NSEGCACHE:BOOL=ON") ) cmake-utils_src_configure |