From owner-svn-ports-all@FreeBSD.ORG Fri May 30 08:50:21 2014 Return-Path: Delivered-To: svn-ports-all@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 10A0FCD1; Fri, 30 May 2014 08:50:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D84542EE4; Fri, 30 May 2014 08:50:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4U8oKQT037678; Fri, 30 May 2014 08:50:20 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4U8oKji037676; Fri, 30 May 2014 08:50:20 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201405300850.s4U8oKji037676@svn.freebsd.org> From: John Marino Date: Fri, 30 May 2014 08:50:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355802 - in head/www: firefox-i18n seamonkey-i18n X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2014 08:50:21 -0000 Author: marino Date: Fri May 30 08:50:20 2014 New Revision: 355802 URL: http://svnweb.freebsd.org/changeset/ports/355802 QAT: https://qat.redports.org/buildarchive/r355802/ Log: www/firefox(seamonkey)-i18n: explicitly use UNZIP_CMD The extraction of xpi requires zip (infozip to be precise). Rather than use variables EXTRACT_CMD and EXTRACT_BEFORE_ARGS, use UNZIP_CMD and the default "-qo" arguments to future-proof these ports (depending on the implemention, the original variables may default to tar arguments if they are defined at all). Covered by general infrastructure blanket. Modified: head/www/firefox-i18n/Makefile head/www/seamonkey-i18n/Makefile Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Fri May 30 08:30:12 2014 (r355801) +++ head/www/firefox-i18n/Makefile Fri May 30 08:50:20 2014 (r355802) @@ -51,7 +51,7 @@ pre-everything:: do-extract: @${MKDIR} ${WRKSRC} @for lang in ${FIREFOX_I18N_}; do \ - if ! (${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$lang.xpi -d ${WRKSRC}/langpack-$$lang@firefox.mozilla.org);\ + if ! (${UNZIP_CMD} -qo ${_DISTDIR}/$$lang.xpi -d ${WRKSRC}/langpack-$$lang@firefox.mozilla.org);\ then \ exit 1; \ fi; \ Modified: head/www/seamonkey-i18n/Makefile ============================================================================== --- head/www/seamonkey-i18n/Makefile Fri May 30 08:30:12 2014 (r355801) +++ head/www/seamonkey-i18n/Makefile Fri May 30 08:50:20 2014 (r355802) @@ -51,7 +51,7 @@ pre-everything:: do-extract: @${MKDIR} ${WRKSRC} @for lang in ${SEAMONKEY_I18N_}; do \ - if ! (${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/seamonkey-${PORTVERSION}.$$lang.langpack.xpi -d ${WRKSRC}/langpack-$$lang@seamonkey.mozilla.org);\ + if ! (${UNZIP_CMD} -qo ${_DISTDIR}/seamonkey-${PORTVERSION}.$$lang.langpack.xpi -d ${WRKSRC}/langpack-$$lang@seamonkey.mozilla.org);\ then \ exit 1; \ fi; \