diff options
author | Beech Rintoul <beech@FreeBSD.org> | 2007-12-19 00:04:50 +0000 |
---|---|---|
committer | Beech Rintoul <beech@FreeBSD.org> | 2007-12-19 00:04:50 +0000 |
commit | d4f17c6e1a9a4af46bc40cefe30f13c2ccbbd37a (patch) | |
tree | 9d01a6badedafa8d00b115c3f598ccf8d72ba544 /www/horde-base | |
parent | 73dbd9eec06adf737ed35675a2db13ca42a0ff11 (diff) | |
download | ports-d4f17c6e1a9a4af46bc40cefe30f13c2ccbbd37a.tar.gz ports-d4f17c6e1a9a4af46bc40cefe30f13c2ccbbd37a.zip |
Notes
Diffstat (limited to 'www/horde-base')
-rw-r--r-- | www/horde-base/Makefile | 1 | ||||
-rw-r--r-- | www/horde-base/files/patch-lib_Horde_NLS.php | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/www/horde-base/Makefile b/www/horde-base/Makefile index ddcf639cd4bf..a680116737b8 100644 --- a/www/horde-base/Makefile +++ b/www/horde-base/Makefile @@ -8,6 +8,7 @@ PORTNAME= horde DISTVERSIONPREFIX= DISTVERSION= 3.1.5 +PORTREVISION= 1 CATEGORIES= www PKGNAMEPREFIX= PKGNAMESUFFIX= -base diff --git a/www/horde-base/files/patch-lib_Horde_NLS.php b/www/horde-base/files/patch-lib_Horde_NLS.php new file mode 100644 index 000000000000..8e157c276647 --- /dev/null +++ b/www/horde-base/files/patch-lib_Horde_NLS.php @@ -0,0 +1,13 @@ +--- lib/Horde/NLS.php.orig 2007-09-29 07:22:46.000000000 -0800 ++++ lib/Horde/NLS.php 2007-12-18 11:16:03.000000000 -0900 +@@ -119,6 +119,10 @@ + setlocale(LC_ALL, $lang_charset); + } + } ++ /* avoid FreeBSD issapce(3) bug */ ++ if(NLS::getCharset() == "UTF-8"){ ++ setlocale(LC_CTYPE,"C"); ++ } + @putenv('LANG=' . $lang_charset); + @putenv('LANGUAGE=' . $lang_charset); + } |