1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Update Mozilla to 1.0.rc3 and tweak galeon to compile with it.

Special thanks to:	Yanko Kaneti <yaneti@indigo.declera.com>
			for his help in getting Galeon compiling
This commit is contained in:
Maxim Sobolev 2002-05-24 14:14:54 +00:00
parent 47dab81eb7
commit 4124fa7148
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=59899
17 changed files with 472 additions and 34 deletions

View File

@ -0,0 +1,221 @@
--- src/mozilla/mozilla.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/mozilla.cpp 2002/05/24 13:42:17
@@ -367,7 +367,7 @@
if (NS_FAILED(rv) || !persist) return NS_ERROR_FAILURE;
nsCOMPtr<nsILocalFile> file;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
NS_NewNativeLocalFile(nsDependentCString(filename), PR_TRUE, getter_AddRefs(file));
#else
NS_NewLocalFile(filename, PR_TRUE, getter_AddRefs(file));
@@ -1841,7 +1841,7 @@
{
nsresult rv;
nsCOMPtr<nsILocalFile> localFile;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
rv = NS_NewNativeLocalFile(nsDependentCString(filename), PR_TRUE, getter_AddRefs(localFile));
#else
rv = NS_NewLocalFile(filename, PR_TRUE, getter_AddRefs(localFile));
--- src/mozilla/ContentHandler.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/ContentHandler.cpp 2002/05/24 13:42:36
@@ -361,7 +361,7 @@
}
saveDir = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
saveDir->InitWithNativePath (nsDependentCString(expanded_directory));
#else
saveDir->InitWithPath (expanded_directory);
@@ -392,7 +392,7 @@
}
else
{
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString cDirName;
saveDir->GetNativePath (cDirName);
char *cDefaultFile = mozilla_unicode_to_locale (aDefaultFile);
@@ -423,7 +423,7 @@
rv = aFile->GetParent (getter_AddRefs(aDirectory));
if(NS_SUCCEEDED(rv) && aDirectory)
{
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString cDirectoryName;
rv = aDirectory->GetNativePath(cDirectoryName);
#else
@@ -496,7 +496,7 @@
appLauncher->DeleteTemporaryFileOnExit(mTempFile);
}
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString aFileName;
mTempFile->GetNativePath(aFileName);
#else
--- src/mozilla/FilePicker.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/FilePicker.cpp 2002/05/24 13:42:54
@@ -147,7 +147,7 @@
mFileFormats = fileFormats;
mFile = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
mDisplayDirectory = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
mDisplayDirectory->InitWithNativePath(nsDependentCString(g_get_home_dir()));
#else
mDisplayDirectory->InitWithPath(g_get_home_dir());
@@ -282,7 +282,7 @@
cFileName = mozilla_unicode_to_locale (mDefaultString.get());
}
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCAutoString cDirName;
mDisplayDirectory->GetNativePath (cDirName);
@@ -560,7 +560,7 @@
}
}
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
aFilePicker->mFile->InitWithNativePath (nsDependentCString(aFileName));
if (aFilePicker->mMode == nsIFilePicker::modeGetFolder)
@@ -706,7 +706,7 @@
nsCOMPtr<nsILocalFile> aDir =
do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
aDir->InitWithNativePath (nsDependentCString(expanded_directory));
#else
aDir->InitWithPath (expanded_directory);
@@ -743,7 +743,7 @@
g_free (*ret_fullpath);
nsCOMPtr<nsILocalFile> aFile;
aFilePicker->GetFile (getter_AddRefs(aFile));
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString tempFullPathStr;
aFile->GetNativePath (tempFullPathStr);
*ret_fullpath = g_strdup (tempFullPathStr.get());
--- src/mozilla/GaleonWrapper.cpp 2002/05/24 13:45:50 1.3
+++ src/mozilla/GaleonWrapper.cpp 2002/05/24 13:45:39
@@ -181,7 +181,7 @@
}
else
{
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 0
result = print->PrintPreview(options, nsnull, nsnull);
#else
result = print->PrintPreview(options);
@@ -435,7 +435,7 @@
if (NS_FAILED(rv) || !persist) return NS_ERROR_FAILURE;
nsCOMPtr<nsILocalFile> file;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
NS_NewNativeLocalFile(nsDependentCString(filename),
PR_TRUE, getter_AddRefs(file));
#else
@@ -492,7 +492,7 @@
if (NS_FAILED(rv) || !persist) return NS_ERROR_FAILURE;
nsCOMPtr<nsILocalFile> file;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
NS_NewNativeLocalFile(nsDependentCString(filename),
PR_TRUE, getter_AddRefs(file));
#else
@@ -502,7 +502,7 @@
nsCOMPtr<nsILocalFile> path;
if (datapath)
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
NS_NewNativeLocalFile(nsDependentCString(datapath),
PR_TRUE, getter_AddRefs(path));
#else
--- src/mozilla/MozRegisterComponents.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/MozRegisterComponents.cpp 2002/05/24 13:43:06
@@ -193,7 +193,7 @@
nsresult rv = NS_OK;
nsCOMPtr<nsILocalFile> dllFile;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
rv = NS_NewNativeLocalFile (nsDependentCString(aDLLPath),
PR_TRUE, getter_AddRefs (dllFile));
#else
--- src/mozilla/PrintProgressListener.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/PrintProgressListener.cpp 2002/05/24 13:43:15
@@ -54,7 +54,7 @@
/* void onStateChange (in nsIWebProgress aWebProgress, in nsIRequest aRequest, in long aStateFlags, in unsigned long aStatus); */
NS_IMETHODIMP GPrintListener::OnStateChange(nsIWebProgress *aWebProgress,
nsIRequest *aRequest,
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
PRUint32 aStateFlags,
#else
PRInt32 aStateFlags,
@@ -118,7 +118,7 @@
/* void onSecurityChange (in nsIWebProgress aWebProgress, in nsIRequest aRequest, in long state); */
NS_IMETHODIMP GPrintListener::OnSecurityChange(nsIWebProgress *aWebProgress,
nsIRequest *aRequest,
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
PRUint32 state)
#else
PRInt32 state)
--- src/mozilla/ProgressListener2.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/ProgressListener2.cpp 2002/05/24 13:43:27
@@ -279,7 +279,7 @@
}
/* setup filename */
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString leafName;
rv = mFile->GetNativeLeafName (leafName);
text[COL_FILENAME] = nsCRT::strdup (leafName.get());
@@ -458,7 +458,7 @@
*/
NS_IMETHODIMP GProgressListener2::OnStateChange (nsIWebProgress *aWebProgress,
nsIRequest *aRequest,
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
PRUint32 aStateFlags,
#else
PRInt32 aStateFlags,
@@ -469,7 +469,7 @@
if (aStateFlags & nsIWebProgressListener::STATE_STOP)
{
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString filename;
mFile->GetNativePath (filename);
#else
@@ -537,7 +537,7 @@
(SetPixmapInfo *) mCallbackInfo;
gchar *fn;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString cfn;
mFile->GetNativePath(cfn);
fn = nsCRT::strdup(cfn.get());
@@ -833,7 +833,7 @@
NS_IMETHODIMP GProgressListener2::
OnSecurityChange(nsIWebProgress *aWebProgress,
nsIRequest *aRequest,
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
PRUint32 state)
#else
PRInt32 state)

View File

@ -1,12 +1,14 @@
$FreeBSD$
--- src/mozilla/ExternalProtocolService.cpp 2002/05/24 10:52:44 1.1
+++ src/mozilla/ExternalProtocolService.cpp 2002/05/24 10:53:41
@@ -16,7 +16,12 @@
--- src/mozilla/ExternalProtocolService.cpp.orig Sat May 18 02:03:19 2002
+++ src/mozilla/ExternalProtocolService.cpp Fri May 24 16:56:19 2002
@@ -16,7 +16,14 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#include "config.h"
+
+#ifdef HAVE_MALLOC_H
#include <malloc.h>
+#endif

View File

@ -0,0 +1,221 @@
--- src/mozilla/mozilla.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/mozilla.cpp 2002/05/24 13:42:17
@@ -367,7 +367,7 @@
if (NS_FAILED(rv) || !persist) return NS_ERROR_FAILURE;
nsCOMPtr<nsILocalFile> file;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
NS_NewNativeLocalFile(nsDependentCString(filename), PR_TRUE, getter_AddRefs(file));
#else
NS_NewLocalFile(filename, PR_TRUE, getter_AddRefs(file));
@@ -1841,7 +1841,7 @@
{
nsresult rv;
nsCOMPtr<nsILocalFile> localFile;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
rv = NS_NewNativeLocalFile(nsDependentCString(filename), PR_TRUE, getter_AddRefs(localFile));
#else
rv = NS_NewLocalFile(filename, PR_TRUE, getter_AddRefs(localFile));
--- src/mozilla/ContentHandler.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/ContentHandler.cpp 2002/05/24 13:42:36
@@ -361,7 +361,7 @@
}
saveDir = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
saveDir->InitWithNativePath (nsDependentCString(expanded_directory));
#else
saveDir->InitWithPath (expanded_directory);
@@ -392,7 +392,7 @@
}
else
{
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString cDirName;
saveDir->GetNativePath (cDirName);
char *cDefaultFile = mozilla_unicode_to_locale (aDefaultFile);
@@ -423,7 +423,7 @@
rv = aFile->GetParent (getter_AddRefs(aDirectory));
if(NS_SUCCEEDED(rv) && aDirectory)
{
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString cDirectoryName;
rv = aDirectory->GetNativePath(cDirectoryName);
#else
@@ -496,7 +496,7 @@
appLauncher->DeleteTemporaryFileOnExit(mTempFile);
}
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString aFileName;
mTempFile->GetNativePath(aFileName);
#else
--- src/mozilla/FilePicker.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/FilePicker.cpp 2002/05/24 13:42:54
@@ -147,7 +147,7 @@
mFileFormats = fileFormats;
mFile = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
mDisplayDirectory = do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
mDisplayDirectory->InitWithNativePath(nsDependentCString(g_get_home_dir()));
#else
mDisplayDirectory->InitWithPath(g_get_home_dir());
@@ -282,7 +282,7 @@
cFileName = mozilla_unicode_to_locale (mDefaultString.get());
}
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCAutoString cDirName;
mDisplayDirectory->GetNativePath (cDirName);
@@ -560,7 +560,7 @@
}
}
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
aFilePicker->mFile->InitWithNativePath (nsDependentCString(aFileName));
if (aFilePicker->mMode == nsIFilePicker::modeGetFolder)
@@ -706,7 +706,7 @@
nsCOMPtr<nsILocalFile> aDir =
do_CreateInstance (NS_LOCAL_FILE_CONTRACTID);
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
aDir->InitWithNativePath (nsDependentCString(expanded_directory));
#else
aDir->InitWithPath (expanded_directory);
@@ -743,7 +743,7 @@
g_free (*ret_fullpath);
nsCOMPtr<nsILocalFile> aFile;
aFilePicker->GetFile (getter_AddRefs(aFile));
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString tempFullPathStr;
aFile->GetNativePath (tempFullPathStr);
*ret_fullpath = g_strdup (tempFullPathStr.get());
--- src/mozilla/GaleonWrapper.cpp 2002/05/24 13:45:50 1.3
+++ src/mozilla/GaleonWrapper.cpp 2002/05/24 13:45:39
@@ -181,7 +181,7 @@
}
else
{
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 0
result = print->PrintPreview(options, nsnull, nsnull);
#else
result = print->PrintPreview(options);
@@ -435,7 +435,7 @@
if (NS_FAILED(rv) || !persist) return NS_ERROR_FAILURE;
nsCOMPtr<nsILocalFile> file;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
NS_NewNativeLocalFile(nsDependentCString(filename),
PR_TRUE, getter_AddRefs(file));
#else
@@ -492,7 +492,7 @@
if (NS_FAILED(rv) || !persist) return NS_ERROR_FAILURE;
nsCOMPtr<nsILocalFile> file;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
NS_NewNativeLocalFile(nsDependentCString(filename),
PR_TRUE, getter_AddRefs(file));
#else
@@ -502,7 +502,7 @@
nsCOMPtr<nsILocalFile> path;
if (datapath)
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
NS_NewNativeLocalFile(nsDependentCString(datapath),
PR_TRUE, getter_AddRefs(path));
#else
--- src/mozilla/MozRegisterComponents.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/MozRegisterComponents.cpp 2002/05/24 13:43:06
@@ -193,7 +193,7 @@
nsresult rv = NS_OK;
nsCOMPtr<nsILocalFile> dllFile;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
rv = NS_NewNativeLocalFile (nsDependentCString(aDLLPath),
PR_TRUE, getter_AddRefs (dllFile));
#else
--- src/mozilla/PrintProgressListener.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/PrintProgressListener.cpp 2002/05/24 13:43:15
@@ -54,7 +54,7 @@
/* void onStateChange (in nsIWebProgress aWebProgress, in nsIRequest aRequest, in long aStateFlags, in unsigned long aStatus); */
NS_IMETHODIMP GPrintListener::OnStateChange(nsIWebProgress *aWebProgress,
nsIRequest *aRequest,
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
PRUint32 aStateFlags,
#else
PRInt32 aStateFlags,
@@ -118,7 +118,7 @@
/* void onSecurityChange (in nsIWebProgress aWebProgress, in nsIRequest aRequest, in long state); */
NS_IMETHODIMP GPrintListener::OnSecurityChange(nsIWebProgress *aWebProgress,
nsIRequest *aRequest,
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
PRUint32 state)
#else
PRInt32 state)
--- src/mozilla/ProgressListener2.cpp 2002/05/24 13:41:30 1.1
+++ src/mozilla/ProgressListener2.cpp 2002/05/24 13:43:27
@@ -279,7 +279,7 @@
}
/* setup filename */
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString leafName;
rv = mFile->GetNativeLeafName (leafName);
text[COL_FILENAME] = nsCRT::strdup (leafName.get());
@@ -458,7 +458,7 @@
*/
NS_IMETHODIMP GProgressListener2::OnStateChange (nsIWebProgress *aWebProgress,
nsIRequest *aRequest,
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
PRUint32 aStateFlags,
#else
PRInt32 aStateFlags,
@@ -469,7 +469,7 @@
if (aStateFlags & nsIWebProgressListener::STATE_STOP)
{
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString filename;
mFile->GetNativePath (filename);
#else
@@ -537,7 +537,7 @@
(SetPixmapInfo *) mCallbackInfo;
gchar *fn;
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
nsCString cfn;
mFile->GetNativePath(cfn);
fn = nsCRT::strdup(cfn.get());
@@ -833,7 +833,7 @@
NS_IMETHODIMP GProgressListener2::
OnSecurityChange(nsIWebProgress *aWebProgress,
nsIRequest *aRequest,
-#if MOZILLA_VERSION > VERSION3(1,0,0)
+#if 1
PRUint32 state)
#else
PRInt32 state)

View File

@ -1,12 +1,14 @@
$FreeBSD$
--- src/mozilla/ExternalProtocolService.cpp 2002/05/24 10:52:44 1.1
+++ src/mozilla/ExternalProtocolService.cpp 2002/05/24 10:53:41
@@ -16,7 +16,12 @@
--- src/mozilla/ExternalProtocolService.cpp.orig Sat May 18 02:03:19 2002
+++ src/mozilla/ExternalProtocolService.cpp Fri May 24 16:56:19 2002
@@ -16,7 +16,14 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#include "config.h"
+
+#ifdef HAVE_MALLOC_H
#include <malloc.h>
+#endif

View File

@ -6,12 +6,11 @@
#
PORTNAME= mozilla
PORTVERSION= 1.0.rc2
PORTREVISION= 1
PORTVERSION= 1.0.rc3
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_MOZILLA} \
http://people.FreeBSD.org/~marcus/:local
http://people.FreeBSD.org/~sobomax/:local
MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/.rc/rc/}/src \
sobomax/:local
DISTFILES= ${PORTNAME}-source-${PORTVERSION:S/.rc/rc/}${EXTRACT_SUFX} \

