Re: WINE and Hebrew

2010-09-14 Thread Amichai Rotman
Sorry - I am lost...
Is there a script, a package or a GUI to do this?

.::.

Amichai Rotman

Registered Linux User#: 201192 [http://counter.li.org/]
Registered Ubuntu User #12851 [http://ubuntucounter.geekosophical.net]


.::.




On Mon, Sep 13, 2010 at 22:00, Ehud Karni e...@unix.mvs.co.il wrote:

 On Mon, 13 Sep 2010 21:28:33 Amichai Rotman wrote:
 
  Is't there a way to make Wine Hebrew Enabled?

 Wine is Hebrew enabled but you have to tell it that you want Hebrew
 to be your default language by using environment variables.

 I use the following (text files):

  wine-LANG -

 #!/bin/sh

 set -a

 ##  LANG=he_IL.utf8
 LANG=he_IL.iso8859-8

 LC_CTYPE=$LANG
 LC_NUMERIC=C
 LC_TIME=C
 LC_COLLATE=$LANG
 LC_MONETARY=$LANG
 LC_MESSAGES=$LANG
 LC_PAPER=$LANG
 LC_NAME=$LANG
 LC_ADDRESS=$LANG
 LC_TELEPHONE=C
 LC_MEASUREMENT=C
 LC_IDENTIFICATION=$LANG
 LC_ALL=$LANG

 set +a

  end of wine-LANG (by Ehud) 


 -- wine-lang-exec (modification of wineboot) --

 #!/bin/sh
 #
 # Wrapper script to start a Winelib application once it is installed
 #
 # Copyright (C) 2002 Alexandre Julliard
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 # License as published by the Free Software Foundation; either
 # version 2.1 of the License, or (at your option) any later version.
 #
 # This library is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
 # License along with this library; if not, write to the Free Software
 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 #

 # determine the app Winelib library name
 appname=`basename $0 .exe`.exe

  set LANG environment for wine programs (Ehud Karni)
 . wine-LANG

 # first try explicit WINELOADER
 if [ -x $WINELOADER ]; then exec $WINELOADER $appname $@; fi

 # then default bin directory
 if [ -x /usr/bin/wine ]; then exec /usr/bin/wine $appname $@; fi

 # now try the directory containing $0
 appdir=
 case $0 in
  */*)
# $0 contains a path, use it
appdir=`dirname $0`
;;
  *)
# no directory in $0, search in PATH
saved_ifs=$IFS
IFS=:
for d in $PATH
do
  IFS=$saved_ifs
  if [ -x $d/$0 ]; then appdir=$d; break; fi
done
;;
 esac
 if [ -x $appdir/wine ]; then exec $appdir/wine $appname $@; fi

 # finally look in PATH
 exec wine $appname $@

  end of wine-lang-exec (by Ehud) 



 Both files should be in /usr/bin, you should replace the following
 scripts by (hard) linking it to `wine-lang-exec':
   winepath winemine winefile winedbg wineconsole winecfg wineboot
   winebrowser uninstaller regsvr32 regedit progman notepad msiexec

  Where will I find those M$ Hebrew fonts?

 Copy it from a M$Windows installation.

 Ehud.


 --
  Ehud Karni   Tel: +972-3-7966-561  /\
  Mivtach - Simon  Fax: +972-3-7976-561  \ /  ASCII Ribbon Campaign
  Insurance agencies   (USA) voice mail and   X   Against   HTML   Mail
  http://www.mvs.co.il  FAX:  1-815-5509341  / \
  GnuPG: 98EA398D http://www.keyserver.net/Better Safe Than Sorry

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: WINE and Hebrew

2010-09-13 Thread Ehud Karni
On Sat, 11 Sep 2010 11:21:04 Amichai Rotman wrote:

 I am trying to install a Hebrew Win32 app (Lupa) using Wine - but the Hebrew
 letters show up as Gibberish...

 How do I add Hebrew support?

I don't know what is `Lupa', but I have some experience with Wine.

My suggestion is to copy all the (Hebrew) M$Windows fonts to the
/usr/share/wine/fonts/ directory.

Ehud.


--
 Ehud Karni   Tel: +972-3-7966-561  /\
 Mivtach - Simon  Fax: +972-3-7976-561  \ /  ASCII Ribbon Campaign
 Insurance agencies   (USA) voice mail and   X   Against   HTML   Mail
 http://www.mvs.co.il  FAX:  1-815-5509341  / \
 GnuPG: 98EA398D http://www.keyserver.net/Better Safe Than Sorry

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: WINE and Hebrew

2010-09-13 Thread Amichai Rotman
Is't there a way to make Wine Hebrew Enabled?

Where will I find those M$ Hebrew fonts?

.::.

Amichai Rotman

Registered Linux User#: 201192 [http://counter.li.org/]
Registered Ubuntu User #12851 [http://ubuntucounter.geekosophical.net]


.::.




On Mon, Sep 13, 2010 at 20:19, Ehud Karni e...@unix.mvs.co.il wrote:

 On Sat, 11 Sep 2010 11:21:04 Amichai Rotman wrote:
 
  I am trying to install a Hebrew Win32 app (Lupa) using Wine - but the
 Hebrew
  letters show up as Gibberish...
 
  How do I add Hebrew support?

 I don't know what is `Lupa', but I have some experience with Wine.

 My suggestion is to copy all the (Hebrew) M$Windows fonts to the
 /usr/share/wine/fonts/ directory.

 Ehud.


 --
  Ehud Karni   Tel: +972-3-7966-561  /\
  Mivtach - Simon  Fax: +972-3-7976-561  \ /  ASCII Ribbon Campaign
  Insurance agencies   (USA) voice mail and   X   Against   HTML   Mail
  http://www.mvs.co.il  FAX:  1-815-5509341  / \
  GnuPG: 98EA398D http://www.keyserver.net/Better Safe Than Sorry

 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: WINE and Hebrew

2010-09-13 Thread Ehud Karni
On Mon, 13 Sep 2010 21:28:33 Amichai Rotman wrote:

 Is't there a way to make Wine Hebrew Enabled?

Wine is Hebrew enabled but you have to tell it that you want Hebrew
to be your default language by using environment variables.

I use the following (text files):

 wine-LANG -

#!/bin/sh

set -a

##  LANG=he_IL.utf8
LANG=he_IL.iso8859-8

LC_CTYPE=$LANG
LC_NUMERIC=C
LC_TIME=C
LC_COLLATE=$LANG
LC_MONETARY=$LANG
LC_MESSAGES=$LANG
LC_PAPER=$LANG
LC_NAME=$LANG
LC_ADDRESS=$LANG
LC_TELEPHONE=C
LC_MEASUREMENT=C
LC_IDENTIFICATION=$LANG
LC_ALL=$LANG

set +a

 end of wine-LANG (by Ehud) 


-- wine-lang-exec (modification of wineboot) --

#!/bin/sh
#
# Wrapper script to start a Winelib application once it is installed
#
# Copyright (C) 2002 Alexandre Julliard
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
#

# determine the app Winelib library name
appname=`basename $0 .exe`.exe

 set LANG environment for wine programs (Ehud Karni)
. wine-LANG

# first try explicit WINELOADER
if [ -x $WINELOADER ]; then exec $WINELOADER $appname $@; fi

# then default bin directory
if [ -x /usr/bin/wine ]; then exec /usr/bin/wine $appname $@; fi

# now try the directory containing $0
appdir=
case $0 in
  */*)
