From owner-freebsd-gecko@FreeBSD.ORG Sat Oct 18 14:19:11 2014 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 29D32404 for ; Sat, 18 Oct 2014 14:19:11 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian.chruetertee.ch [217.150.244.247]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B0BB5277 for ; Sat, 18 Oct 2014 14:19:10 +0000 (UTC) Received: from trillian.chruetertee.ch (trillian [217.150.244.247]) by trillian.chruetertee.ch (8.14.4/8.14.3) with ESMTP id s9IEJ78T031568 for ; Sat, 18 Oct 2014 14:19:07 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.4/8.14.3/Submit) id s9IEJ2TO031224 for freebsd-gecko@freebsd.org; Sat, 18 Oct 2014 14:19:02 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Sat, 18 Oct 2014 14:19:02 GMT Message-Id: <201410181419.s9IEJ2TO031224@trillian.chruetertee.ch> X-Authentication-Warning: trillian.chruetertee.ch: www set sender to svn-freebsd-gecko@chruetertee.ch using -f From: svn-freebsd-gecko@chruetertee.ch To: freebsd-gecko@freebsd.org Subject: [SVN-Commit] r1736 - branches/firefox33/www/libxul trunk/www/libxul MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reply-To: freebsd-gecko@freebsd.org X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Oct 2014 14:19:11 -0000 Author: jbeich Date: Sat Oct 18 14:19:01 2014 New Revision: 1736 Log: conditionalize Modified: branches/firefox33/www/libxul/Makefile trunk/www/libxul/Makefile Modified: branches/firefox33/www/libxul/Makefile ============================================================================== --- branches/firefox33/www/libxul/Makefile Sat Oct 18 12:27:40 2014 (r1735) +++ branches/firefox33/www/libxul/Makefile Sat Oct 18 14:19:01 2014 (r1736) @@ -55,8 +55,6 @@ MOZ_PKGCONFIG_FILES= libxul-embedding libxul mozilla-js \ mozilla-plugin -BROKEN= stage-package fails with ValueError: no path specified - .include "${.CURDIR}/../../www/firefox/Makefile.options" .include @@ -89,6 +87,10 @@ RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif +.if ${PORT_OPTIONS:MTEST} +BROKEN= stage-package fails with ValueError: no path specified +.endif + post-patch: @${REINPLACE_CMD} -e '/MOZPNG/s/=[0-9]*/=10511/' \ ${WRKSRC}/configure.in Modified: trunk/www/libxul/Makefile ============================================================================== --- trunk/www/libxul/Makefile Sat Oct 18 12:27:40 2014 (r1735) +++ trunk/www/libxul/Makefile Sat Oct 18 14:19:01 2014 (r1736) @@ -55,8 +55,6 @@ MOZ_PKGCONFIG_FILES= libxul-embedding libxul mozilla-js \ mozilla-plugin -BROKEN= stage-package fails with ValueError: no path specified - .include "${.CURDIR}/../../www/firefox/Makefile.options" .include @@ -89,6 +87,10 @@ RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif +.if ${PORT_OPTIONS:MTEST} +BROKEN= stage-package fails with ValueError: no path specified +.endif + post-patch: @${REINPLACE_CMD} -e '/MOZPNG/s/=[0-9]*/=10511/' \ ${WRKSRC}/configure.in