View File

@ -1,2 +1,2 @@
MD5 (mozilla-source-1.0rc2.tar.bz2) = 974255bcb7bdff8517f26ece0f8b0fbc
MD5 (libart_lgpl-1.0.rc2.tar.bz2) = 5ddb071a3b7bdb53913e0083a6d87673
MD5 (mozilla-source-1.0rc3.tar.bz2) = f30ac988ec8589285523315ebb8a7732
MD5 (libart_lgpl-1.0.rc3.tar.bz2) = d990d4b942ec6a7a9a7ee688b22c5794

View File

@ -1642,7 +1642,6 @@ include/mozilla/shistory/nsISHistoryInternal.h
include/mozilla/shistory/nsISHistoryListener.h
include/mozilla/sidebar/nsISidebar.h
include/mozilla/string/nsAFlatString.h
include/mozilla/string/nsAPromiseString.h
include/mozilla/string/nsASingleFragmentString.h
include/mozilla/string/nsAString.h
include/mozilla/string/nsAStringGenerator.h

View File

@ -1642,7 +1642,6 @@ include/mozilla/shistory/nsISHistoryInternal.h
include/mozilla/shistory/nsISHistoryListener.h
include/mozilla/sidebar/nsISidebar.h
include/mozilla/string/nsAFlatString.h
include/mozilla/string/nsAPromiseString.h
include/mozilla/string/nsASingleFragmentString.h
include/mozilla/string/nsAString.h
include/mozilla/string/nsAStringGenerator.h