# $0 contains a path, use it
appdir=`dirname $0`
;;
  *)
# no directory in $0, search in PATH
saved_ifs=$IFS
IFS=:
for d in $PATH
do
  IFS=$saved_ifs
  if [ -x $d/$0 ]; then appdir=$d; break; fi
done
;;
esac
if [ -x $appdir/wine ]; then exec $appdir/wine $appname $@; fi

# finally look in PATH
exec wine $appname $@

 end of wine-lang-exec (by Ehud) 



Both files should be in /usr/bin, you should replace the following
scripts by (hard) linking it to `wine-lang-exec':
   winepath winemine winefile winedbg wineconsole winecfg wineboot
   winebrowser uninstaller regsvr32 regedit progman notepad msiexec

 Where will I find those M$ Hebrew fonts?

Copy it from a M$Windows installation.

Ehud.


--
 Ehud Karni   Tel: +972-3-7966-561  /\
 Mivtach - Simon  Fax: +972-3-7976-561  \ /  ASCII Ribbon Campaign
 Insurance agencies   (USA) voice mail and   X   Against   HTML   Mail
 http://www.mvs.co.il  FAX:  1-815-5509341  / \
 GnuPG: 98EA398D http://www.keyserver.net/Better Safe Than Sorry

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


WINE and Hebrew

2010-09-11 Thread Amichai Rotman
Hey There,

I am trying to install a Hebrew Win32 app (Lupa) using Wine - but the Hebrew
letters show up as Gibberish...

How do I add Hebrew support?

.::.

Amichai Rotman

Registered Linux User#: 201192 [http://counter.li.org/]
Registered Ubuntu User #12851 [http://ubuntucounter.geekosophical.net]


.::.
___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: WINE and Hebrew

2010-09-11 Thread Ori Idan
and while we are on this topic of Lupa, does anyone knows of a Linux
alternative that produces the same format?

-- 
Ori Idan


2010/9/11 Amichai Rotman amic...@iglu.org.il

 Hey There,

 I am trying to install a Hebrew Win32 app (Lupa) using Wine - but the
 Hebrew letters show up as Gibberish...

 How do I add Hebrew support?

 .::.

 Amichai Rotman

 Registered Linux User#: 201192 [http://counter.li.org/]
 Registered Ubuntu User #12851 [http://ubuntucounter.geekosophical.net]


 
 .::.


 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: WINE and Hebrew

2010-09-11 Thread Amichai Rotman
even better!

.::.

Amichai Rotman

Registered Linux User#: 201192 [http://counter.li.org/]
Registered Ubuntu User #12851 [http://ubuntucounter.geekosophical.net]


.::.




On Sat, Sep 11, 2010 at 12:13, Ori Idan o...@helicontech.co.il wrote:

 and while we are on this topic of Lupa, does anyone knows of a Linux
 alternative that produces the same format?

 --
 Ori Idan


 2010/9/11 Amichai Rotman amic...@iglu.org.il

 Hey There,

 I am trying to install a Hebrew Win32 app (Lupa) using Wine - but the
 Hebrew letters show up as Gibberish...

 How do I add Hebrew support?

 .::.

 Amichai Rotman

 Registered Linux User#: 201192 [http://counter.li.org/]
 Registered Ubuntu User #12851 [http://ubuntucounter.geekosophical.net]


 
 .::.


 ___
 Linux-il mailing list
 Linux-il@cs.huji.ac.il
 http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il



___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: wine and hebrew input

2007-11-12 Thread Shachar Shemesh
Yedidyah Bar-David wrote:
 Following the thread from a few months ago, I now tried the proposed
 solution and it did not work.

 Debian etch, wine 0.9.25-2.1, all LC* and LANG are he_IL.utf8.
   
what is the output of locale and of locale -a?

Shachar

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: wine and hebrew input

2007-11-12 Thread Yedidyah Bar-David
On Mon, Nov 12, 2007 at 12:53:16PM +0200, Shachar Shemesh wrote:
 Yedidyah Bar-David wrote:
  Following the thread from a few months ago, I now tried the proposed
  solution and it did not work.
 
  Debian etch, wine 0.9.25-2.1, all LC* and LANG are he_IL.utf8.

 what is the output of locale and of locale -a?

OK, sorry :-(

There was some error message about missing file or something like that.

I did dpkg-reconfigure locales, selected he_IL.UTF-8, and then things
got better.

Now when I open ie6 (of ie4linux), it does allow typing Hebrew in the
address bar, but does not show the chars themselves - probably a missing
font. I did not mind that much, entered the page I wanted, and now I get
in wine's console many messages like this:
err:syslevel:_EnterSysLevel (0x7ee4b320, level 2): Holding 0x7ed3d960, level 3. 
Expect deadlock!
and then
err:syslevel:_CheckNotSysLevel Holding lock 0x7ed3d960 level 3
and then it gets stuck (as expected ?).

At this point I started writing this email, then decided to try
apt-get install msttcorefonts
and everything works!

Thanks.
-- 
Didi


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



wine and hebrew input

2007-11-11 Thread Yedidyah Bar-David
Following the thread from a few months ago, I now tried the proposed
solution and it did not work.

Debian etch, wine 0.9.25-2.1, all LC* and LANG are he_IL.utf8.
When I type a Hebrew key, I get in wine's console:
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0CE3 
(hebrew_dalet) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=53,scanCode=1F,keycode=27,state=2000)

Any idea?

Thanks,
-- 
Didi


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: solution: wine and hebrew input

2007-09-30 Thread Erez D
you are correct, i had some locale still set to en_US (you can see in my
previous post)
setting it all to he_IL, makes it work withought setting the LC_ALL to
anything

On 9/26/07, Shachar Shemesh [EMAIL PROTECTED] wrote:

 Erez D wrote:
 
  first, LANG=he_IL.utf8 is not enough
  LC_ALL must be also be set to he_IL.utf8 (otherwise you get '?'
  instead of letters)
  to be sure, do the following:
 Can you please reverify this point after you have fixed your locale
 settings? I somewhat doubt (and if so, it's a bug with either Wine or
 IE4LIN) that this should be the case.

 Shachar



Re: solution: wine and hebrew input

2007-09-27 Thread Gilboa Davara
On Wed, 2007-09-26 at 11:43 +0200, Erez D wrote:
 hi
[snip]
 another issue is that one gets no input at all (not even '?') when
 typing hebrew
 if this is a 64bit OS (like mine), see to it that you
 have /usr/lib32/locale
 if you dont, which is probably the case, do: 
 'ln -s /usr/lib/locale /usr/lib32/'
 
 now i have working hebrew input under wine.
 

As far as I know the '?' problem was a regression in wine 0.941-3 and
was fixed by 0.9.44.
At least on Fedora 7 and CentOS5 (EPEL-testing) it works just fine.
(with LANG=he_IL)

- Gilboa


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



solution: wine and hebrew input

2007-09-26 Thread Erez D
hi

i saw some time ago people writing that one can not enter hebrew in IE4LINUX
here is how is solved my hebrew input problems under wine:


first, LANG=he_IL.utf8 is not enough
LC_ALL must be also be set to he_IL.utf8 (otherwise you get '?' instead of
letters)
to be sure, do the following:

export LANG=he_IL.utf8
export LC_CTYPE=en_US.utf8
export LC_NUMERIC=he_IL.utf8
export LC_TIME=en_US.utf8
export LC_COLLATE=he_IL.utf8
export LC_MONETARY=he_IL.utf8
export LC_MESSAGES=en_US.utf8
export LC_PAPER=he_IL.utf8
export LC_NAME=he_IL.utf8
export LC_ADDRESS=he_IL.utf8
export LC_TELEPHONE=he_IL.utf8
export LC_MEASUREMENT=he_IL.utf8
export LC_IDENTIFICATION=he_IL.utf8
export LC_ALL=he_IL.utf8


another issue is that one gets no input at all (not even '?') when typing
hebrew
if this is a 64bit OS (like mine), see to it that you have /usr/lib32/locale
if you dont, which is probably the case, do:
'ln -s /usr/lib/locale /usr/lib32/'

now i have working hebrew input under wine.

erez.


Re: solution: wine and hebrew input

2007-09-26 Thread Shachar Shemesh
Erez D wrote:

 first, LANG=he_IL.utf8 is not enough
 LC_ALL must be also be set to he_IL.utf8 (otherwise you get '?'
 instead of letters)
 to be sure, do the following:
Can you please reverify this point after you have fixed your locale
settings? I somewhat doubt (and if so, it's a bug with either Wine or
IE4LIN) that this should be the case.

Shachar

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Wine in Hebrew

2005-02-03 Thread Diego Iastrubni
Try running the app with
LC_CTYPE=he_IL.ISO-8859-8 wine app.exe
Be warned that the version which is shiped with debian has no BiDi support.

ik wrote:
Hi List,
No matter what I'm trying to do, I'm unable to make Wine to run Hebrew programs.
Instead of Hebrew I see question marks or Latin letters.
My latest attempts where setting the following:
Default = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8
DefaultFixed = fixed
DefaultSerif = -*-david-*-*-*-*-*-*-*-*-*-*-iso8859-8
DefaultSansSerif = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8
And still without any luck.
My Wine is from the debian package:
dpkg -l | grep wine
ii  libwine0.0.20041019-1 Windows Emulator (Library)
ii  libwine-cil0.3-4  WINE bindings for Mono
ii  wine   0.0.20041019-1 Windows Emulator (Binary Emulator)
ii  wine-doc   0.0.20041019-1 Windows Emulator (Documentation)
ii  wine-utils 0.0.20041019-1 Windows Emulator (Utilities)
ii  winesetuptk0.7-1.1Windows Emulator 

Thank you very much for any help on this matter,
Ido
 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


Re: Wine in Hebrew

2005-02-03 Thread ik
First of all thank you for all the replies.

my LANG is set on he_IL.UTF-8
and even when I change it into he_IL.ISO8859-8 the problem remains.
Please note that it also applies on LC_CTYPE.

I Will compile WINE and try from there.

On Thursday 03 February 2005 01:10, Nir Misgav wrote:
 The debian package is old, you can have a new version from the Wine
 download page.
 You can use the wine-tools tool, and install through it some MS fonts
 like arial. It will also help you install some softwares like IE and
 MSOffice 2000.
 I used it to install IE on debian, and I'm having no troubles with Hebrew.
 
 see: http://wiki.jswindle.com/index.php/Winetools
 be aware that wintools does not support the newest wine version yet.
 
 (sorry diego, I accidently mailed it to you instead of to the list)
 
 On Wed, 02 Feb 2005 23:01:42 +0200, Diego Iastrubni [EMAIL PROTECTED] wrote:
  Try running the app with
 
  LC_CTYPE=he_IL.ISO-8859-8 wine app.exe
 
  Be warned that the version which is shiped with debian has no BiDi support.
 
 
  ik wrote:
 
  Hi List,
  
  No matter what I'm trying to do, I'm unable to make Wine to run Hebrew 
  programs.
  Instead of Hebrew I see question marks or Latin letters.
  
  My latest attempts where setting the following:
  Default = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8
  DefaultFixed = fixed
  DefaultSerif = -*-david-*-*-*-*-*-*-*-*-*-*-iso8859-8
  DefaultSansSerif = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8
  
  And still without any luck.
  
  My Wine is from the debian package:
  dpkg -l | grep wine
  ii  libwine0.0.20041019-1 Windows Emulator (Library)
  ii  libwine-cil0.3-4  WINE bindings for Mono
  ii  wine   0.0.20041019-1 Windows Emulator (Binary Emulator)
  ii  wine-doc   0.0.20041019-1 Windows Emulator (Documentation)
  ii  wine-utils 0.0.20041019-1 Windows Emulator (Utilities)
  ii  winesetuptk0.7-1.1Windows Emulator
  
  Thank you very much for any help on this matter,
  
  Ido
  
  
 
 
 

Thank you again for the help,

Ido
-- 
Had the silly thing in reverse.
Duck Dodgers in Babylon 5:Midnight on the Firing Line

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Wine in Hebrew

2005-02-03 Thread Shachar Shemesh
ik wrote:
First of all thank you for all the replies.
my LANG is set on he_IL.UTF-8
and even when I change it into he_IL.ISO8859-8 the problem remains.
Please note that it also applies on LC_CTYPE.
I Will compile WINE and try from there.
 

Be sure to have freefonts-dev on your machine. In general, run apt-get 
build-dep wine before you start. Will save you lots of headaches later on.

Also, be sure to read 
http://www.winehq.org/?issue=218#How%20To%20Set%20Up%20BiDi%20Support. 
Installing icu-dev on Debian MAY prove enough for you. In any case, 
don't take the no-shared advice given there - it doesn't work.

 Shachar
--
Shachar Shemesh
Lingnu Open Source Consulting ltd.
http://www.lingnu.com/
=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


Wine in Hebrew

2005-02-02 Thread ik
Hi List,

No matter what I'm trying to do, I'm unable to make Wine to run Hebrew programs.
Instead of Hebrew I see question marks or Latin letters.

My latest attempts where setting the following:
Default = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8
DefaultFixed = fixed
DefaultSerif = -*-david-*-*-*-*-*-*-*-*-*-*-iso8859-8
DefaultSansSerif = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8

And still without any luck.

My Wine is from the debian package:
dpkg -l | grep wine
ii  libwine0.0.20041019-1 Windows Emulator (Library)
ii  libwine-cil0.3-4  WINE bindings for Mono
ii  wine   0.0.20041019-1 Windows Emulator (Binary Emulator)
ii  wine-doc   0.0.20041019-1 Windows Emulator (Documentation)
ii  wine-utils 0.0.20041019-1 Windows Emulator (Utilities)
ii  winesetuptk0.7-1.1Windows Emulator 

Thank you very much for any help on this matter,

Ido
-- 
Everybody has a right to be stupid, but some people abuse the privilege.
Joseph Stalin

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Wine in Hebrew

2005-02-02 Thread Diego Iastrubni
Try running the app with
LC_CTYPE=he_IL.ISO-8859-8 wine app.exe
Be warned that the version which is shiped with debian has no BiDi support.

ik wrote:
Hi List,
No matter what I'm trying to do, I'm unable to make Wine to run Hebrew programs.
Instead of Hebrew I see question marks or Latin letters.
My latest attempts where setting the following:
Default = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8
DefaultFixed = fixed
DefaultSerif = -*-david-*-*-*-*-*-*-*-*-*-*-iso8859-8
DefaultSansSerif = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8
And still without any luck.
My Wine is from the debian package:
dpkg -l | grep wine
ii  libwine0.0.20041019-1 Windows Emulator (Library)
ii  libwine-cil0.3-4  WINE bindings for Mono
ii  wine   0.0.20041019-1 Windows Emulator (Binary Emulator)
ii  wine-doc   0.0.20041019-1 Windows Emulator (Documentation)
ii  wine-utils 0.0.20041019-1 Windows Emulator (Utilities)
ii  winesetuptk0.7-1.1Windows Emulator 

Thank you very much for any help on this matter,
Ido
 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]


Re: Wine in Hebrew

2005-02-02 Thread Nir Misgav
The debian package is old, you can have a new version from the Wine
download page.
You can use the wine-tools tool, and install through it some MS fonts
like arial. It will also help you install some softwares like IE and
MSOffice 2000.
I used it to install IE on debian, and I'm having no troubles with Hebrew.

see: http://wiki.jswindle.com/index.php/Winetools
be aware that wintools does not support the newest wine version yet.

(sorry diego, I accidently mailed it to you instead of to the list)

On Wed, 02 Feb 2005 23:01:42 +0200, Diego Iastrubni [EMAIL PROTECTED] wrote:
 Try running the app with

 LC_CTYPE=he_IL.ISO-8859-8 wine app.exe

 Be warned that the version which is shiped with debian has no BiDi support.


 ik wrote:

 Hi List,
 
 No matter what I'm trying to do, I'm unable to make Wine to run Hebrew 
 programs.
 Instead of Hebrew I see question marks or Latin letters.
 
 My latest attempts where setting the following:
 Default = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8
 DefaultFixed = fixed
 DefaultSerif = -*-david-*-*-*-*-*-*-*-*-*-*-iso8859-8
 DefaultSansSerif = -culmus-*-*-*-*-*-*-*-*-*-*-*-iso8859-8
 
 And still without any luck.
 
 My Wine is from the debian package:
 dpkg -l | grep wine
 ii  libwine0.0.20041019-1 Windows Emulator (Library)
 ii  libwine-cil0.3-4  WINE bindings for Mono
 ii  wine   0.0.20041019-1 Windows Emulator (Binary Emulator)
 ii  wine-doc   0.0.20041019-1 Windows Emulator (Documentation)
 ii  wine-utils 0.0.20041019-1 Windows Emulator (Utilities)
 ii  winesetuptk0.7-1.1Windows Emulator
 
 Thank you very much for any help on this matter,
 
 Ido
 
 

 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word unsubscribe in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]



=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word unsubscribe in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Wine and hebrew windows

1999-11-09 Thread Micha Feigin

i was wondering, before i spend several hours downloading and cinfiguring
wine, whether it can run hebrew versions of windows programs?
i tried it at the time with win 3.11 (I currently, hopefully not long run
a 486) and got a message that it was the wrong version of windows.
Also, does anyone have any experaince with running microsoft visual studio
under wine?
thanx
[EMAIL PROTECTED]


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Wine and hebrew windows

1999-11-09 Thread Eran Man


Micha Feigin wrote:
 
 i was wondering, before i spend several hours downloading and cinfiguring
 wine, whether it can run hebrew versions of windows programs?
 i tried it at the time with win 3.11 (I currently, hopefully not long run
 a 486) and got a message that it was the wrong version of windows.
 Also, does anyone have any experaince with running microsoft visual studio
 under wine?

Just tried it with the latest (October) WINE release (visual C++
6.0). 
The IDE actually came up, and even managed to load C files from the
"recent files" menu, but I couldn't load files or projects in any
other way, and eventually it crashed :-(
Anyway I prefer XEmacs... 

 thanx
 [EMAIL PROTECTED]
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word "unsubscribe" in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Wine and hebrew windows

1999-11-09 Thread Micha Feigin



On Tue, 9 Nov 1999, Eran Man wrote:

 
 Micha Feigin wrote:
  
  i was wondering, before i spend several hours downloading and cinfiguring
  wine, whether it can run hebrew versions of windows programs?
  i tried it at the time with win 3.11 (I currently, hopefully not long run
  a 486) and got a message that it was the wrong version of windows.
  Also, does anyone have any experaince with running microsoft visual studio
  under wine?
 
 Just tried it with the latest (October) WINE release (visual C++
 6.0). 
 The IDE actually came up, and even managed to load C files from the
 "recent files" menu, but I couldn't load files or projects in any
 other way, and eventually it crashed :-(
 Anyway I prefer XEmacs... 

Well, I also prefer xemacs, but the exercise defenition (for some of the
courses) demands visual studio, so I need either a method to export the
linux source and makefile to visual studio, or to work on it in the first
place :(
The code is exportable, because its supposed to be command line programs
which don't use any specific unix functions (AFAIK fork etc. wont work in
micsoft).
the problem is to export the make file to microsoft visual c++ project
file.
Anyone did this (not by importing each file by hand into the project?)
Thanx
[EMAIL PROTECTED]
   thanx
  [EMAIL PROTECTED]
  
  =
  To unsubscribe, send mail to [EMAIL PROTECTED] with
  the word "unsubscribe" in the message body, e.g., run the command
  echo unsubscribe | mail [EMAIL PROTECTED]
 
 =
 To unsubscribe, send mail to [EMAIL PROTECTED] with
 the word "unsubscribe" in the message body, e.g., run the command
 echo unsubscribe | mail [EMAIL PROTECTED]
 


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]