blob: 5ba34a5f107c073d170873dd99b2f71a7d3b0a25 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/php/php-5.0_beta1-r1.ebuild,v 1.5 2004/01/08 06:25:10 robbat2 Exp $
PHPSAPI="cli"
MY_P="php-5.0.0b1"
inherit php eutils
#need to override SRC_URI, the beta isn't available from the usual url which is defined in the eclass
SRC_URI="http://us3.php.net/distributions/php-5.0.0b1.tar.bz2"
IUSE="${IUSE} readline"
DESCRIPTION="PHP Shell Interpreter"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa"
DEPEND="${DEPEND}
readline? ( >=sys-libs/ncurses-5.1 >=sys-libs/readline-4.1 )
truetype? ( >=media-libs/t1lib-5.0.0 )"
RDEPEND="${RDEPEND}"
EXCLUDE_DB4_FIX=1
EXCLUDE_PEAR_FIX=1
src_compile() {
use readline && myconf="${myconf} --with-readline"
myconf="${myconf} \
--disable-cgi \
--enable-cli \
--enable-embed"
php_src_compile
}
src_install() {
installtargets="${installtargets} install-cli"
php_src_install
#embed hack..
exeinto /usr/lib/
doexe .libs/libphp5.so
# php executable is located in ./sapi/cli/
exeinto /usr/bin
doexe sapi/cli/php
}
pkg_postinst() {
php_pkg_postinst
einfo "This is a CLI only build."
einfo "You can not use it on a webserver."
}
pkg_preinst() {
php_pkg_preinst
}
|