diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2004-12-19 21:11:01 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2004-12-19 21:11:01 +0000 |
commit | e4f9150bdf8f9a2a532f9bd3c6cd12cb81e1a643 (patch) | |
tree | e84093c7c9a91275ecf5a90997b323afa32118b3 /www/kazehakase | |
parent | f603787335210d05bdd7f92f1eb1f00392d16bfd (diff) | |
download | ports-e4f9150bdf8f9a2a532f9bd3c6cd12cb81e1a643.tar.gz ports-e4f9150bdf8f9a2a532f9bd3c6cd12cb81e1a643.zip |
- Add support for new mozilla 1.7.5, this breaks support for mozilla 1.7.x
- Fix typo
- Bump PORTREVISION to force rebuild with mozilla 1.7.5
Notes
Notes:
svn path=/head/; revision=124525
Diffstat (limited to 'www/kazehakase')
-rw-r--r-- | www/kazehakase/Makefile | 4 | ||||
-rw-r--r-- | www/kazehakase/files/patch-configure | 10 | ||||
-rw-r--r-- | www/kazehakase/files/patch-mozilla-175 | 135 |
3 files changed, 144 insertions, 5 deletions
diff --git a/www/kazehakase/Makefile b/www/kazehakase/Makefile index cbdc43c11294..1e5afcdf1463 100644 --- a/www/kazehakase/Makefile +++ b/www/kazehakase/Makefile @@ -7,7 +7,7 @@ PORTNAME= kazehakase PORTVERSION= 0.2.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} MASTER_SITE_SUBDIR= ${PORTNAME}/12370/ @@ -85,7 +85,7 @@ pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} "Enable Migemo (Japanese incremental search by defining WITH_MIGEMO" @${ECHO_MSG} "" - @${ECHO_MSG} "Enable Thumbnail support by definining WITH_THUMBNAIL" + @${ECHO_MSG} "Enable Thumbnail support by defining WITH_THUMBNAIL" @${ECHO_MSG} "" @${ECHO_MSG} "Disable Estraier, A full-text search engine for searching your history" @${ECHO_MSG} " by defining WITHOUT_ESTRAIER" diff --git a/www/kazehakase/files/patch-configure b/www/kazehakase/files/patch-configure index 3a2f7d518b3d..5768757da4af 100644 --- a/www/kazehakase/files/patch-configure +++ b/www/kazehakase/files/patch-configure @@ -1,6 +1,10 @@ ---- configure.orig Sun Nov 28 19:29:54 2004 -+++ configure Sun Nov 28 19:30:32 2004 -@@ -19384,6 +19384,8 @@ +--- configure.orig Sun Nov 28 01:18:49 2004 ++++ configure Sat Dec 18 20:44:03 2004 +@@ -19381,9 +19381,12 @@ + 1.7.1) MOZILLA_SNAPSHOT=15 ;; + 1.7.2) MOZILLA_SNAPSHOT=15 ;; + 1.7.3) MOZILLA_SNAPSHOT=15 ;; ++ 1.7.5) MOZILLA_SNAPSHOT=15 ;; 1.8a) MOZILLA_SNAPSHOT=16 ;; 1.8a2) MOZILLA_SNAPSHOT=16 ;; 1.8a3) MOZILLA_SNAPSHOT=17 ;; diff --git a/www/kazehakase/files/patch-mozilla-175 b/www/kazehakase/files/patch-mozilla-175 new file mode 100644 index 000000000000..4338f65b3382 --- /dev/null +++ b/www/kazehakase/files/patch-mozilla-175 @@ -0,0 +1,135 @@ +--- src/mozilla/kz-mozfilepicker.cpp.orig Sun Dec 19 15:54:38 2004 ++++ src/mozilla/kz-mozfilepicker.cpp Sun Dec 19 16:01:06 2004 +@@ -100,14 +100,14 @@ + //////////////////////////////////////////////////////////////////////////////// + + /* void init (in nsIDOMWindowInternal parent, in wstring title, in short mode); */ +-#if MOZILLA_SNAPSHOT > 15 ++/* #if MOZILLA_SNAPSHOT > 15 */ + NS_IMETHODIMP KzFilePicker::Init(nsIDOMWindow *aParent, + const nsAString &aTitle, + PRInt16 aMode) +-#else ++/* #else + NS_IMETHODIMP KzFilePicker::Init(nsIDOMWindowInternal *aParent, + const PRUnichar *aTitle, PRInt16 aMode) +-#endif ++#endif */ + { + mParent = do_QueryInterface(aParent); + mParentWidget = GetGtkWindowForDOMWindow(mParent); +@@ -127,13 +127,13 @@ + } + + /* void appendFilter (in wstring title, in wstring filter); */ +-#if MOZILLA_SNAPSHOT > 15 ++/* #if MOZILLA_SNAPSHOT > 15 */ + NS_IMETHODIMP KzFilePicker::AppendFilter(const nsAString &aTitle, + const nsAString &aFilter) +-#else ++/* #else + NS_IMETHODIMP KzFilePicker::AppendFilter(const PRUnichar *aTitle, + const PRUnichar *aFilter) +-#endif ++#endif */ + { + //GtkFileSelection is crippled, so we can't provide a short-list + //of filters to choose from. We provide minimal functionality +@@ -153,35 +153,35 @@ + } + + /* attribute wstring defaultString; */ +-#if MOZILLA_SNAPSHOT > 15 ++/* #if MOZILLA_SNAPSHOT > 15 */ + NS_IMETHODIMP KzFilePicker::GetDefaultString(nsAString &aDefaultString) +-#else ++/* #else + NS_IMETHODIMP KzFilePicker::GetDefaultString(PRUnichar * *aDefaultString) +-#endif ++#endif */ + { + gsize bytesWritten; + gchar *utf8DefaultString = g_filename_to_utf8(mDefaultString.get(), -1, + NULL, + &bytesWritten, NULL); +-#if MOZILLA_SNAPSHOT > 15 ++/* #if MOZILLA_SNAPSHOT > 15 */ + aDefaultString.Assign(NS_ConvertUTF8toUCS2(utf8DefaultString)); +-#else ++/* #else + *aDefaultString = ToNewUnicode(NS_ConvertUTF8toUCS2(utf8DefaultString)); +-#endif ++#endif */ + g_free(utf8DefaultString); + return NS_OK; + } +-#if MOZILLA_SNAPSHOT > 15 ++/* #if MOZILLA_SNAPSHOT > 15 */ + NS_IMETHODIMP KzFilePicker::SetDefaultString(const nsAString &aDefaultString) +-#else ++/* #else + NS_IMETHODIMP KzFilePicker::SetDefaultString(const PRUnichar *aDefaultString) +-#endif ++#endif */ + { +-#if MOZILLA_SNAPSHOT > 15 ++/* #if MOZILLA_SNAPSHOT > 15 */ + if (aDefaultString.Length()) +-#else ++/* #else + if (aDefaultString) +-#endif ++#endif */ + { + gsize bytesWritten; + gchar *localeDefaultString = +@@ -199,19 +199,19 @@ + /* attribute wstring defaultExtension; */ + // Again, due to the crippled file selector, we can't really + // do anything here. +-#if MOZILLA_SNAPSHOT > 15 ++/* #if MOZILLA_SNAPSHOT > 15 */ + NS_IMETHODIMP KzFilePicker::GetDefaultExtension(nsAString &aDefaultExtension) +-#else ++/* #else + NS_IMETHODIMP KzFilePicker::GetDefaultExtension(PRUnichar * *aDefaultExtension) +-#endif ++#endif */ + { + return NS_ERROR_NOT_IMPLEMENTED; + } +-#if MOZILLA_SNAPSHOT > 15 ++/* #if MOZILLA_SNAPSHOT > 15 */ + NS_IMETHODIMP KzFilePicker::SetDefaultExtension(const nsAString &aDefaultExtension) +-#else ++/* #else + NS_IMETHODIMP KzFilePicker::SetDefaultExtension(const PRUnichar *aDefaultExtension) +-#endif ++#endif */ + { + return NS_OK; + } +--- src/mozilla/kz-mozlauncher.cpp.orig Sun Dec 19 15:52:05 2004 ++++ src/mozilla/kz-mozlauncher.cpp Sun Dec 19 15:54:12 2004 +@@ -102,18 +102,18 @@ + + const nsAString &title = NS_ConvertUTF8toUCS2(_("Select the destination filename")); + +-#if MOZILLA_SNAPSHOT > 15 ++/* #if MOZILLA_SNAPSHOT > 15 */ + filePicker->Init(windowInternal, + title, + nsIFilePicker::modeSave); + nsAutoString defaultFile(aDefaultFile); + filePicker->SetDefaultString(defaultFile); +-#else ++/* #else + filePicker->Init(windowInternal, + PromiseFlatString(title).get(), + nsIFilePicker::modeSave); + filePicker->SetDefaultString(aDefaultFile); +-#endif ++#endif */ + filePicker->SetDisplayDirectory(saveDir); + + filePicker->Show(&okToSave); |