diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-28 21:37:53 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-10-28 21:37:53 +0000 |
commit | b12831f94a1b89940b8ce577b7a9c2cd20a38782 (patch) | |
tree | cea5de5a41010fbf6fc6186041233a9897d82deb /www/firefox35 | |
parent | f9ceeb4839942474e3d633148cfacdda6edce32d (diff) | |
download | ports-b12831f94a1b89940b8ce577b7a9c2cd20a38782.tar.gz ports-b12831f94a1b89940b8ce577b7a9c2cd20a38782.zip |
Notes
Diffstat (limited to 'www/firefox35')
-rw-r--r-- | www/firefox35/Makefile | 10 | ||||
-rw-r--r-- | www/firefox35/distinfo | 4 | ||||
-rw-r--r-- | www/firefox35/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in | 17 | ||||
-rw-r--r-- | www/firefox35/pkg-deinstall.in | 1 |
4 files changed, 8 insertions, 24 deletions
diff --git a/www/firefox35/Makefile b/www/firefox35/Makefile index a62cffed60b1..0dc8d6103e9d 100644 --- a/www/firefox35/Makefile +++ b/www/firefox35/Makefile @@ -6,12 +6,12 @@ # PORTNAME= firefox -PORTVERSION= 1.0.1.p -PORTREVISION= 4 +PORTVERSION= 1.0.r1 +PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${REALVERSION} -DISTNAME= ${PORTNAME}-1.0PR-source +MASTER_SITE_SUBDIR= ${PORTNAME}/releases/1.0rc1 +DISTNAME= ${PORTNAME}-1.0rc1-source MAINTAINER= gnome@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla @@ -25,7 +25,7 @@ RUN_DEPENDS= Xvfb:${X_VFBSERVER_PORT} ALL_TARGET= default CONFIGURE_ENV= LOCALBASE=${LOCALBASE} FAKEDIR= ${WRKDIR}/fake -REALVERSION= 0.10.1 +REALVERSION= 1.0 HAS_CONFIGURE= yes ESD_LIB= libesd.so.2 LOCAL_PREFIX= ${PREFIX}/lib/${PORTNAME} diff --git a/www/firefox35/distinfo b/www/firefox35/distinfo index 599a26ee75b5..43f947afd9f8 100644 --- a/www/firefox35/distinfo +++ b/www/firefox35/distinfo @@ -1,2 +1,2 @@ -MD5 (firefox-1.0PR-source.tar.bz2) = ff9eae3b90b8573bf44293ea44bf3c50 -SIZE (firefox-1.0PR-source.tar.bz2) = 32380173 +MD5 (firefox-1.0rc1-source.tar.bz2) = 7a0411859fc5d5f647e211c24beaf94b +SIZE (firefox-1.0rc1-source.tar.bz2) = 32706624 diff --git a/www/firefox35/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in b/www/firefox35/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in deleted file mode 100644 index feffd2c6344f..000000000000 --- a/www/firefox35/files/patch-toolkit_mozapps_extensions_src_nsExtensionManager.js.in +++ /dev/null @@ -1,17 +0,0 @@ ---- toolkit/mozapps/extensions/src/nsExtensionManager.js.in.orig Tue Jul 27 15:35:12 2004 -+++ toolkit/mozapps/extensions/src/nsExtensionManager.js.in Tue Jul 27 15:36:02 2004 -@@ -1568,9 +1568,14 @@ - - _checkForGlobalInstalls: function (aPath, aItemType) - { -+ var fPrefix = "file://"; - // First see if the path supplied is a file path - var file = Components.classes["@mozilla.org/file/local;1"] - .createInstance(Components.interfaces.nsILocalFile); -+ if (aPath.substr(0, fPrefix.length) == fPrefix) { -+ // Strip out the file:// prefix if it exists -+ aPath = aPath.substr(fPrefix.length, aPath.length); -+ } - try { - file.initWithPath(aPath); - } diff --git a/www/firefox35/pkg-deinstall.in b/www/firefox35/pkg-deinstall.in index d806dcc711dc..b9b0ca220fbc 100644 --- a/www/firefox35/pkg-deinstall.in +++ b/www/firefox35/pkg-deinstall.in @@ -18,6 +18,7 @@ rm -rf ${MOZDIR}/chrome/overlayinfo rm -f ${MOZDIR}/chrome/*.rdf rm -f ${MOZDIR}/component.reg rm -f ${MOZDIR}/components.ini +rm -f ${MOZDIR}/defaults.ini rm -f ${MOZDIR}/components/*.dat rm -rf ${MOZDIR}/extensions |