Use Get::set() and Post::set() instead of direct assignations of
[platal.git] / Makefile
CommitLineData
b6cdf7b4 1
0337d704 2# $Id: Makefile,v 1.5 2004/11/25 20:18:39 x99laine Exp $
3################################################################################
4# definitions
5
8fc4efa3 6VERSNUM := $(shell grep VERSION ChangeLog | head -1 | sed -e "s/VERSION //;s/ .*//")
7VERSTAG := $(shell grep VERSION ChangeLog | head -1 | grep 'XX' > /dev/null 2> /dev/null && echo 'beta')
5b677a86 8
8fc4efa3 9VERSION = $(VERSNUM)$(VERSTAG)
0337d704 10
11PKG_NAME = platal
12PKG_DIST = $(PKG_NAME)-$(VERSION)
13PKG_FILES = AUTHORS ChangeLog COPYING README Makefile
14PKG_DIRS = configs htdocs include install.d plugins po scripts templates upgrade
15
16VCS_FILTER = ! -name .arch-ids ! -name CVS
17
5594f3a9
FB
18define download
19@echo "Downloading $@ from $(DOWNLOAD_SRC)"
20wget $(DOWNLOAD_SRC) -O $@ -q || ($(RM) $@; exit 1)
21endef
22
0337d704 23################################################################################
24# global targets
25
26all: build
27
e97df22e 28build: core conf static banana wiki openid medals jquery
0337d704 29
cef8ceb2 30check:
1eaaa62d 31 @!(find . -name '*.php' -exec php -l {} ";" | grep -v 'No syntax errors detected')
cef8ceb2 32
fd48ab5f
FB
33test:
34 make -C core test
35
63528107 36q:
37 @echo -e "Code statistics\n"
38 @sloccount $(filter-out wiki/ spool/, $(wildcard */)) 2> /dev/null | egrep '^[a-z]*:'
39
5e73ff67 40%: %.in Makefile ChangeLog
0337d704 41 sed -e 's,@VERSION@,$(VERSION),g' $< > $@
42
8b944f3e
FB
43up: update
44update:
45 @git fetch && git rebase `git symbolic-ref HEAD | sed -e 's~refs/heads/~origin/~'` && git submodule update
46
98c7bd6a 47doc:
eecde6a3 48 @doxygen core/doc/doxygen.cfg
98c7bd6a 49
0337d704 50################################################################################
b66268df 51# targets
91f37c81 52
9380b1bf 53##
54## core
55##
56
7e846cdf 57core:
ba47d308 58 [ -d core/.git ] || ( git submodule init && git submodule update )
7e846cdf
FB
59 make -C core all
60
61##
62## conf
63##
64
5f0ecf6c 65conf: spool/templates_c spool/mails_c classes/platalglobals.php configs/platal.cron htdocs/.htaccess spool/conf spool/tmp spool/banana
9380b1bf 66
5f0ecf6c 67spool/templates_c spool/mails_c spool/uploads spool/conf spool/tmp spool/run spool/banana:
91f37c81 68 mkdir -p $@
69 chmod o+w $@
70
b6cdf7b4 71htdocs/.htaccess: htdocs/.htaccess.in Makefile
72 @REWRITE_BASE="/~$$(id -un)"; \
73 test "$$REWRITE_BASE" = "/~web" && REWRITE_BASE="/"; \
74 sed -e "s,@REWRITE_BASE@,$$REWRITE_BASE,g" $< > $@
9380b1bf 75
76##
e97df22e
VZ
77## static content
78##
e5b254d5
FB
79static: htdocs/javascript/core.js htdocs/javascript@VERSION
80
81htdocs/javascript/core.js:
82 cd htdocs/javascript/ && ln -s ../../core/htdocs/javascript/core.js
e97df22e
VZ
83
84%@VERSION: % Makefile ChangeLog
85 cd $< && rm -f $(VERSION) && ln -sf . $(VERSION)
86
87##
9380b1bf 88## wiki
89##
90
91WIKI_NEEDS = \
92 wiki/local/farmconfig.php \
93 wiki/pub/skins/empty \
94 wiki/cookbook/e-protect.php \
95 spool/wiki.d \
96 htdocs/uploads \
97 htdocs/wiki \
98
99wiki: get-wiki build-wiki
100
101build-wiki: $(WIKI_NEEDS) | get-wiki
102
c31c4e6a 103htdocs/uploads:
9380b1bf 104 cd htdocs && ln -sf ../spool/uploads
105
106htdocs/wiki:
107 cd htdocs && ln -sf ../wiki/pub wiki
108
109
91f37c81 110spool/wiki.d:
b66268df 111 mkdir -p $@
112 chmod o+w $@
2c799249 113 cd $@ && ln -sf ../../include/wiki/wiki.d/* .
91f37c81 114
9380b1bf 115
4887dc90 116wiki/cookbook/e-protect.php:
2c799249 117 cd wiki/cookbook && ln -sf ../../include/wiki/e-protect.php
0337d704 118
796aea34 119wiki/local/farmconfig.php:
2c799249 120 cd wiki/local/ && ln -sf ../../include/wiki/farmconfig.php
b66268df 121
122wiki/pub/skins/empty:
2c799249 123 cd wiki/pub/skins/ && ln -sf ../../../include/wiki/empty
b66268df 124
9380b1bf 125
d207e9f5 126get-wiki:
127 @if ! test -d wiki; then \
91a3c521
FB
128 wget http://www.pmwiki.org/pub/pmwiki/pmwiki-latest.tgz; \
129 tar -xzvf pmwiki-latest.tgz; \
130 rm pmwiki-latest.tgz; \
131 mv pmwiki-* wiki; \
bba430bf
AA
132 fi
133
134##
135## openid
136##
137
a1af4a99 138openid: get-openid spool/openid/store
bba430bf
AA
139
140# There is no obvious way to automatically use the latest version
91a3c521
FB
141OPENID_VERSION = 2.2.2
142OPENID_COMMIT = 782224d
bba430bf 143get-openid:
b69727b4 144 @if ! test -d include/Auth; then \
91a3c521
FB
145 wget --no-check-certificate \
146 https://github.com/openid/php-openid/tarball/$(OPENID_VERSION) \
147 -O php-openid-$(OPENID_VERSION).tar.gz; \
148 tar -xzf php-openid-$(OPENID_VERSION).tar.gz; \
149 mv openid-php-openid-$(OPENID_COMMIT)/Auth include/; \
150 rm php-openid-$(OPENID_VERSION).tar.gz; \
151 rm -r openid-php-openid-$(OPENID_COMMIT); \
d207e9f5 152 fi
153
a1af4a99
AA
154spool/openid/store:
155 mkdir -p $@
156 chmod o+w $@
157
9380b1bf 158##
159## banana
160##
c3b581dc 161banana: htdocs/images/banana htdocs/css/banana.css
1fccdc24 162htdocs/images/banana: banana-sub
bdf8bbb2 163 cd $(@D) && ln -snf ../../banana/img $(@F)
08dbcb5a 164
1fccdc24 165htdocs/css/banana.css: banana-sub
bdf8bbb2 166 cd $(@D) && ln -snf ../../banana/css/style.css $(@F)
5b677a86 167
1fccdc24
FB
168banana-sub:
169 make -C banana
5b677a86 170
bd6a5fe3
VZ
171##
172## Medal thumbnails
173##
174MEDAL_PICTURES=$(wildcard htdocs/images/medals/*.jpg)
175MEDAL_THUMBNAILS=$(subst /medals/,/medals/thumb/,$(MEDAL_PICTURES))
176
177medals: $(MEDAL_THUMBNAILS)
5b677a86 178
bd6a5fe3
VZ
179$(MEDAL_THUMBNAILS): $(subst /medals/thumb/,/medals/,$(@F))
180 convert -resize x50 $(subst /medals/thumb/,/medals/,$@) $@
08dbcb5a 181
8c5c6d64 182##
183## jquery
184##
3cbf5a5c 185JQUERY_VERSION=1.5
21fb012b 186JQUERY_PLUGINS=color form
5594f3a9
FB
187JQUERY_PLUGINS_PATHES=$(addprefix htdocs/javascript/jquery.,$(addsuffix .js,$(JQUERY_PLUGINS)))
188
aa0909f4 189JQUERY_UI_VERSION=1.8.7
b7bad73e 190JQUERY_UI=core widget tabs datepicker
889d9807 191JQUERY_UI_PATHES=$(addprefix htdocs/javascript/jquery.ui.,$(addsuffix .js,$(JQUERY_UI)))
16019034 192
aa0909f4
FB
193JQUERY_TMPL_VERSION=vBeta1.0.0
194JQUERY_TMPL_PATH=htdocs/javascript/jquery.tmpl.js
195
150a0a91
SJ
196JSTREE_VERSION=1.0rc2
197JSTREE_PATH=htdocs/javascript/jquery.jstree.js
198
dd916657
VZ
199# TODO: jquery.autocomplete.js should rather be downloaded from an official source. The issue
200# is that the version we use is not available anymore on the Internet, and the latest version
201# we could use is not backward compatible with our current code.
b7bad73e
FB
202jquery: htdocs/javascript/jquery.xorg.js htdocs/javascript/jquery.ui.xorg.js $(JSTREE_PATH)
203
204htdocs/javascript/jquery.xorg.js: htdocs/javascript/jquery.js $(JQUERY_PLUGINS_PATHES) $(JQUERY_TMPL_PATH) htdocs/javascript/jquery.autocomplete.js
205 cat $^ > $@
206
207htdocs/javascript/jquery.ui.xorg.js: $(JQUERY_UI_PATHES) htdocs/javascript/jquery.ui.datepicker-fr.js
208 cat $^ > $@
5594f3a9 209
889d9807
FB
210htdocs/javascript/jquery-$(JQUERY_VERSION).min.js: DOWNLOAD_SRC = http://jquery.com/src/$(@F)
211htdocs/javascript/jquery-$(JQUERY_VERSION).min.js:
07ea8c0e 212 @-rm htdocs/javascript/jquery-*.min.js
5594f3a9 213 @$(download)
8c5c6d64 214
889d9807 215htdocs/javascript/jquery.js: htdocs/javascript/jquery-$(JQUERY_VERSION).min.js
07ea8c0e 216 ln -snf $(<F) $@
889d9807 217
21fb012b 218$(JQUERY_PLUGINS_PATHES): DOWNLOAD_SRC = http://plugins.jquery.com/files/$(@F)_0.txt
5594f3a9 219$(JQUERY_PLUGINS_PATHES):
07ea8c0e 220 @-rm htdocs/javascript/jquery.ui*.$*.js
5594f3a9 221 @$(download)
de99248c 222
1b50c20c 223htdocs/javascript/jquery.ui-$(JQUERY_UI_VERSION).%.js: DOWNLOAD_SRC = http://jquery-ui.googlecode.com/svn/tags/$(JQUERY_UI_VERSION)/ui/minified/jquery.ui.$*.min.js
889d9807 224htdocs/javascript/jquery.ui-$(JQUERY_UI_VERSION).%.js:
16019034
FB
225 @$(download)
226
905ab104 227$(JQUERY_UI_PATHES): htdocs/javascript/jquery.ui.%.js: htdocs/javascript/jquery.ui-$(JQUERY_UI_VERSION).%.js
07ea8c0e 228 ln -snf $(<F) $@
889d9807 229
2c101eaa 230htdocs/javascript/jquery.tmpl-$(JQUERY_TMPL_VERSION).js: DOWNLOAD_SRC = https://github.com/jquery/jquery-tmpl/raw/$(JQUERY_TMPL_VERSION)/jquery.tmpl.js --no-check-certificate
aa0909f4
FB
231htdocs/javascript/jquery.tmpl-$(JQUERY_TMPL_VERSION).js:
232 @-rm htdocs/javascript/jquery.tmpl*.js
233 @$(download)
234
235$(JQUERY_TMPL_PATH): htdocs/javascript/jquery.tmpl-$(JQUERY_TMPL_VERSION).js
236 ln -snf $(<F) $@
237
150a0a91
SJ
238$(JSTREE_PATH):
239 rm -f htdocs/javascript/jquery.jstree-*.js
240 mkdir spool/tmp/jstree
241 wget http://jstree.googlecode.com/files/jsTree.v.$(JSTREE_VERSION).zip -O spool/tmp/jstree/jquery.jstree-$(JSTREE_VERSION).zip
242 unzip spool/tmp/jstree/jquery.jstree-$(JSTREE_VERSION).zip -d spool/tmp/jstree/
243 mv -f spool/tmp/jstree/themes/default/style.css htdocs/css/jstree.css
244 mv -f spool/tmp/jstree/themes/default/d.png htdocs/images/jstree.png
245 mv -f spool/tmp/jstree/jquery.jstree.js htdocs/javascript/jquery.jstree-$(JSTREE_VERSION).js
ac639b4c
PC
246 sed -i -e 's/"d\.png"/"..\/images\/jstree.png"/' htdocs/css/jstree.css
247 sed -i -e 's/"throbber\.gif"/"..\/images\/wait.gif"/' htdocs/css/jstree.css
248 sed -i -e 's/#ffffee/inherit/' htdocs/css/jstree.css
150a0a91
SJ
249 ln -snf jquery.jstree-$(JSTREE_VERSION).js htdocs/javascript/jquery.jstree.js
250 rm -Rf spool/tmp/jstree
251
252
c5644a5b
FB
253##
254## lists rpc
255##
256start-listrpc: spool/run
257 sudo -u list /sbin/start-stop-daemon --pidfile spool/run/listrpc.pid -m -b -x $$PWD/bin/lists.rpc.py --start
258 @sleep 2
259 @sudo -u list kill -0 $$(cat spool/run/listrpc.pid)
260
261start-listrpc-fg: spool/run
262 sudo -u list ./bin/lists.rpc.py
263
264stop-listrpc:
265 -sudo -u list /sbin/start-stop-daemon --pidfile spool/run/listrpc.pid --stop
266 @-rm -f spool/run/listrpc.pid
267
268restart-listrpc: stop-listrpc start-listrpc
269
0337d704 270################################################################################
b66268df 271
c3b581dc
FB
272.PHONY: build dist clean core http* check test
273.PHONY: wiki build-wiki
274.PHONY: banana banana-sub htdocs/images/banana htdocs/css/banana.css
c5644a5b 275.PHONY: start-listrpc start-listrpc-fg stop-listrpc restart-listrpc
98c7bd6a 276.PHONY: up update doc