From owner-svn-ports-all@FreeBSD.ORG Sat Sep 13 10:18:42 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9946E749; Sat, 13 Sep 2014 10:18:42 +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 83BB67E9; Sat, 13 Sep 2014 10:18:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s8DAIgcU030176; Sat, 13 Sep 2014 10:18:42 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s8DAIf6f030173; Sat, 13 Sep 2014 10:18:41 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201409131018.s8DAIf6f030173@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Sat, 13 Sep 2014 10:18:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368080 - in head: mail/thunderbird-i18n www/firefox-esr-i18n www/firefox-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-1 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: Sat, 13 Sep 2014 10:18:42 -0000 Author: mandree Date: Sat Sep 13 10:18:41 2014 New Revision: 368080 URL: http://svnweb.freebsd.org/changeset/ports/368080 QAT: https://qat.redports.org/buildarchive/r368080/ Log: Replace BUILD_DEPENDS by USES=gecko:...,build. Tested on redports.org, and we have a RUN_DEPENDS on the respective GECKO application anyways. Still required to fix upgrade trouble if the gecko application needs a rebuild from source (ports) if a requisite .so file has gone away, for instance, after lang/gcc version upgrades. a RUN_DEPENDS anyhow. Modified: head/mail/thunderbird-i18n/Makefile head/www/firefox-esr-i18n/Makefile head/www/firefox-i18n/Makefile Modified: head/mail/thunderbird-i18n/Makefile ============================================================================== --- head/mail/thunderbird-i18n/Makefile Sat Sep 13 10:08:59 2014 (r368079) +++ head/mail/thunderbird-i18n/Makefile Sat Sep 13 10:18:41 2014 (r368080) @@ -13,7 +13,7 @@ DIST_SUBDIR= xpi/${DISTNAME} MAINTAINER= gecko@FreeBSD.org COMMENT= Localized interface for Thunderbird -USES= gecko:thunderbird zip +USES= gecko:thunderbird,build zip USE_XPI= thunderbird NO_BUILD= yes @@ -31,9 +31,6 @@ PLISTF?= ${WRKDIR}/plist_files .include "${.CURDIR}/Makefile.option" .include -# make sure that thunderbird always gets upgraded before this port -BUILD_DEPENDS= thunderbird>=0:${PORTSDIR}/mail/thunderbird - .ifndef WITHOUT_SWITCHER RUN_DEPENDS+= xpi-quick-locale-switcher>=0:${PORTSDIR}/www/xpi-quick-locale-switcher .endif Modified: head/www/firefox-esr-i18n/Makefile ============================================================================== --- head/www/firefox-esr-i18n/Makefile Sat Sep 13 10:08:59 2014 (r368079) +++ head/www/firefox-esr-i18n/Makefile Sat Sep 13 10:18:41 2014 (r368080) @@ -16,7 +16,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:${PORTSDIR}/archivers/zip -USES= zip:infozip gecko:firefox +USES= zip:infozip gecko:firefox,build USE_XPI= firefox NO_ARCH= yes @@ -33,9 +33,6 @@ PLISTF?= ${WRKDIR}/plist_files .include "${.CURDIR}/Makefile.option" .include -# make sure that firefox always gets upgraded before this port -BUILD_DEPENDS+= firefox-esr>=0:${PORTSDIR}/www/firefox-esr - .ifndef WITHOUT_SWITCHER RUN_DEPENDS+= xpi-quick-locale-switcher>=0:${PORTSDIR}/www/xpi-quick-locale-switcher .endif Modified: head/www/firefox-i18n/Makefile ============================================================================== --- head/www/firefox-i18n/Makefile Sat Sep 13 10:08:59 2014 (r368079) +++ head/www/firefox-i18n/Makefile Sat Sep 13 10:18:41 2014 (r368080) @@ -15,7 +15,7 @@ COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:${PORTSDIR}/archivers/zip -USES= zip:infozip gecko:firefox,32 +USES= zip:infozip gecko:firefox,32,build USE_XPI= firefox linux-firefox NO_ARCH= yes @@ -32,9 +32,6 @@ PLISTF?= ${WRKDIR}/plist_files .include "${.CURDIR}/Makefile.option" .include -# make sure that firefox always gets upgraded before this port -BUILD_DEPENDS+= firefox>=0:${PORTSDIR}/www/firefox - .ifndef WITHOUT_SWITCHER RUN_DEPENDS+= xpi-quick-locale-switcher>=0:${PORTSDIR}/www/xpi-quick-locale-switcher .endif