blob: df5725cf01df4f756f48d2d91d50b3b8dbc380f4 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-php/php/php-5.1.0_beta-r1.ebuild,v 1.1 2005/07/05 04:36:10 sebastian Exp $
PHPSAPI="cli"
MY_PV="5.1.0b2"
MY_PHP_P="php-${MY_PV}"
PHP_S="${WORKDIR}/${MY_PHP_P}"
PHP_PACKAGE=1
inherit php5-sapi-r3 eutils
DESCRIPTION="PHP Shell Interpreter"
LICENSE="PHP"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
DEPEND="$DEPEND"
RDEPEND="$RDEPEND"
PROVIDE="virtual/php"
SLOT="0"
PHP_INSTALLTARGETS="${PHP_INSTALLTARGETS} install-cli"
src_unpack() {
php5-sapi-r3_src_unpack
###########################################################################
# DO NOT ADD YOUR PATCHES HERE
#
# Please add your patches into the eclass, where they belong!
#
# Thanks,
# Stu
###########################################################################
}
src_compile () {
my_conf="--disable-cgi --enable-cli"
php5-sapi-r3_src_compile
}
|