blob: a2a202d658614bbbc447332fef5f32a0e0ae61ca (
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
30
31
32
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/horde/horde-2.2.5.ebuild,v 1.5 2004/05/21 16:13:09 jhuebel Exp $
HORDE_PHP_FEATURES="nls"
inherit horde
DESCRIPTION="Horde Application Framework"
HOMEPAGE="http://www.horde.org/"
KEYWORDS="x86 ppc sparc alpha hppa amd64"
DEPEND=""
RDEPEND=">=dev-php/mod_php-4.1.0
>=sys-devel/gettext-0.10.40
>=dev-libs/libxml2-2.4.21
>=net-www/horde-pear-1.3"
src_install() {
horde_src_install
chmod 0000 test.php
}
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"
}
|