www/horde-base

2009-07-06 Thread Per olof Ljungmark

Hello,

I would be very interested in latest version of Horde, 3.3.4 I believe. 
Also, a fair number of the Horde apps are lagging. Any chances to see it 
happening?


Cheers,

--
per
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: www/horde-base and his dependencies

2009-05-04 Thread Alexander Leidinger
Quoting Vinicius Abrahao  (from Sun, 3 May 2009  
19:53:16 -0300):



Hi people,

I would like to know WHY this port has so many strange dependencies like GTK
and others Xlibs.


The gd port depends upon X11 stuff when xpm and fontconfig support is  
enabled. I don't know where you've got the GTK dependency from. For a  
server, add WITHOUT_X11=yes (I also have NO_X11=yes for compatibility  
reasons, in case something doesn't respect the WITHOUT_X11 one) to  
make.conf, this will disable the use of X11 related stuff in ports  
(you lose functionality you may or may not depend upon).


Bye,
Alexander.

--
Save a tree -- kill an ISO working group today.
-- Jason Zions

http://www.Leidinger.netAlexander @ Leidinger.net: PGP ID = B0063FE7
http://www.FreeBSD.org   netchild @ FreeBSD.org  : PGP ID = 72077137
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


www/horde-base and his dependencies

2009-05-03 Thread Vinicius Abrahao
Hi people,

I would like to know WHY this port has so many strange dependencies like GTK
and others Xlibs.

Thanks,
Vinnix
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: www/horde-base

2007-12-20 Thread Andrey Chernov
On Thu, Dec 20, 2007 at 12:21:35AM -0900, Beech Rintoul wrote:
> > --- usr/local/www/horde/lib/Horde/NLS.php   Sat Sep 29 17:22:46
> > 2007 +++ /usr/local/www/horde/lib/Horde/NLS.php  Thu Dec 20
> > 10:38:46 2007 @@ -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);
> >  }
> >
> > Regards,
> > Nicki
> 
> The problem has been fixed, update your ports tree and rebuild.

You need to use __FreeBSD_version check in your patch, since the bug 
itself is fixed in 7x and up.

-- 
http://ache.pp.ru/
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: www/horde-base

2007-12-20 Thread Nicki de Wet


- Original Message - 
From: "Jeremy Chadwick" <[EMAIL PROTECTED]>

To: "Nicki de Wet" <[EMAIL PROTECTED]>
Cc: 
Sent: Thursday, December 20, 2007 11:04 AM
Subject: Re: www/horde-base




http://lists.freebsd.org/pipermail/freebsd-ports/2007-December/045813.html



My apologies, I also saw the thread after posting. I've fixed it locally for 
now.


Regards,
Nicki 


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: www/horde-base

2007-12-20 Thread Beech Rintoul
On Wednesday 19 December 2007, Nicki de Wet said:
> The latest patch broke my horde, I get the following error when
> opening horde in the browser:
>
> Parse error: syntax error, unexpected T_STRING in
> /usr/local/www/horde/lib/Horde/NLS.php on line 122
>
> This is the file that was patched.
>
> Here is the patch file's contents:
> --- lib/Horde/NLS.php.orig  2007-09-29 07:22:46.0 -0800
> +++ lib/Horde/NLS.php   2007-12-18 11:16:03.0 -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);
>  }
>
> Here is what the file looks like now, obviously there were some
> funny characters: setlocale(LC_ALL, $lang_charset);
> }
> }
>  \xa0 \xa0 \xa0 \xa0/* avoid FreeBSD issapce(3) bug */
>  \xa0 \xa0 \xa0 \xa0if(NLS::getCharset() == "UTF-8"){
>  \xa0 \xa0 \xa0 \xa0 \xa0 \xa0setlocale(LC_CTYPE,"C");
>  \xa0 \xa0 \xa0 \xa0}
> @putenv('LANG=' . $lang_charset);
> @putenv('LANGUAGE=' . $lang_charset);
> }
>
>
>
> This is what the patch should look like;
> --- usr/local/www/horde/lib/Horde/NLS.php   Sat Sep 29 17:22:46
> 2007 +++ /usr/local/www/horde/lib/Horde/NLS.php  Thu Dec 20
> 10:38:46 2007 @@ -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);
>  }
>
> Regards,
> Nicki

The problem has been fixed, update your ports tree and rebuild.

Beech

-- 
---
Beech Rintoul - FreeBSD Developer - [EMAIL PROTECTED]
/"\   ASCII Ribbon Campaign  | FreeBSD Since 4.x
\ / - NO HTML/RTF in e-mail   | http://www.freebsd.org
 X  - NO Word docs in e-mail | Latest Release:
/ \  - http://www.FreeBSD.org/releases/6.2R/announce.html
---



___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: www/horde-base

2007-12-20 Thread Jeremy Chadwick
On Thu, Dec 20, 2007 at 10:40:02AM +0200, Nicki de Wet wrote:
> The latest patch broke my horde, I get the following error when opening horde 
> in the browser:

http://lists.freebsd.org/pipermail/freebsd-ports/2007-December/045813.html

-- 
| Jeremy Chadwickjdc at parodius.com |
| Parodius Networking   http://www.parodius.com/ |
| UNIX Systems Administrator  Mountain View, CA, USA |
| Making life hard for others since 1977.  PGP: 4BD6C0CB |

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


www/horde-base

2007-12-20 Thread Nicki de Wet
The latest patch broke my horde, I get the following error when opening horde 
in the browser:

Parse error: syntax error, unexpected T_STRING in 
/usr/local/www/horde/lib/Horde/NLS.php on line 122

This is the file that was patched.

Here is the patch file's contents:
--- lib/Horde/NLS.php.orig  2007-09-29 07:22:46.0 -0800
+++ lib/Horde/NLS.php   2007-12-18 11:16:03.0 -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);
 }

Here is what the file looks like now, obviously there were some funny 
characters:
setlocale(LC_ALL, $lang_charset);
}
}
 \xa0 \xa0 \xa0 \xa0/* avoid FreeBSD issapce(3) bug */
 \xa0 \xa0 \xa0 \xa0if(NLS::getCharset() == "UTF-8"){
 \xa0 \xa0 \xa0 \xa0 \xa0 \xa0setlocale(LC_CTYPE,"C");
 \xa0 \xa0 \xa0 \xa0}
@putenv('LANG=' . $lang_charset);
@putenv('LANGUAGE=' . $lang_charset);
}



This is what the patch should look like;
--- usr/local/www/horde/lib/Horde/NLS.php   Sat Sep 29 17:22:46 2007
+++ /usr/local/www/horde/lib/Horde/NLS.php  Thu Dec 20 10:38:46 2007
@@ -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);
 }

Regards,
Nicki
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "[EMAIL PROTECTED]"