public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-client/chromium: chromium-29.0.1547.41.ebuild ChangeLog
@ 2013-08-14  4:03 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; only message in thread
From: PaweA Hajdan (phajdan.jr) @ 2013-08-14  4:03 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    13/08/14 04:03:20

  Modified:             chromium-29.0.1547.41.ebuild ChangeLog
  Log:
  Switch back to make build (ninja build has issues like bug #471272). Also do not use system mesa, bug #475444 .
  
  (Portage version: 2.1.12.2/cvs/Linux i686, signed Manifest commit with key 30427902)

Revision  Changes    Path
1.3                  www-client/chromium/chromium-29.0.1547.41.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/chromium-29.0.1547.41.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/chromium-29.0.1547.41.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/chromium-29.0.1547.41.ebuild?r1=1.2&r2=1.3

Index: chromium-29.0.1547.41.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/chromium/chromium-29.0.1547.41.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- chromium-29.0.1547.41.ebuild	11 Aug 2013 23:02:29 -0000	1.2
+++ chromium-29.0.1547.41.ebuild	14 Aug 2013 04:03:20 -0000	1.3
@@ -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/www-client/chromium/chromium-29.0.1547.41.ebuild,v 1.2 2013/08/11 23:02:29 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/chromium-29.0.1547.41.ebuild,v 1.3 2013/08/14 04:03:20 phajdan.jr Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python{2_6,2_7} )
@@ -60,7 +60,6 @@
 	media-libs/libpng:0=
 	media-libs/libvpx:=
 	>=media-libs/libwebp-0.2.0_rc1:=
-	!arm? ( !x86? ( >=media-libs/mesa-9.1:=[gles2] ) )
 	media-libs/opus:=
 	media-libs/speex:=
 	pulseaudio? ( media-sound/pulseaudio:= )
@@ -91,10 +90,10 @@
 	dev-python/ply
 	dev-python/simplejson
 	>=dev-util/gperf-3.0.3
-	dev-util/ninja
 	sys-apps/hwids
 	>=sys-devel/bison-2.4.3
 	sys-devel/flex
+	>=sys-devel/make-3.81-r2
 	virtual/pkgconfig
 	test? ( dev-python/pyftpdlib )"
 RDEPEND+="
@@ -129,11 +128,11 @@
 
 src_prepare() {
 	if ! use arm; then
-		mkdir -p out/Release/gen/sdk/toolchain || die
+		mkdir -p out/Release/obj/gen/sdk/toolchain || die
 		# Do not preserve SELinux context, bug #460892 .
 		cp -a --no-preserve=context /usr/$(get_libdir)/nacl-toolchain-newlib \
-			out/Release/gen/sdk/toolchain/linux_x86_newlib || die
-		touch out/Release/gen/sdk/toolchain/linux_x86_newlib/stamp.untar || die
+			out/Release/obj/gen/sdk/toolchain/linux_x86_newlib || die
+		touch out/Release/obj/gen/sdk/toolchain/linux_x86_newlib/stamp.untar || die
 	fi
 
 	epatch "${FILESDIR}/${PN}-gpsd-r0.patch"
@@ -250,12 +249,6 @@
 		-Duse_system_zlib=1
 		$(gyp_use system-ffmpeg use_system_ffmpeg)"
 
-	# TODO: Use system mesa on x86, bug #457130 .
-	if ! use x86 && ! use arm; then
-		myconf+="
-			-Duse_system_mesa=1"
-	fi
-
 	# TODO: patch gyp so that this arm conditional is not needed.
 	if ! use arm; then
 		myconf+="
@@ -367,7 +360,7 @@
 	export LD_host=${CXX_host}
 
 	build/linux/unbundle/replace_gyp_files.py ${myconf} || die
-	egyp_chromium ${myconf} || die
+	egyp_chromium -f make ${myconf} || die
 }
 
 src_compile() {
@@ -378,14 +371,13 @@
 		test_targets+=" ${x}_unittests"
 	done
 
-	local ninja_targets="chrome chrome_sandbox chromedriver"
+	local make_targets="chrome chrome_sandbox chromedriver"
 	if use test; then
-		ninja_targets+=" $test_targets"
+		make_targets+=" $test_targets"
 	fi
 
-	# Even though ninja autodetects number of CPUs, we respect
-	# user's options, for debugging with -j 1 or any other reason.
-	ninja -C out/Release -v -j $(makeopts_jobs) ${ninja_targets} || die
+	# See bug #410883 for more info about the .host mess.
+	emake ${make_targets} BUILDTYPE=Release V=1 || die
 
 	pax-mark m out/Release/chrome
 	if use test; then



1.930                www-client/chromium/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/ChangeLog?rev=1.930&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/ChangeLog?rev=1.930&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-client/chromium/ChangeLog?r1=1.929&r2=1.930

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v
retrieving revision 1.929
retrieving revision 1.930
diff -u -r1.929 -r1.930
--- ChangeLog	13 Aug 2013 16:17:25 -0000	1.929
+++ ChangeLog	14 Aug 2013 04:03:20 -0000	1.930
@@ -1,6 +1,11 @@
 # ChangeLog for www-client/chromium
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v 1.929 2013/08/13 16:17:25 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/ChangeLog,v 1.930 2013/08/14 04:03:20 phajdan.jr Exp $
+
+  14 Aug 2013; Pawel Hajdan jr <phajdan.jr@gentoo.org>
+  chromium-29.0.1547.41.ebuild:
+  Switch back to make build (ninja build has issues like bug #471272). Also do
+  not use system mesa, bug #475444 .
 
 *chromium-30.0.1588.0 (13 Aug 2013)
 





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-08-14  4:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-14  4:03 [gentoo-commits] gentoo-x86 commit in www-client/chromium: chromium-29.0.1547.41.ebuild ChangeLog PaweA Hajdan (phajdan.jr)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox