diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-11-02 23:43:43 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-11-02 23:43:43 +0000 |
commit | 3a40c895e880522d541b06527761787de3fd4cdb (patch) | |
tree | eef80904ab69a54c7e6fd4c23a7ac6ebcf9e6733 /mail/mahogany/files/patch-ad | |
parent | Update to 2.1.8. (diff) |
Update to 0.65.
* python interpreter works only with python 2.1 and older,
and is no longer maintained by the authors, so i disabled it
and changed CATEGORIES and COMMENT accordingly
* removed latex dependency and not installing Manual
it's weird to have to install whole latex just to build
documentation to mail client. built docs in html are available
on mahogany website.
PR: 57589
Submitted by: Pav Lucistnik <pav@oook.cz>
Approved by: maintainer
Diffstat (limited to 'mail/mahogany/files/patch-ad')
-rw-r--r-- | mail/mahogany/files/patch-ad | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/mail/mahogany/files/patch-ad b/mail/mahogany/files/patch-ad deleted file mode 100644 index 6dd44d3d6ddb..000000000000 --- a/mail/mahogany/files/patch-ad +++ /dev/null @@ -1,48 +0,0 @@ ---- src/gui/wxMApp.cpp.orig Sat Sep 30 12:10:50 2000 -+++ src/gui/wxMApp.cpp Sun Nov 12 05:30:09 2000 -@@ -561,7 +561,11 @@ - { - #ifdef OS_UNIX - String localePath; -+#ifdef __FreeBSD__ -+ localePath << M_PREFIX << "/share/locale"; -+#else - localePath << M_BASEDIR << "/locale"; -+#endif - #elif defined(OS_WIN) - InitGlobalDir(); - String localePath; -@@ -835,7 +839,12 @@ - READ_APPCONFIG(MP_HELPBROWSER), - READ_APPCONFIG(MP_HELPBROWSER_ISNS)); - #endif -+#ifdef __FreeBSD__ -+ helpfile = M_PREFIX; -+ helpfile += "/share/doc/Mahogany"; -+#else - helpfile = GetGlobalDir()+"/doc"; -+#endif // __FreeBSD__ - #else // Windows - helpfile = GetGlobalDir()+"\\doc\\Mahogany.hlp"; - #endif // Unix/Windows ---- src/gui/wxMDialogs.cpp.orig Sun Nov 12 04:24:18 2000 -+++ src/gui/wxMDialogs.cpp Sun Nov 12 05:19:40 2000 -@@ -1006,15 +1006,9 @@ - { - String dir, filename; - -- // Tips files are in @prefix@/share/Mahogany/doc/Tips/ -- dir = mApplication->GetGlobalDir(); -- if ( !dir ) -- { -- // like this, it will work in an uninstalled copy of M too -- dir = ".."; -- } -- -- dir << DIR_SEPARATOR << "doc" << DIR_SEPARATOR << "Tips" << DIR_SEPARATOR; -+ // Tips files are in @prefix@/share/doc/Mahogany/Tips/ -+ dir << M_PREFIX << DIR_SEPARATOR << "share" << DIR_SEPARATOR << "doc"; -+ dir << DIR_SEPARATOR << "Mahogany" << DIR_SEPARATOR << "Tips" << DIR_SEPARATOR; - - // Tips files are either Tips_LOCALENAME.txt, e.g. Tips_de.txt or - // simply Tips.txt |