1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00

Répare l'affichage des accents avec les locales UTF-8.

This commit is contained in:
Jean-Yves Lefort 2006-11-11 18:38:56 +00:00
parent f34fc0967a
commit 9e6069dbc1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=177062
2 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= belote
PORTVERSION= 20061109
PORTREVISION= 1
CATEGORIES= french games java
MASTER_SITES= http://coincher.free.fr/
DISTNAME= belote

View File

@ -1,6 +1,12 @@
#!/bin/sh
# $Id$
if [ -n "$LANG" ]; then
# Pour une raison inconnue, les accents ne sont pas affichés
# avec les locales UTF-8. Changeons donc UTF-8 en ISO8859-15.
export LANG=`echo "$LANG" | sed -e 's|\.UTF-8|.ISO8859-15|'`
fi
mkdir -p ~/.belote || exit 1
ln -sf %%DATADIR%%/data.bin ~/.belote || exit 1