blob: 5ea1eb65c698d2db70f1a5406eab52989d5076f1 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/php-4.0.5.ebuild,v 1.3 2001/05/15 21:30:02 achim Exp $
A=${PN}-4.0.5.tar.gz
S=${WORKDIR}/${PN}-4.0.5
DESCRIPTION="HTML embedded scripting language"
SRC_URI="http://www.php.net/distributions/${A}"
HOMEPAGE="http://www.php.net/"
DEPEND="virtual/glibc
>=sys-libs/zlib-1.1.3
>=dev-libs/gmp-3.1.1
>=media-libs/freetype-1.3.1
>=media-libs/jpeg-6b
>=media-libs/tiff-3.5.5
>=media-libs/libpng-1.0.7
>=media-libs/libgd-1.8.3
>=media-libs/t1lib-1.0.1
>=net-www/apache-ssl-1.3
pam? ( >=sys-libs/pam-0.75 )
readline? ( >=sys-libs/ncurses-5.1 >=sys-libs/readline-4.1 )
gettext? ( sys-devel/gettext )
gdbm? ( >=sys-libs/gdbm-1.8.0 )
berkdb? ( >=sys-libs/db-3 )
mysql? ( >=dev-db/mysql-3.23.26 )
odbc? ( >=dev-db/unixODBC-1.8.13 )
ldap? ( >=net-nds/openldap-1.2.11 )
postgres? ( >=dev-db/postgresql-7.1 )
X? ( virtual/x11 )
qt? ( x11-libs/qt-x11-2.3.0 )
xml? ( >=app-text/sablotron-0.44 )
imap? ( virtual/imap )"
src_compile() {
local myconf
if [ "`use readline`" ] ; then
myconf="--with-readline"
fi
if [ "`use pam`" ] ; then
myconf="$myconf --with-pam"
fi
if [ "`use gettext`" ] ; then
myconf="$myconf --with-gettext"
fi
if [ "`use gdbm`" ] ; then
myconf="$myconf --with-gdbm=/usr"
fi
if [ "`use berkdb`" ] ; then
myconf="$myconf --with-db3=/usr"
fi
if [ "`use mysql`" ] ; then
myconf="$myconf --with-mysql=/usr"
fi
if [ "`use postgres`" ] ; then
myconf="$myconf --with-pgsql=/usr"
fi
if [ "`use odbc`" ] ; then
myconf="$myconf --with-unixODBC=/usr"
fi
if [ "`use ldap`" ] ; then
myconf="$myconf --with-ldap"
fi
if [ "`use qt`" ] ; then
myconf="$myconf --with-qtdom"
fi
if [ "`use imap`" ] ; then
myconf="$myconf --with-imap"
fi
if [ "`use xml`" ] ; then
export LIBS="-lxmlparse -lxmltok"
myconf="$myconf --with-sablot=/usr --with-xml"
else
myconf="$myconf --disable-xml"
fi
LDFLAGS="$LDFLAGS -ltiff -ljpeg"
if [ "`use X`" ] ; then
myconf="$myconf --with-xpm-dir=/usr/X11R6"
LDFLAGS="$LDFLAGS -L/usr/X11R6/lib"
fi
./configure --enable-safe-mode --enable-ftp --enable-track-vars --with-gmp \
--enable-dbase --enable-sysvsem --enable-sysvshm --with-zlib=yes --enable-bcmath \
--enable-calendar --enable-versioning --enable-inline-optimization --enable-trans-sid \
--with-gd --with-ttf --with-t1lib --with-jpeg-dir=/usr/lib \
--with-config-file-path=`/usr/sbin/apxs -q SYSCONFDIR` \
--with-apxs="/usr/sbin/apxs -ltiff" --with-exec-dir="/usr/lib/apache/bin" $myconf
try make
}
src_install() {
cd ${S}
dodir /usr/lib/apache
cp .libs/libphp4.so ${D}/usr/lib/apache
dodir /etc/httpd
cp php.ini-dist ${D}/etc/httpd/php.ini
into /usr
dodoc CODING_STANDARDS FUNCTION_LIST.txt LICENSE
dodoc README.* TODO NEWS
}
pkg_config() {
. ${ROOT}/etc/rc.d/config/functions
if [ -f "${ROOT}/etc/httpd/httpd.conf" ]
then
# Activate PHP-Extension in httpd.conf
echo "Activate PHP in httpd.conf..."
cp ${ROOT}/etc/httpd/httpd.conf ${ROOT}/etc/httpd/httpd.conf.orig
sed -e "s/^#LoadModule php4_module/LoadModule php4_module/" \
-e "s/^#AddModule mod_php4.c/AddModule mod_php4.c/" \
-e "s/#AddType application\/x-httpd-php /AddType application\/x-httpd-php /" \
-e "s/#AddType application\/x-httpd-php-/AddType application\/x-httpd-php-/" \
${ROOT}/etc/httpd/httpd.conf.orig > ${ROOT}/etc/httpd/httpd.conf
fi
}
|