blob: 102992d5964b677d5ac2e7f638868e3711aac006 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/horde/horde-2.2.9.ebuild,v 1.7 2006/02/10 05:12:35 vapier Exp $
HORDE_PHP_FEATURES="nls session"
inherit horde
DESCRIPTION="Horde Application Framework"
HOMEPAGE="http://www.horde.org/"
KEYWORDS="alpha amd64 hppa ppc sparc x86"
IUSE="mysql"
DEPEND=""
RDEPEND="virtual/php
>=sys-devel/gettext-0.10.40
>=dev-libs/libxml2-2.4.21
>=www-apps/horde-pear-1.3
mysql? ( dev-php/PEAR-DB )"
pkg_postinst() {
horde_pkg_postinst
echo
einfo "Horde requires PHP to have:"
einfo " ==> 'short_open_tag enabled = On'"
einfo " ==> 'magic_quotes_runtime set = Off'"
einfo " ==> 'file_uploads enabled = On'"
einfo "Please edit /etc/php/apache2-php4/php.ini"
}
|