View File

@ -1642,7 +1642,6 @@ include/mozilla/shistory/nsISHistoryInternal.h
include/mozilla/shistory/nsISHistoryListener.h
include/mozilla/sidebar/nsISidebar.h
include/mozilla/string/nsAFlatString.h
include/mozilla/string/nsAPromiseString.h
include/mozilla/string/nsASingleFragmentString.h
include/mozilla/string/nsAString.h
include/mozilla/string/nsAStringGenerator.h

View File

@ -6,12 +6,11 @@
#
PORTNAME= mozilla
PORTVERSION= 1.0.rc2
PORTREVISION= 1
PORTVERSION= 1.0.rc3
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_MOZILLA} \
http://people.FreeBSD.org/~marcus/:local
http://people.FreeBSD.org/~sobomax/:local
MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/.rc/rc/}/src \
sobomax/:local
DISTFILES= ${PORTNAME}-source-${PORTVERSION:S/.rc/rc/}${EXTRACT_SUFX} \

View File

@ -1,2 +1,2 @@
MD5 (mozilla-source-1.0rc2.tar.bz2) = 974255bcb7bdff8517f26ece0f8b0fbc
MD5 (libart_lgpl-1.0.rc2.tar.bz2) = 5ddb071a3b7bdb53913e0083a6d87673
MD5 (mozilla-source-1.0rc3.tar.bz2) = f30ac988ec8589285523315ebb8a7732
MD5 (libart_lgpl-1.0.rc3.tar.bz2) = d990d4b942ec6a7a9a7ee688b22c5794

