blob: 5e0c9805a5e9ae0ae93eacca4d159e061cb740d9 (
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
|
# 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.0.4-r1.ebuild,v 1.4 2005/06/11 13:27:21 kloeri Exp $
PHPSAPI="cli"
MY_PHP_P="php-${PV}"
PHP_S="${WORKDIR}/${MY_PHP_P}"
PHP_PACKAGE=1
inherit php5-sapi-r2 eutils
DESCRIPTION="PHP Shell Interpreter"
LICENSE="PHP"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
DEPEND="$DEPEND"
RDEPEND="$RDEPEND"
PROVIDE="virtual/php"
SLOT="0"
PHP_INSTALLTARGETS="${PHP_INSTALLTARGETS} install-cli"
src_unpack() {
php5-sapi-r2_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-r2_src_compile
}
|