diff options
author | mandree <mandree@FreeBSD.org> | 2014-09-13 01:06:09 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2014-09-13 01:06:09 +0800 |
commit | 49f0cce18c50055f8158745464951d5a0c8ba7ac (patch) | |
tree | 57f70c6b946da60d7d8e4f3b17441ab3285e2f98 /www | |
parent | e88b2807b9002fe0820a23b8625df7ec68732268 (diff) | |
download | freebsd-ports-gnome-49f0cce18c50055f8158745464951d5a0c8ba7ac.tar.gz freebsd-ports-gnome-49f0cce18c50055f8158745464951d5a0c8ba7ac.tar.zst freebsd-ports-gnome-49f0cce18c50055f8158745464951d5a0c8ba7ac.zip |
Add BUILD_DEPENDS to make sure that the referenced thunderbird or
firefox port is rebuilt first, so that the -i18n ports can actually
build if the firefox/thunderbird port has become unusable through,
for instance, lang/gcc version upgrades that "lose" the libstdc++
from the recorded RPATH.
Diffstat (limited to 'www')
-rw-r--r-- | www/firefox-esr-i18n/Makefile | 3 | ||||
-rw-r--r-- | www/firefox-i18n/Makefile | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/www/firefox-esr-i18n/Makefile b/www/firefox-esr-i18n/Makefile index 7af6c7db96ec..133d521888e2 100644 --- a/www/firefox-esr-i18n/Makefile +++ b/www/firefox-esr-i18n/Makefile @@ -33,6 +33,9 @@ PLISTF?= ${WRKDIR}/plist_files .include "${.CURDIR}/Makefile.option" .include <bsd.port.pre.mk> +# 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 diff --git a/www/firefox-i18n/Makefile b/www/firefox-i18n/Makefile index e12041b4d79b..001c6ab057bb 100644 --- a/www/firefox-i18n/Makefile +++ b/www/firefox-i18n/Makefile @@ -32,6 +32,9 @@ PLISTF?= ${WRKDIR}/plist_files .include "${.CURDIR}/Makefile.option" .include <bsd.port.pre.mk> +# 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 |