blob: 832a70fdb61a26536b18ecbf2de239a437602e7a (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/php/php-4.3.2-r3.ebuild,v 1.3 2003/09/08 04:45:56 msterret Exp $
PHPSAPI="cli"
inherit php eutils
IUSE="${IUSE} readline"
DESCRIPTION="PHP Shell Interpreter"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~arm ~hppa ~mips"
DEPEND="${DEPEND}
readline? ( >=sys-libs/ncurses-5.1 >=sys-libs/readline-4.1 )
ncurses? ( >=sys-libs/ncurses-5.1 )"
RDEPEND="${RDEPEND}"
src_compile() {
# Readline and Ncurses are CLI PHP only
use ncurses || use readline && use_ncurses="--with-" || use_ncurses="--without-"
myconf="${myconf} `use_with readline`"
myconf="${myconf} ${use_ncurses}-ncurses"
myconf="${myconf} \
--disable-cgi \
--enable-cli"
php_src_compile
}
src_install() {
installtargets="${installtargets} install-cli"
php_src_install
# 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
}
|