From owner-freebsd-gecko@FreeBSD.ORG Sat Aug 30 19:27:27 2014 Return-Path: Delivered-To: freebsd-gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6EE49A93 for ; Sat, 30 Aug 2014 19:27:27 +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 12FB91F02 for ; Sat, 30 Aug 2014 19:27:26 +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 s7UJRNeA015492 for ; Sat, 30 Aug 2014 19:27:23 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Received: (from www@localhost) by trillian.chruetertee.ch (8.14.4/8.14.3/Submit) id s7UJRIHg013654 for freebsd-gecko@freebsd.org; Sat, 30 Aug 2014 19:27:18 GMT (envelope-from svn-freebsd-gecko@chruetertee.ch) Date: Sat, 30 Aug 2014 19:27:18 GMT Message-Id: <201408301927.s7UJRIHg013654@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] r1680 - in trunk: Mk mail/thunderbird www/firefox www/firefox-esr www/firefox-nightly www/libxul www/seamonkey 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, 30 Aug 2014 19:27:27 -0000 Author: jbeich Date: Sat Aug 30 19:27:17 2014 New Revision: 1680 Log: convert to USES=python Modified: trunk/Mk/bsd.gecko.mk trunk/mail/thunderbird/Makefile trunk/www/firefox-esr/Makefile trunk/www/firefox-nightly/Makefile trunk/www/firefox/Makefile trunk/www/libxul/Makefile trunk/www/seamonkey/Makefile Modified: trunk/Mk/bsd.gecko.mk ============================================================================== --- trunk/Mk/bsd.gecko.mk Sat Aug 30 09:25:15 2014 (r1679) +++ trunk/Mk/bsd.gecko.mk Sat Aug 30 19:27:17 2014 (r1680) @@ -85,7 +85,8 @@ MOZILLA_BIN?= ${PORTNAME}-bin MOZILLA_EXEC_NAME?=${MOZILLA} MOZ_RPATH?= ${MOZILLA} -USES+= cpe compiler:c++11-lib gmake iconv perl5 pkgconfig desktop-file-utils +USES+= cpe compiler:c++11-lib gmake iconv perl5 pkgconfig \ + python:2,build desktop-file-utils CPE_VENDOR?=mozilla USE_PERL5= build USE_XORG= xext xrender xt Modified: trunk/mail/thunderbird/Makefile ============================================================================== --- trunk/mail/thunderbird/Makefile Sat Aug 30 09:25:15 2014 (r1679) +++ trunk/mail/thunderbird/Makefile Sat Aug 30 19:27:17 2014 (r1680) @@ -34,7 +34,6 @@ SSP_UNSAFE= yes USE_AUTOTOOLS= autoconf213:env -USE_PYTHON_BUILD=2 OBJDIR_BUILD= # in-tree build broken after bug 789837 USE_GECKO= gecko USE_MOZILLA= -cairo Modified: trunk/www/firefox-esr/Makefile ============================================================================== --- trunk/www/firefox-esr/Makefile Sat Aug 30 09:25:15 2014 (r1679) +++ trunk/www/firefox-esr/Makefile Sat Aug 30 19:27:17 2014 (r1680) @@ -30,7 +30,6 @@ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l USE_AUTOTOOLS= autoconf213:env -USE_PYTHON_BUILD=2 OBJDIR_BUILD= # in-tree build broken after bug 789837 USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr Modified: trunk/www/firefox-nightly/Makefile ============================================================================== --- trunk/www/firefox-nightly/Makefile Sat Aug 30 09:25:15 2014 (r1679) +++ trunk/www/firefox-nightly/Makefile Sat Aug 30 19:27:17 2014 (r1680) @@ -34,7 +34,6 @@ FETCH_ENV= SSL_CA_CERT_FILE=${LOCALBASE}/share/certs/ca-root-nss.crt USE_AUTOTOOLS= autoconf213:env -USE_PYTHON_BUILD=2 OBJDIR_BUILD= # in-tree build broken after bug 789837 USE_GECKO= gecko CPE_VERSION= ${PORTVERSION:R} Modified: trunk/www/firefox/Makefile ============================================================================== --- trunk/www/firefox/Makefile Sat Aug 30 09:25:15 2014 (r1679) +++ trunk/www/firefox/Makefile Sat Aug 30 19:27:17 2014 (r1680) @@ -30,7 +30,6 @@ LIB_DEPENDS= libv4l2.so:${PORTSDIR}/multimedia/libv4l USE_AUTOTOOLS= autoconf213:env -USE_PYTHON_BUILD=2 OBJDIR_BUILD= # in-tree build broken after bug 789837 USE_GECKO= gecko CONFLICTS= firefox-esr-31.* firefox-esr-24.* firefox-esr-17.* Modified: trunk/www/libxul/Makefile ============================================================================== --- trunk/www/libxul/Makefile Sat Aug 30 09:25:15 2014 (r1679) +++ trunk/www/libxul/Makefile Sat Aug 30 19:27:17 2014 (r1680) @@ -31,7 +31,6 @@ CONFLICTS= libxul-1.9.* USE_AUTOTOOLS= autoconf213:env -USE_PYTHON_BUILD=2 WANT_GNOME= yes USE_QT5= # empty QT_NONSTANDARD= yes Modified: trunk/www/seamonkey/Makefile ============================================================================== --- trunk/www/seamonkey/Makefile Sat Aug 30 09:25:15 2014 (r1679) +++ trunk/www/seamonkey/Makefile Sat Aug 30 19:27:17 2014 (r1680) @@ -34,7 +34,6 @@ SSP_UNSAFE= yes USE_AUTOTOOLS= autoconf213:env -USE_PYTHON_BUILD=2 OBJDIR_BUILD= # in-tree build broken after bug 789837 USE_GECKO= gecko WANT_GNOME= yes