diff options
author | beat <beat@FreeBSD.org> | 2012-04-18 22:50:10 +0800 |
---|---|---|
committer | beat <beat@FreeBSD.org> | 2012-04-18 22:50:10 +0800 |
commit | ebb637050e459ebbcfb17aede02a4e4d9fa4fb2b (patch) | |
tree | af8478decd540c499c9f4e222a347466ba08957f /Mk/bsd.gecko.mk | |
parent | 5f29b0243188f98a4fde0b392d1acb36ac8b1c8d (diff) | |
download | freebsd-ports-gnome-ebb637050e459ebbcfb17aede02a4e4d9fa4fb2b.tar.gz freebsd-ports-gnome-ebb637050e459ebbcfb17aede02a4e4d9fa4fb2b.tar.zst freebsd-ports-gnome-ebb637050e459ebbcfb17aede02a4e4d9fa4fb2b.zip |
- Update Firefox to 11.0
Diffstat (limited to 'Mk/bsd.gecko.mk')
-rw-r--r-- | Mk/bsd.gecko.mk | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index 18b1962152be..5eed29f9a01e 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -181,7 +181,7 @@ Gecko_Pre_Include= bsd.gecko.mk # is given by the maintainer via the port or by the # user via defined variable try to find the highest # stable installed version. -# Available values: yes 10+ 36+ 10 36 +# Available values: yes 10+ 11+ 36+ 10 11+ 36 # NOTE: # default value 10 is used in case of USE_FIREFOX=yes # @@ -223,11 +223,12 @@ _FIREFOX_BUILD_DEPENDS= yes .endif _FIREFOX_DEFAULT_VERSION= 10 -_FIREFOX_VERSIONS= 10 36 -_FIREFOX_RANGE_VERSIONS= 10+ 36+ +_FIREFOX_VERSIONS= 10 11 36 +_FIREFOX_RANGE_VERSIONS= 10+ 11+ 36+ # For specifying [36, ..]+ -_FIREFOX_36P= 36 ${_FIREFOX_10P} +_FIREFOX_36P= 36 ${_FIREFOX_11P} +_FIREFOX_11P= 11 ${_FIREFOX_10P} _FIREFOX_10P= 10 # Set the default Firefox version and check if USE_FIREFOX=yes was given @@ -288,7 +289,8 @@ IGNORE= cannot install: unknown Firefox version: firefox-${USE_FIREFOX:C/([0-9 .endif # Dependence lines for different Firefox versions -10_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox +10_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox-esr +11_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:${PORTSDIR}/www/firefox 36_DEPENDS= ${LOCALBASE}/lib/firefox3/firefox:${PORTSDIR}/www/firefox36 # Add dependencies @@ -828,10 +830,14 @@ gecko-post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \ s|%%LOCALBASE%%|${LOCALBASE}|g' \ ${MOZSRC}/build/unix/run-mozilla.sh - @${REINPLACE_CMD} -E -e 's|libesd\.so\.[0-9]+|libesd.so|g' \ - ${MOZSRC}/widget/src/gtk2/nsSound.cpp - @${REINPLACE_CMD} -E -e 's|libcups\.so\.[0-9]+|libcups.so|g' \ - ${MOZSRC}/*/*/*/nsDeviceContextSpecG.cpp + @if [ -f ${MOZSRC}/widget/src/gtk2/nsSound.cpp ] ; then \ + ${REINPLACE_CMD} -E -e 's|libesd\.so\.[0-9]+|libesd.so|g' \ + ${MOZSRC}/widget/src/gtk2/nsSound.cpp ; \ + fi + @if ! [ -f ${MOZSRC}/widget/gtk2/nsDeviceContextSpecG.cpp ] ; then \ + ${REINPLACE_CMD} -E -e 's|libcups\.so\.[0-9]+|libcups.so|g' \ + ${MOZSRC}/*/*/*/nsDeviceContextSpecG.cpp ; \ + fi @${REINPLACE_CMD} -e 's|/usr/local/netscape|${LOCALBASE}|g ; \ s|/usr/local/lib/netscape|${LOCALBASE}/lib|g' \ ${MOZSRC}/xpcom/*/SpecialSystemDirectory.cpp |