Maho Nakata
68a46b37ab
first remove patches. raize IssueZilla as far as possible
2003-12-08 13:57:34 +00:00
Maho Nakata
9a7eb5c2f3
a) add several patches made by Takashi Ono (JCA signed person)
...
1) To enable handling of MS Word for Windows 95/6.0 CJK Version
patch-word6+95-cjkhandling
http://www.openoffice.org/issues/show_bug.cgi?id=17498
(target milestone 1.1.1, resolved and fixed)
2) Patch to enable rtf filter handle local language files
patch-rtfcjk
http://www.openoffice.org/issues/show_bug.cgi?id=17503
(target milestone 2.0, verified and fixed)
3) rtf writing enhancement for CJK
patch-wrtrtf
http://www.openoffice.org/issues/show_bug.cgi?id=20264
(not confirmed yet)
4) read first section attribute correctly for
MS Word for Windows 95/6.0
patch-topsection
http://ja.openoffice.org/servlets/ProjectDownloadList?action=download&dlID=312
(IZ is not raized)
b) bump portrevision
2003-10-02 06:45:23 +00:00
Martin Blapp
79e75232f1
The relative path bug has been fixed. Execute soffice again
...
with absolute path.
This makes relative paths working again for specified documents
in the argument list.
2003-09-25 22:43:58 +00:00
Martin Blapp
a8e16966b2
Upgrade to 1.1rc5 snapshot. Fix a remaining error in the startup
...
script.
2003-09-25 22:29:30 +00:00
Martin Blapp
ae404036e5
Directly get OOHOME from .sversionrc. Add several checks for
...
the various installation steps.
2003-09-25 22:28:01 +00:00
Martin Blapp
f95a4f2995
Make it easier for people, move a big chunk of the startup
...
wrapper out into a script included by soffice.sh. This way
there aren't any traps at first startup time and people
hopefully don't ask the same questions anymore.
At the same time, make more substitutions, also in oo_setup.resp.
Approved by: marcus (portsmgr)
2003-09-17 04:06:28 +00:00
Martin Blapp
839ed4a55f
Remove a dash in the pathname.
...
Approved by: marcus (portsmgr)
2003-09-16 06:50:17 +00:00
Martin Blapp
6b72d0c997
Make OO1.1RC working. Many thanks to kan for the debugging session
...
at the dev summit !
Approved by: joe (portsmgr)
2003-09-14 21:52:25 +00:00
Martin Blapp
465d311ec1
The install-path has been changed from OpenOffice.org-644
...
to OpenOffice.org-645.
2003-09-09 12:27:02 +00:00
Martin Blapp
1b8b186e62
libXft.a is not available. Do not link static for now.
2003-09-08 22:11:03 +00:00
Maho Nakata
3576941856
LD_LIBRARYN32_PATH -> LD_LIBRARY_PATH
...
Pointed out by: Sander Visek
2003-09-05 07:01:40 +00:00
Maho Nakata
6aaf0c8a60
Add current directory for LD_LIBRARY_PATH.
...
Some shared libraries libdbi645fi.so links against other libs and
otherwise, setup doesn't find necessary files and induce installation
error.
2003-09-04 00:21:14 +00:00
Maho Nakata
ea9ae85016
Very dirty ad hoc kludge for compilation with WITH_DEBUG=2 (debug option)
2003-09-02 21:42:20 +00:00
Maho Nakata
ad52f66a67
Add possible version info for FreeBSD's
...
native jdk1.4.x-p1 -p2 ... -p8
2003-09-02 21:40:15 +00:00
Maho Nakata
e5f6bf4279
remove unnessary -lstlport_gcc.
...
this flag prevents normal installtion procedure.
namely instsetoo/<something>/setup requires stlport_gcc,
which doesn't actually need stlport_gcc.
2003-08-30 06:12:31 +00:00
Maho Nakata
7988eb8020
Disable mozilla connectivity.
...
This patch is not needed anymore. informative purpose.
(mozilla 1.4 will be `official' and some time lag is needed for
enabling new mozilla)
obtained by Volker Quetschke
See for details:
http://www.openoffice.org/issues/show_bug.cgi?id=18066
2003-08-29 16:23:59 +00:00
Maho Nakata
f85d822d33
path for file in this patch was wrong.
2003-08-16 06:03:19 +00:00
Maho Nakata
55757c281c
Make this patch up-to-date
2003-08-15 23:54:41 +00:00
Maho Nakata
221d366d75
add --with-gxx-include-path especially for STLport,
...
and pass PTHREAD_CFLAGS, PTHREAD_LIBS for every compilation.
See http://www.openoffice.org/issues/show_bug.cgi?id=18062 for detail.
Obtained from Volker Quetschke
2003-08-15 22:39:12 +00:00
Maho Nakata
8a48e984cf
If you do not need mozilla connectivity, this patch might help you.
...
(currently we do not use it and should be removed later)
Obtained from Volker Quetschke
2003-08-15 22:38:44 +00:00
Maho Nakata
00e082d93f
/usr/include/sys/resource.h uses struct timeval
in the definition of
...
struct rusage. struct timeval is defined in /usr/include/sys/time.h,
but <sys/time.h> is not included in the <sys/resource.h> header file.
Obtained from Volker Quetschke
See http://www.openoffice.org/issues/show_bug.cgi?id=18065 for details.
reviewed: maho (for 4-STABLE and 5-CURRENT)
2003-08-15 22:37:43 +00:00
Maho Nakata
75b77255b8
workaround. not include pangox.aliases in the
...
installtion set (somehow?)
2003-08-15 22:36:56 +00:00
Maho Nakata
967a762714
THIRDPARTYLICENSEREADME.html is rested directory under html.
2003-08-15 22:36:24 +00:00
Maho Nakata
d32a5e2d09
The makefile.mk uses a ld to link the libraries, but ld fails to link with
...
-pthread. The correct sollution is to use $(LINK) which points to the
used gcc compiler. Unfortunately gcc doesn't understand --whole-archive and
--no-whole-archive. You have to use -Wl,-whole-archive and
-Wl,-no-whole-archive
instead. The following patch does this for FreeBSD, but maybe this should also
be done for the generic UNX case.
See http://www.openoffice.org/issues/show_bug.cgi?id=18064 for details.
Obtained from Volker Quetschke
2003-08-15 22:35:55 +00:00
Maho Nakata
ae099aec7b
Committed in the cws_srx645_ooo11rc3 CVS repo.
2003-08-15 22:33:40 +00:00
Martin Blapp
c6ce64e0ca
Hopefully fix the wchar header issues one last time. It's annyoing to
...
have changing includes paths with each new gcc import.
Submitted by: maho
2003-08-12 22:31:00 +00:00
Maho Nakata
af63e06d7c
1. update to fresh checkout of OpenOffice.org (1.1RC2)
...
tagged under cws_srx645_ooo11rc2
2. still broken with installation failure.
Reviewed by: mbr
2003-07-17 12:56:09 +00:00
Martin Blapp
adcf3d9e60
Add $CWD to $LD_LIBRARY_PATH as Linux does. This will make
...
the errors in setup.log go away.
2003-06-09 10:51:58 +00:00
Martin Blapp
5191c1d5a8
Upgrade to OO1.1 beta2.
2003-06-07 22:09:48 +00:00
Martin Blapp
cdf1ea0fbd
Fix breakage and remove redundant _LITTLE_ENDIAN defines for CURRENT only. Remove
...
unneeded include defines.
2003-05-08 18:41:13 +00:00
Martin Blapp
6a9d02491a
Fix breakage and remove redundant _LITTLE_ENDIAN defines. Remove
...
unneeded include defines.
2003-05-08 18:08:11 +00:00
Maho Nakata
e319abfdca
Fix debug patches, which were not correctly applied.
...
Submitted by: Hiromi Kimura <hiromi@tac.tsukuba.ac.jp>
2003-04-28 07:09:58 +00:00
Don Lewis
2dc75ff13e
FreeBSD doesn't use the same method of authenticating passwords that
...
Linux uses with its shadow password file. This patch was a no-op anyway
because of an earlier #ifdef in the source file. If the port needs this
functionality, it should be re-implemented using PAM.
Approved by: mbr
2003-04-22 04:56:56 +00:00
Don Lewis
7f10af3f5c
Port to __FreeBSD_version >= 500112 that now has getpw*_r() functions
...
that are incompatible with the older draft implementations supplied
with the OpenOffice source.
Approved by: mbr
2003-04-22 04:53:47 +00:00
Maho Nakata
1555c01115
1. Correct include path for instsetoo/util/openoffice.lst
...
Without it, licensing terms are not
copied and installation fails for some localizd build.
(affects patch-instsetoo+util+openoffice.lst and Makefile)
2. Added CJK Word 95/6.0/RTF import feature
(Other patches)
3. Bump port revision
By Takashi Ono <t_ono@hkfreak.net>
2003-04-19 01:47:29 +00:00
Maho Nakata
d468f94b27
Fix inappropreate menu item for Japanese.
...
Reported by: curvirgo and Hiromi Kimura <hiromi@tac.tsukuba.ac.jp>
Approved by: mbr
2003-04-17 13:01:55 +00:00
Maho Nakata
017645b96d
For GIF patent problem, remove some goodies.
...
However source distribution is still legal, so
this can be enabled by WITH_GIF_LZW_COMPRESSION=yes
Approved by: mbr (Martin Blapp)
2003-04-17 11:24:26 +00:00
Martin Blapp
97291070e5
Fix path of soffice binary.
...
Submitted by: Hiromi Kimura <hiromi@tac.tsukuba.ac.jp>
2003-04-16 06:51:35 +00:00
Martin Blapp
d34db2531e
Allow building the slave ports too.
...
Submitted by: maho
2003-04-12 15:27:26 +00:00
Martin Blapp
67ede1bc58
Remove USE_LINUXJDK and simplify set_soenv even more. Use native threads
...
instead of green threads.
2003-04-04 08:42:19 +00:00
Martin Blapp
c163578692
Same as in patch patch-registry+source+registry.cxx
...
This part was just wrong. mkstemp does return a file descriptor,
not a string. This could lead to crashes. MacOS will have the same
problems.
2003-04-03 22:17:17 +00:00
Martin Blapp
98853485fa
This part was just wrong. mkstemp does return a file descriptor,
...
not a string. This could lead to crashes. MacOS will have the same
problems.
2003-04-03 22:12:55 +00:00
Martin Blapp
c2b7b7a880
Remove redundant getpwuid_r from the patch. Build getpwuid_r part
...
for FreeBSD too.
2003-04-03 21:40:30 +00:00
Martin Blapp
adc446565d
Fix crash in Autopilot->Report.
2003-04-03 21:37:44 +00:00
Martin Blapp
48dd9981c1
This snapshot has a different path for the userdir.
2003-04-01 08:25:59 +00:00
Martin Blapp
36f042efc3
Update to srx644_ooo20030412.
2003-03-31 21:32:38 +00:00
Martin Blapp
a0ad4458c9
Readd previous deleted part. It is still needed for 4.x
2003-03-31 16:05:51 +00:00
Martin Blapp
9a6254b013
SOLARINI pointed to the wrong file. ssrx644.ini itself has still
...
Linux dependent stuff in the FreeBSD section. Clean this up.
Register the stlport lib.
2003-03-31 12:47:00 +00:00
Martin Blapp
52239d6688
Uups. Committed to the wrong dir.
...
Check for m_pLockfile != NULL to fix crash during startup if no lockfile
does exist at all (if we have no installed user directory)
2003-03-30 21:35:20 +00:00
Martin Blapp
7eb0e80874
Work around the issue that our jdk has no version number like 1.4.1_02.
...
It reports itself as release candidat: 1.4.1-p3.
This makes the jdk detection working.
Problem reported by: David Booth <wbooth@austin.rr.com>
2003-03-30 00:40:13 +00:00