SHA256
1
0
forked from pool/wine

- Updated to 1.8-rc4 codefreeze snapshot

- bugfixes only
- winetricks updated

OBS-URL: https://build.opensuse.org/package/show/Emulators/wine?expand=0&rev=329
This commit is contained in:
2015-12-13 12:31:00 +00:00
committed by Git OBS Bridge
parent 741211136f
commit 29ac3a4549
7 changed files with 95 additions and 22 deletions

View File

@@ -8584,6 +8584,9 @@ load_xmllite()
*) w_die "sorry, xmllite install not yet implemented for language $LANG" ;;
esac
# Doesn't install in newer versions:
w_set_winver winxp
if w_workaround_wine_bug 16013
then
# Find instructions to create this file in dlls/wintrust/tests/crypt.c
@@ -8605,6 +8608,8 @@ load_xmllite()
de*) w_try "$WINE" WindowsXP-KB915865-v11-x86-DEU.exe $W_UNATTENDED_SLASH_Q ;;
ja*) w_try "$WINE" WindowsXP-KB915865-v11-x86-JPN.exe $W_UNATTENDED_SLASH_Q ;;
esac
w_unset_winver
}
#----------------------------------------------------------------
@@ -8994,6 +8999,40 @@ load_fakejapanese()
#----------------------------------------------------------------
w_metadata fakejapanese_ipamona fonts \
title="Creates aliases for Japanese fonts using IPAMona fonts" \
publisher="Jun Kobayashi" \
year="2008"
load_fakejapanese_ipamona()
{
w_call ipamona
# Aliases to set:
# MS UI Gothic --> IPAMonaUIGothic
# MS Gothic ( ゴシック) --> IPAMonaGothic
# MS PGothic ( Pゴシック) --> IPAMonaPGothic
# MS Mincho ( 明朝) --> IPAMonaMincho
# MS PMincho ( P明朝) --> IPAMonaPMincho
jpname_msgothic="$(echo " ゴシック" | iconv -f utf8 -t cp932)"
jpname_mspgothic="$(echo " Pゴシック" | iconv -f utf8 -t cp932)"
jpname_msmincho="$(echo " 明朝" | iconv -f utf8 -t cp932)"
jpname_mspmincho="$(echo " P明朝" | iconv -f utf8 -t cp932)"
w_register_font_replacement "MS UI Gothic" "IPAMonaUIGothic"
w_register_font_replacement "MS Gothic" "IPAMonaGothic"
w_register_font_replacement "MS PGothic" "IPAMonaPGothic"
w_register_font_replacement "MS Mincho" "IPAMonaMincho"
w_register_font_replacement "MS PMincho" "IPAMonaPMincho"
w_register_font_replacement "$jpname_msgothic" "IPAMonaGothic"
w_register_font_replacement "$jpname_mspgothic" "IPAMonaPGothic"
w_register_font_replacement "$jpname_msmincho" "IPAMonaMincho"
w_register_font_replacement "$jpname_mspmincho" "IPAMonaPMincho"
}
#----------------------------------------------------------------
w_metadata fakekorean fonts \
title="Creates aliases for Korean fonts using Baekmuk fonts" \
publisher="Wooderart Inc. / kldp.net" \
@@ -9060,6 +9099,33 @@ load_fontfix()
#----------------------------------------------------------------
w_metadata ipamona fonts \
title="IPAMona Japanese fonts" \
publisher="Jun Kobayashi" \
year="2008" \
media="download" \
file1="opfc-ModuleHP-1.1.1_withIPAMonaFonts-1.0.8.tar.gz" \
installed_file1="$W_FONTSDIR_WIN/ipag-mona.ttf" \
homepage="http://www.geocities.jp/ipa_mona/"
load_ipamona()
{
w_download http://www.geocities.jp/ipa_mona/$file1 57dd13ab58c0005d3ee2932539e4987ab0242bc7
cd "$W_TMP"
gunzip -dc "$W_CACHE/$W_PACKAGE/$file1" | tar -xf -
w_try mv *IPAMonaFonts*/fonts/*.ttf "$W_FONTSDIR_UNIX"
w_register_font ipagui-mona.ttf "IPAMonaUIGothic"
w_register_font ipag-mona.ttf "IPAMonaGothic"
w_register_font ipagp-mona.ttf "IPAMonaPGothic"
w_register_font ipam-mona.ttf "IPAMonaMincho"
w_register_font ipamp-mona.ttf "IPAMonaPMincho"
}
#----------------------------------------------------------------
w_metadata liberation fonts \
title="Red Hat Liberation fonts (Sans, Serif, Mono)" \
publisher="Red Hat" \