View File

@ -6,12 +6,11 @@
#
PORTNAME= mozilla
PORTVERSION= 1.0.rc2
PORTREVISION= 1
PORTVERSION= 1.0.rc3
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_MOZILLA} \
http://people.FreeBSD.org/~marcus/:local
http://people.FreeBSD.org/~sobomax/:local
MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/.rc/rc/}/src \
sobomax/:local
DISTFILES= ${PORTNAME}-source-${PORTVERSION:S/.rc/rc/}${EXTRACT_SUFX} \

View File

@ -1,2 +1,2 @@
MD5 (mozilla-source-1.0rc2.tar.bz2) = 974255bcb7bdff8517f26ece0f8b0fbc
MD5 (libart_lgpl-1.0.rc2.tar.bz2) = 5ddb071a3b7bdb53913e0083a6d87673
MD5 (mozilla-source-1.0rc3.tar.bz2) = f30ac988ec8589285523315ebb8a7732
MD5 (libart_lgpl-1.0.rc3.tar.bz2) = d990d4b942ec6a7a9a7ee688b22c5794

View File

@ -6,12 +6,11 @@
#
PORTNAME= mozilla
PORTVERSION= 1.0.rc2
PORTREVISION= 1
PORTVERSION= 1.0.rc3
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_MOZILLA} \
http://people.FreeBSD.org/~marcus/:local
http://people.FreeBSD.org/~sobomax/:local
MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/.rc/rc/}/src \
sobomax/:local
DISTFILES= ${PORTNAME}-source-${PORTVERSION:S/.rc/rc/}${EXTRACT_SUFX} \

