The latest openoffice-bin package (32bit) wont start on amd64. The package installs /usr/bin/ooffice which calls /usr/lib/openoffice/program/soffice "$@" OpenOffice files are installed in /usr/lib32/openoffice/program, on AMD64 the /usr/lib is symlinked to /usr/lib64 Reproducible: Always Steps to Reproduce:
Works for me with app-office/openoffice-bin-2.3.0 on amd64. Seems to be fixed now: $ cat /usr/bin/ooffice #!/bin/sh export OOO_EXTRA_ARG='' unset PYTHONPATH /usr/lib32/openoffice/program/soffice "$@"
(In reply to comment #1) > Works for me with app-office/openoffice-bin-2.3.0 on amd64. Seems to be fixed > now: > > $ cat /usr/bin/ooffice > #!/bin/sh > export OOO_EXTRA_ARG='' > unset PYTHONPATH > /usr/lib32/openoffice/program/soffice "$@" > I just emerged app-office/openoffice-bin-2.3.0 yesterday and have this: $ cat /usr/bin/ooffice #!/bin/sh export OOO_EXTRA_ARG='' unset PYTHONPATH /usr/lib/openoffice/program/soffice "$@" $ ls -l /usr/bin/ooffice -rwxr-xr-x 1 root root 93 2007-09-17 20:42 /usr/bin/ooffice Editing oofice to match your example fixed this.
(In reply to comment #2) > (In reply to comment #1) > > Works for me with app-office/openoffice-bin-2.3.0 on amd64. Seems to be fixed > > now: > > > > $ cat /usr/bin/ooffice > > #!/bin/sh > > export OOO_EXTRA_ARG='' > > unset PYTHONPATH > > /usr/lib32/openoffice/program/soffice "$@" > > > I just emerged app-office/openoffice-bin-2.3.0 yesterday and have this: > $ cat /usr/bin/ooffice > #!/bin/sh > export OOO_EXTRA_ARG='' > unset PYTHONPATH > /usr/lib/openoffice/program/soffice "$@" > $ ls -l /usr/bin/ooffice > -rwxr-xr-x 1 root root 93 2007-09-17 20:42 /usr/bin/ooffice > > Editing oofice to match your example fixed this. > Yes that is already fixed, just re-emerge if you hit this