diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-02-11 22:19:29 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-02-11 22:19:29 +0800 |
commit | a8bea2a6f7561652df71f5683ace81c0128c1397 (patch) | |
tree | c3b83388d6f35255f585878b3ec04c5c01c1dd98 /www/firefox3-devel | |
parent | 7432475923278cb1a5562961644d476aa3636434 (diff) | |
download | marcuscom-ports-a8bea2a6f7561652df71f5683ace81c0128c1397.tar marcuscom-ports-a8bea2a6f7561652df71f5683ace81c0128c1397.tar.gz marcuscom-ports-a8bea2a6f7561652df71f5683ace81c0128c1397.tar.bz2 marcuscom-ports-a8bea2a6f7561652df71f5683ace81c0128c1397.tar.lz marcuscom-ports-a8bea2a6f7561652df71f5683ace81c0128c1397.tar.xz marcuscom-ports-a8bea2a6f7561652df71f5683ace81c0128c1397.tar.zst marcuscom-ports-a8bea2a6f7561652df71f5683ace81c0128c1397.zip |
Update to 3.0.a2
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8293 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/firefox3-devel')
-rw-r--r-- | www/firefox3-devel/Makefile | 8 | ||||
-rw-r--r-- | www/firefox3-devel/distinfo | 6 | ||||
-rw-r--r-- | www/firefox3-devel/files/patch-bugzilla361075 | 60 |
3 files changed, 7 insertions, 67 deletions
diff --git a/www/firefox3-devel/Makefile b/www/firefox3-devel/Makefile index 41040895e..b1dbedaa2 100644 --- a/www/firefox3-devel/Makefile +++ b/www/firefox3-devel/Makefile @@ -3,16 +3,16 @@ # Whom: Alan Eldridge <alane@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/firefox-devel/Makefile,v 1.33 2006/12/16 07:20:25 marcus Exp $ +# $MCom: ports/www/firefox-devel/Makefile,v 1.34 2006/12/22 02:06:26 mezz Exp $ PORTNAME= firefox -DISTVERSION= 3.0.a1 +DISTVERSION= 3.0.a2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= ${MASTER_SITE_MOZILLA} -MASTER_SITE_SUBDIR= ${PORTNAME}/releases/granparadiso/alpha1/source/ +MASTER_SITE_SUBDIR= ${PORTNAME}/releases/granparadiso/alpha2/source/ #MASTER_SITE_SUBDIR= ${PORTNAME}/releases/${DISTVERSION}/source -DISTNAME= granparadiso-alpha1-source +DISTNAME= granparadiso-alpha2-source #DISTNAME= ${PORTNAME}-${DISTVERSION}-source MAINTAINER= gnome@FreeBSD.org diff --git a/www/firefox3-devel/distinfo b/www/firefox3-devel/distinfo index 08a8ab1df..cfb8b8471 100644 --- a/www/firefox3-devel/distinfo +++ b/www/firefox3-devel/distinfo @@ -1,3 +1,3 @@ -MD5 (granparadiso-alpha1-source.tar.bz2) = f151ade15de89dda8af6a73d2fff077a -SHA256 (granparadiso-alpha1-source.tar.bz2) = cb330f20d096f3b16fc88619e01517d822bad6a5c42aa30fd17a59ba6e532398 -SIZE (granparadiso-alpha1-source.tar.bz2) = 33614044 +MD5 (granparadiso-alpha2-source.tar.bz2) = 5e1f1dfb2164a5f30ce1b2217c5ce2e1 +SHA256 (granparadiso-alpha2-source.tar.bz2) = 9d0dceb51b4acb468e13b7ba321f151ad84362f521a5514c667fa6b497d70e97 +SIZE (granparadiso-alpha2-source.tar.bz2) = 33867426 diff --git a/www/firefox3-devel/files/patch-bugzilla361075 b/www/firefox3-devel/files/patch-bugzilla361075 deleted file mode 100644 index e03e3656a..000000000 --- a/www/firefox3-devel/files/patch-bugzilla361075 +++ /dev/null @@ -1,60 +0,0 @@ -Index: js/src/prmjtime.c -=================================================================== -RCS file: /cvsroot/mozilla/js/src/prmjtime.c,v -retrieving revision 3.55 -diff -u -p -d -8 -r3.55 prmjtime.c ---- js/src/prmjtime.c 13 Nov 2006 21:33:06 -0000 3.55 -+++ js/src/prmjtime.c 17 Nov 2006 21:30:44 -0000 -@@ -341,44 +341,47 @@ PRMJ_basetime(JSInt64 tsecs, PRMJTime *p - JSInt32 yday = 0; - JSInt32 mday = 0; - JSInt32 wday = 6; /* start on a Sunday */ - JSInt32 days = 0; - JSInt32 seconds = 0; - JSInt32 minutes = 0; - JSInt32 hours = 0; - JSInt32 isleap = 0; -+ -+ /* Temporaries used for various computations */ - JSInt64 result; - JSInt64 result1; - JSInt64 result2; -+ - JSInt64 base; - - /* Some variables for intermediate result storage to make computing isleap - easier/faster */ - JSInt32 fourCenturyBlocks; - JSInt32 centuriesLeft; - JSInt32 fourYearBlocksLeft; - JSInt32 yearsLeft; - - /* Since leap years work by 400/100/4 year intervals, precompute the length - of those in seconds if they start at the beginning of year 1. */ - JSInt64 fourYears; - JSInt64 century; - JSInt64 fourCenturies; - -+ JSLL_UI2L(result, PRMJ_DAY_SECONDS); -+ - JSLL_I2L(fourYears, PRMJ_FOUR_YEARS_DAYS); -- JSLL_MUL(fourYears, fourYears, PRMJ_DAY_SECONDS); -+ JSLL_MUL(fourYears, fourYears, result); - - JSLL_I2L(century, PRMJ_CENTURY_DAYS); -- JSLL_MUL(century, century, PRMJ_DAY_SECONDS); -+ JSLL_MUL(century, century, result); - - JSLL_I2L(fourCenturies, PRMJ_FOUR_CENTURIES_DAYS); -- JSLL_MUL(fourCenturies, fourCenturies, PRMJ_DAY_SECONDS); -- -- JSLL_UI2L(result,0); -+ JSLL_MUL(fourCenturies, fourCenturies, result); - - /* get the base time via UTC */ - base = PRMJ_ToExtendedTime(0); - JSLL_UI2L(result, PRMJ_USEC_PER_SEC); - JSLL_DIV(base,base,result); - JSLL_ADD(tsecs,tsecs,base); - - /* Compute our |year|, |isleap|, and part of |days|. When this part is |