diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2009-09-23 22:26:10 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2009-09-23 22:26:10 +0000 |
commit | ea1a151e0ed7cfc5f4099bf331894401ad69fc26 (patch) | |
tree | 97e653edf4fa6df19b9342ff47d742bbf0199775 /www-client/chromium | |
parent | Re-adding virtual/libc PROVIDE. It is still needed. (diff) | |
download | gentoo-2-ea1a151e0ed7cfc5f4099bf331894401ad69fc26.tar.gz gentoo-2-ea1a151e0ed7cfc5f4099bf331894401ad69fc26.tar.bz2 gentoo-2-ea1a151e0ed7cfc5f4099bf331894401ad69fc26.zip |
Use bundled libevent until 1.4.13, per upstream advice
(Portage version: 2.2_rc41/cvs/Linux x86_64)
Diffstat (limited to 'www-client/chromium')
-rw-r--r-- | www-client/chromium/ChangeLog | 6 | ||||
-rw-r--r-- | www-client/chromium/chromium-4.0.212.0_p26805.ebuild | 11 |
2 files changed, 11 insertions, 6 deletions
diff --git a/www-client/chromium/ChangeLog b/www-client/chromium/ChangeLog index a6359537261b..5ce7d0938ae8 100644 --- a/www-client/chromium/ChangeLog +++ b/www-client/chromium/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for www-client/chromium # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v 1.7 2009/09/23 12:46:03 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v 1.8 2009/09/23 22:26:10 voyageur Exp $ + + 23 Sep 2009; Bernard Cafarelli <voyageur@gentoo.org> + chromium-4.0.212.0_p26805.ebuild: + Use bundled libevent until 1.4.13, per upstream advice 23 Sep 2009; Bernard Cafarelli <voyageur@gentoo.org> chromium-4.0.212.0_p26805.ebuild: diff --git a/www-client/chromium/chromium-4.0.212.0_p26805.ebuild b/www-client/chromium/chromium-4.0.212.0_p26805.ebuild index 40219ac3e9e7..7088b00b1353 100644 --- a/www-client/chromium/chromium-4.0.212.0_p26805.ebuild +++ b/www-client/chromium/chromium-4.0.212.0_p26805.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/chromium-4.0.212.0_p26805.ebuild,v 1.2 2009/09/23 12:46:03 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/chromium-4.0.212.0_p26805.ebuild,v 1.3 2009/09/23 22:26:10 voyageur Exp $ EAPI="2" inherit eutils multilib toolchain-funcs @@ -16,7 +16,6 @@ KEYWORDS="~amd64 ~x86" IUSE="" RDEPEND="app-arch/bzip2 - >=dev-libs/libevent-1.4.7 dev-libs/libxml2 dev-libs/libxslt >=dev-libs/nss-3.12.2 @@ -28,6 +27,7 @@ RDEPEND="app-arch/bzip2 >=media-video/ffmpeg-0.5_p19787 sys-libs/zlib >=x11-libs/gtk+-2.14.7" +# >=dev-libs/libevent-1.4.13 # dev-db/sqlite:3 DEPEND="${RDEPEND} >=dev-util/gperf-3.0.3 @@ -46,7 +46,7 @@ src_prepare() { sed -i "s/'-Werror'/''/" build/common.gypi || die "Werror sed failed" # Prevent automatic -march=pentium4 -msse2 enabling on x86, http://crbug.com/9007 epatch "${FILESDIR}"/${PN}-drop_sse2.patch - # Use system libevent, http://crbug.com/22208 + # Add configuration flag to use system libevent epatch "${FILESDIR}"/${PN}-use_system_libevent.patch # Display correct svn revision in about box @@ -67,9 +67,10 @@ EOF export HOME="${S}" # Configuration options (system libraries) - local myconf="-Duse_system_bzip2=1 -Duse_system_zlib=1 -Duse_system_libevent=1 -Duse_system_libjpeg=1 -Duse_system_libpng=1 -Duse_system_libxml=1 -Duse_system_libxslt=1 -Duse_system_ffmpeg=1 -Dlinux_use_tcmalloc=1" + local myconf="-Duse_system_bzip2=1 -Duse_system_zlib=1 -Duse_system_libjpeg=1 -Duse_system_libpng=1 -Duse_system_libxml=1 -Duse_system_libxslt=1 -Duse_system_ffmpeg=1 -Dlinux_use_tcmalloc=1" + # -Duse_system_libevent=1: http://crbug.com/22140 # -Duse_system_sqlite=1 : http://crbug.com/22208 - # Others still bundled: icu (not possible?), hunspell + # Others still bundled: icu (not possible?), hunspell (changes required for sandbox support) # Sandbox paths myconf="${myconf} -Dlinux_sandbox_path=${CHROMIUM_HOME}/chrome_sandbox -Dlinux_sandbox_chrome_path=${CHROMIUM_HOME}/chrome" |