View File

@ -1,2 +1,2 @@
MD5 (mozilla-source-1.0rc2.tar.bz2) = 974255bcb7bdff8517f26ece0f8b0fbc
MD5 (libart_lgpl-1.0.rc2.tar.bz2) = 5ddb071a3b7bdb53913e0083a6d87673
MD5 (mozilla-source-1.0rc3.tar.bz2) = f30ac988ec8589285523315ebb8a7732
MD5 (libart_lgpl-1.0.rc3.tar.bz2) = d990d4b942ec6a7a9a7ee688b22c5794

View File

@ -6,12 +6,11 @@
#
PORTNAME= mozilla
PORTVERSION= 1.0.rc2
PORTREVISION= 1
PORTVERSION= 1.0.rc3
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_MOZILLA} \
http://people.FreeBSD.org/~marcus/:local
http://people.FreeBSD.org/~sobomax/:local
MASTER_SITE_SUBDIR= mozilla/releases/${PORTNAME}${PORTVERSION:S/.rc/rc/}/src \
sobomax/:local
DISTFILES= ${PORTNAME}-source-${PORTVERSION:S/.rc/rc/}${EXTRACT_SUFX} \

View File

@ -1,2 +1,2 @@
MD5 (mozilla-source-1.0rc2.tar.bz2) = 974255bcb7bdff8517f26ece0f8b0fbc
MD5 (libart_lgpl-1.0.rc2.tar.bz2) = 5ddb071a3b7bdb53913e0083a6d87673
MD5 (mozilla-source-1.0rc3.tar.bz2) = f30ac988ec8589285523315ebb8a7732
MD5 (libart_lgpl-1.0.rc3.tar.bz2) = d990d4b942ec6a7a9a7ee688b22c5794