]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - lfs/php
Postfix-Konfiguration funktioniert.
[people/pmueller/ipfire-2.x.git] / lfs / php
CommitLineData
7b6b8153 1###############################################################################
7b6b8153 2# #
70df8302
MT
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7b6b8153 7# it under the terms of the GNU General Public License as published by #
70df8302 8# the Free Software Foundation, either version 3 of the License, or #
7b6b8153
MT
9# (at your option) any later version. #
10# #
70df8302 11# This program is distributed in the hope that it will be useful, #
7b6b8153
MT
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
70df8302 17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
7b6b8153
MT
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
f5679937 27VER = 5.2.4
7b6b8153
MT
28
29THISAPP = php-$(VER)
30DL_FILE = $(THISAPP).tar.bz2
31DL_FROM = $(URL_IPFIRE)
32DIR_APP = $(DIR_SRC)/$(THISAPP)
33TARGET = $(DIR_INFO)/$(THISAPP)
7b6b8153
MT
34
35###############################################################################
36# Top-level Rules
37###############################################################################
38
27b8cc24 39objects = $(DL_FILE) idn-0.1.tgz
7b6b8153
MT
40
41$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
27b8cc24 42idn-0.1.tgz = $(DL_FROM)/idn-0.1.tgz
7b6b8153 43
f5679937 44$(DL_FILE)_MD5 = 55c97a671fdabf462cc7a82971a656d2
27b8cc24 45idn-0.1.tgz_MD5 = ef8635ec22348325a76abd2abddca4a1
7b6b8153
MT
46
47install : $(TARGET)
48
49check : $(patsubst %,$(DIR_CHK)/%,$(objects))
50
51download :$(patsubst %,$(DIR_DL)/%,$(objects))
52
53md5 : $(subst %,%_MD5,$(objects))
54
55dist:
56 @$(PAK)
57
58###############################################################################
59# Downloading, checking, md5sum
60###############################################################################
61
62$(patsubst %,$(DIR_CHK)/%,$(objects)) :
63 @$(CHECK)
64
65$(patsubst %,$(DIR_DL)/%,$(objects)) :
66 @$(LOAD)
67
68$(subst %,%_MD5,$(objects)) :
69 @$(MD5)
70
71###############################################################################
72# Installation Details
73###############################################################################
74
75$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
76 @$(PREBUILD)
27b8cc24
MT
77 @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/package.xml && \
78 cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
7b6b8153 79 cd $(DIR_APP) && sed -i 's/const char \*errpfx,/const DB_ENV *dbenv, & const/' ext/dba/dba_db4.c
f5679937
MT
80 cd $(DIR_APP) && ./configure --prefix=/usr \
81 --sysconfdir=/etc \
82 --with-apxs2 \
83 --enable-force-cgi-redirect \
84 --enable-discard-path \
85 --enable-fastcgi \
86 --with-config-file-path=/etc \
87 --with-openssl \
88 --with-kerberos \
89 --with-pcre-regex=/usr \
90 --with-zlib \
91 --enable-bcmath \
92 --with-bz2 \
93 --enable-calendar \
94 --with-curl \
95 --with-curlwrappers \
96 --enable-dba=shared \
97 --with-gdbm \
98 --with-db4 \
99 --with-inifile \
100 --with-flatfile \
101 --enable-exif \
102 --enable-ftp \
103 --with-openssl-dir=/usr \
104 --with-gd=/usr \
105 --with-jpeg-dir=/usr \
106 --with-png-dir=/usr \
107 --with-zlib-dir=/usr \
108 --with-freetype-dir=/usr \
109 --with-gettext \
110 --with-gmp \
111 --enable-mbstring \
112 --with-mysql \
113 --with-mysql-sock=/var/run/mysql \
114 --with-ncurses \
115 --with-pdo-mysql \
116 --without-pdo-sqlite \
117 --with-readline \
118 --enable-sockets \
119 --with-xsl \
120 --with-iconv
c8ead4a5 121 cd $(DIR_APP) && make $(MAKETUNING)
7b6b8153
MT
122 cd $(DIR_APP) && make install
123 cd $(DIR_APP) && install -v -m644 php.ini-recommended /etc/php.ini
27b8cc24 124 -grep -v libphp5.so < /etc/httpd/conf/httpd.conf > /etc/httpd/conf/httpd.conf.bak
9297899c 125 mv -f /etc/httpd/conf/httpd.conf.bak /etc/httpd/conf/httpd.conf
27b8cc24
MT
126 cd $(DIR_SRC) && tar xfz $(DIR_DL)/idn-0.1.tgz
127 -rm -f $(DIR_SRC)/package.xml
128 cd $(DIR_SRC)/idn-* && phpize
129 cd $(DIR_SRC)/idn-* && ./configure --prefix=/usr --with-idn
130 cd $(DIR_SRC)/idn-* && make
131 cd $(DIR_SRC)/idn-* && make install
132 @rm -rf $(DIR_APP) $(DIR_SRC)/idn-* $(DIR_SRC)/package.xml
7b6b8153 133 @$(POSTBUILD)