diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2008-10-27 21:19:13 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2008-10-27 21:19:13 +0000 |
commit | af8f63a4cb11d4196da0241685f8f2d517e424c6 (patch) | |
tree | aafcd39ef775ad035b8516bf5ddd0524b946991a /www-apps/horde-groupware | |
parent | Added horde-gollem-1.0.4 (diff) | |
download | gentoo-2-af8f63a4cb11d4196da0241685f8f2d517e424c6.tar.gz gentoo-2-af8f63a4cb11d4196da0241685f8f2d517e424c6.tar.bz2 gentoo-2-af8f63a4cb11d4196da0241685f8f2d517e424c6.zip |
Added horde-groupware-1.2.
(Portage version: 2.1.4.5)
Diffstat (limited to 'www-apps/horde-groupware')
-rw-r--r-- | www-apps/horde-groupware/ChangeLog | 8 | ||||
-rw-r--r-- | www-apps/horde-groupware/horde-groupware-1.2.ebuild | 46 |
2 files changed, 53 insertions, 1 deletions
diff --git a/www-apps/horde-groupware/ChangeLog b/www-apps/horde-groupware/ChangeLog index 757ce04f534b..537f342426e8 100644 --- a/www-apps/horde-groupware/ChangeLog +++ b/www-apps/horde-groupware/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for www-apps/horde-groupware # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/horde-groupware/ChangeLog,v 1.6 2008/09/15 12:25:20 wrobel Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/horde-groupware/ChangeLog,v 1.7 2008/10/27 21:19:13 wrobel Exp $ + +*horde-groupware-1.2 (27 Oct 2008) + + 27 Oct 2008; Gunnar Wrobel <wrobel@gentoo.org> + +horde-groupware-1.2.ebuild: + Added horde-groupware-1.2. *horde-groupware-1.1.3 (15 Sep 2008) *horde-groupware-1.0.7 (15 Sep 2008) diff --git a/www-apps/horde-groupware/horde-groupware-1.2.ebuild b/www-apps/horde-groupware/horde-groupware-1.2.ebuild new file mode 100644 index 000000000000..02c2e158e4c2 --- /dev/null +++ b/www-apps/horde-groupware/horde-groupware-1.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/horde-groupware/horde-groupware-1.2.ebuild,v 1.1 2008/10/27 21:19:13 wrobel Exp $ + +HORDE_PN="${PN}" + +HORDE_APPLICATIONS="kronolith mnemo nag turba" + +inherit horde + +DESCRIPTION="Horde GroupWare" +HOMEPAGE="http://www.horde.org/" + +KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86" +IUSE="mysql postgres ldap oracle" + +DEPEND="" +RDEPEND="!www-apps/horde + virtual/php + >=www-apps/horde-pear-1.3 + dev-php/PEAR-Log + dev-php/PEAR-Mail_Mime + dev-php/PEAR-DB" + +pkg_setup() { + HORDE_PHP_FEATURES=" + session xml nls crypt iconv gd ssl ftp + $(use ldap && echo ldap) $(use oracle && echo oci8) + $(use mysql && echo mysql mysqli) $(use postgres && echo postgres) + " + horde_pkg_setup +} + +src_unpack() { + horde_src_unpack + cd "${S}" + chmod 600 scripts/sql/create.*.sql #137510 +} + +pkg_postinst() { + horde_pkg_postinst + elog "Horde requires PHP to have:" + elog " ==> 'short_open_tag enabled = On'" + elog " ==> 'magic_quotes_runtime set = Off'" + elog " ==> 'file_uploads enabled = On'" +} |