diff options
author | jylefort <jylefort@FreeBSD.org> | 2006-11-12 02:38:56 +0800 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2006-11-12 02:38:56 +0800 |
commit | fe12c7051c1d6125133333f86c7afd4f5915a746 (patch) | |
tree | caa8f4864187ecebac91b556c9c0e9d0df2a5c54 | |
parent | 82e4f7b42f9194ace2b473d852bb27aab7780bcb (diff) | |
download | freebsd-ports-gnome-fe12c7051c1d6125133333f86c7afd4f5915a746.tar.gz freebsd-ports-gnome-fe12c7051c1d6125133333f86c7afd4f5915a746.tar.zst freebsd-ports-gnome-fe12c7051c1d6125133333f86c7afd4f5915a746.zip |
Répare l'affichage des accents avec les locales UTF-8.
-rw-r--r-- | french/belote/Makefile | 1 | ||||
-rw-r--r-- | french/belote/files/belote.in | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/french/belote/Makefile b/french/belote/Makefile index 6552893c96aa..008b2c27450f 100644 --- a/french/belote/Makefile +++ b/french/belote/Makefile @@ -7,6 +7,7 @@ PORTNAME= belote PORTVERSION= 20061109 +PORTREVISION= 1 CATEGORIES= french games java MASTER_SITES= http://coincher.free.fr/ DISTNAME= belote diff --git a/french/belote/files/belote.in b/french/belote/files/belote.in index e3fdb55b46ac..373df1553aef 100644 --- a/french/belote/files/belote.in +++ b/french/belote/files/belote.in @@ -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 |