diff options
author | jbeich <jbeich@FreeBSD.org> | 2015-08-10 00:30:43 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2015-08-10 00:30:43 +0800 |
commit | e378c86e4dbb9cc9af1abfffa3d938bf671f6ce3 (patch) | |
tree | 6f5c1fdabd9e133349117d559ffcd98bd049802d /mail | |
parent | 0c68736bfae752bef76b8bad4961331960c12ec4 (diff) | |
download | freebsd-ports-gnome-e378c86e4dbb9cc9af1abfffa3d938bf671f6ce3.tar.gz freebsd-ports-gnome-e378c86e4dbb9cc9af1abfffa3d938bf671f6ce3.tar.zst freebsd-ports-gnome-e378c86e4dbb9cc9af1abfffa3d938bf671f6ce3.zip |
www/firefox: make testing bundled cairo easier via option
BUNDLED_CAIRO does nothing with GTK3 until Firefox 41.0
https://bugzilla.mozilla.org/show_bug.cgi?id=1159273
PR: 202174
MFH: 2015Q3
Diffstat (limited to 'mail')
-rw-r--r-- | mail/thunderbird/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 47bdd1b38e9b..7f1a132b1bdd 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -15,7 +15,6 @@ COMMENT= Mozilla Thunderbird is standalone mail and news that stands above BUILD_DEPENDS= nspr>=4.10.8:${PORTSDIR}/devel/nspr \ nss>=3.19.2:${PORTSDIR}/security/nss \ libevent2>=2.0.21_2:${PORTSDIR}/devel/libevent2 \ - cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo \ soundtouch>=1.8.0:${PORTSDIR}/audio/soundtouch \ harfbuzz>=0.9.34:${PORTSDIR}/print/harfbuzz \ graphite2>=1.2.4:${PORTSDIR}/graphics/graphite2 \ @@ -81,6 +80,10 @@ MOZ_OPTIONS:= ${MOZ_OPTIONS:S/${CONFIGURE_TARGET}//} RUN_DEPENDS+= alsa-lib>=1.0.27.2_1:${PORTSDIR}/audio/alsa-lib .endif +.if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} +BUILD_DEPENDS+= cairo>=1.12.16_1,2:${PORTSDIR}/graphics/cairo +.endif + .if ${PORT_OPTIONS:MGSTREAMER} RUN_DEPENDS+= gstreamer1-libav>=1.2.4_1:${PORTSDIR}/multimedia/gstreamer1-libav .endif |