]> git.ipfire.org Git - ipfire-2.x.git/blob - lfs/xampp
HinzugefĆ¼gt:
[ipfire-2.x.git] / lfs / xampp
1 ###############################################################################
2 # This file is part of the IPCop Firewall. #
3 # #
4 # IPCop is free software; you can redistribute it and/or modify #
5 # it under the terms of the GNU General Public License as published by #
6 # the Free Software Foundation; either version 2 of the License, or #
7 # (at your option) any later version. #
8 # #
9 # IPCop is distributed in the hope that it will be useful, #
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
12 # GNU General Public License for more details. #
13 # #
14 # You should have received a copy of the GNU General Public License #
15 # along with IPCop; if not, write to the Free Software #
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
17 # #
18 # Makefiles are based on LFSMake, which is #
19 # Copyright (C) 2002 Rod Roard <rod@sunsetsystems.com> #
20 # #
21 ###############################################################################
22
23 ###############################################################################
24 # Definitions
25 ###############################################################################
26
27 include Config
28
29 VER = 1.5.1
30
31 THISAPP = xampp-linux-$(VER)
32 DL_FILE = $(THISAPP).tar.gz
33 DL_FROM = http://ovh.dl.sourceforge.net/sourceforge/xampp
34 DIR_APP = $(DIR_SRC)/$(THISAPP)
35 TARGET = $(DIR_INFO)/$(THISAPP)
36
37 ###############################################################################
38 # Top-level Rules
39 ###############################################################################
40
41 objects = $(DL_FILE) \
42 xampp-linux-devel-1.5.1.tar.gz \
43 PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz
44
45 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
46 xampp-linux-devel-$(VER).tar.gz = http://switch.dl.sourceforge.net/sourceforge/xampp/xampp-linux-devel-$(VER).tar.gz
47 PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz = http://switch.dl.sourceforge.net/sourceforge/xamppaddon/PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz
48
49 $(DL_FILE)_MD5 = baefcf7ac3629a641c7b75c547564a3f
50 xampp-linux-devel-$(VER).tar.gz_MD5 = e4ab1c867551a831ae6af38fa3c4dfd9
51 PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz_MD5 = 63171afe553fd557032407e1ba6af477
52
53 install : $(TARGET)
54
55 check : $(patsubst %,$(DIR_CHK)/%,$(objects))
56
57 download :$(patsubst %,$(DIR_DL)/%,$(objects))
58
59 md5 : $(subst %,%_MD5,$(objects))
60
61 dist:
62 make-packages.sh xampp $(THISAPP)-ipfire-beta-1
63
64 ###############################################################################
65 # Downloading, checking, md5sum
66 ###############################################################################
67
68 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
69 @$(CHECK)
70
71 $(patsubst %,$(DIR_DL)/%,$(objects)) :
72 @$(LOAD)
73
74 $(subst %,%_MD5,$(objects)) :
75 @$(MD5)
76
77 ###############################################################################
78 # Installation Details
79 ###############################################################################
80
81 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
82 @$(PREBUILD)
83 @rm -rf $(DIR_APP)
84 cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) -C /opt
85 cd $(DIR_SRC) && tar zxf $(DIR_DL)/xampp-linux-devel-$(VER).tar.gz -C /opt
86 cd $(DIR_SRC) && tar zxf $(DIR_DL)/PostGreSQL-AddOn-1.0-pgsql8.1.tar.gz -C /tmp
87 cd /tmp/PostGreSQL-AddOn-1.0-pgsql8.1 && ./INSTALL
88 rm -rf /tmp/PostGreSQL-AddOn-1.0-pgsql8.1
89 chown -R nobody.nobody /opt/lampp/htdocs
90 ln -s /opt/lampp/lib/mysql/libmysqlclient.* /usr/lib
91 ln -s /opt/lampp/lib/libpq.* /usr/lib
92 ldconfig
93 @rm -rf $(DIR_APP)
94 @$(POSTBUILD)