4 use ExtUtils::MakeMaker;
6 # Add a few more targets.
11 install:: extra_install
12 pure_install:: extra_install
14 VER=$(shell perl -e '$$_=<>;print m/\((.*?)\)/'<debian/changelog)
16 # Parameterized programs used by Makefile.
20 # Additional configurable path variables.
21 W3M_CGI_BIN?=$(PREFIX)/lib/w3m/cgi-bin
22 SYSCONFDIR?=/etc/ikiwiki
23 MANDIR?=$(PREFIX)/share/man
25 tflag=$(shell if [ -n "$$NOTAINT" ] && [ "$$NOTAINT" != 1 ]; then printf -- "-T"; fi)
26 extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-d:NYTProf"; fi)
27 outprogs=ikiwiki.out ikiwiki-transition.out ikiwiki-calendar.out ikiwiki-comment.out
28 scripts=ikiwiki-update-wikilist ikiwiki-makerepo
29 sysconfdir_scripts=ikiwiki-mass-rebuild ikiwiki-update-wikilist
30 shebang_scripts=$(shell $(FIND) . -type f \( -name '*.in' -o -name '*.cgi' -o -name '*.pm' -o -name '*.pm.example' -o -name '*.t' -o -name '*.setup' -o -name 'ikiwiki-comment' -o -name 'ikiwiki-mass-rebuild' -o -name 'ikiwiki-update-wikilist' -o -name 'gitremotes' -o -name 'mdwn2man' -o -name 'pm_filter' -o -name 'po2wiki' -o -name 'externaldemo' \))
32 PROBABLE_INST_LIB=$(shell \\
33 if [ "$(INSTALLDIRS)" = "perl" ]; then \\
34 echo $(INSTALLPRIVLIB); \\
35 elif [ "$(INSTALLDIRS)" = "site" ]; then \\
36 echo $(INSTALLSITELIB); \\
37 elif [ "$(INSTALLDIRS)" = "vendor" ]; then \\
38 echo $(INSTALLVENDORLIB); \\
43 ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < $< > $@
47 HOME=/home/me $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.in --dumpsetup ikiwiki.setup
49 extra_build: perl_shebangs $(outprogs) ikiwiki.setup docwiki sysconfdir
50 ./mdwn2man ikiwiki 1 doc/usage.mdwn > ikiwiki.man
51 ./mdwn2man ikiwiki-mass-rebuild 8 doc/ikiwiki-mass-rebuild.mdwn > ikiwiki-mass-rebuild.man
52 ./mdwn2man ikiwiki-makerepo 1 doc/ikiwiki-makerepo.mdwn > ikiwiki-makerepo.man
53 ./mdwn2man ikiwiki-transition 1 doc/ikiwiki-transition.mdwn > ikiwiki-transition.man
54 ./mdwn2man ikiwiki-update-wikilist 1 doc/ikiwiki-update-wikilist.mdwn > ikiwiki-update-wikilist.man
55 ./mdwn2man ikiwiki-calendar 1 doc/ikiwiki-calendar.mdwn > ikiwiki-calendar.man
56 ./mdwn2man ikiwiki-comment 1 doc/ikiwiki-comment.mdwn > ikiwiki-comment.man
58 $(PERL) -pi.bkp -e "s/Version:.*/Version: $(VER)/" ikiwiki.spec
59 rm -f ikiwiki.spec.bkp
62 $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.in --setup docwiki.setup --refresh
64 perl_shebangs: pm_to_blib
65 ifneq "$(PERL)" "/usr/bin/perl"
67 for file in $(shebang_scripts); do \
68 $(PERL) -pe "s|^#!/usr/bin/perl\b|#!$(PERL)| if 1" < $$file > "$$file.new"; \
69 [ -x $$file ] && chmod +x "$$file.new"; \
70 mv -f "$$file.new" $$file; \
75 ifneq "$(PERL)" "/usr/bin/perl"
77 for file in $(shebang_scripts); do \
78 $(PERL) -pe "s|^#!$(PERL)\b|#!/usr/bin/perl| if 1" < $$file > "$$file.new"; \
79 [ -x $$file ] && chmod +x "$$file.new"; \
80 mv -f "$$file.new" $$file; \
85 $(PERL) -pi -e "s|\"/etc/ikiwiki|\"$(SYSCONFDIR)|g" $(sysconfdir_scripts)
87 extra_clean: perl_shebangs_clean
88 $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.in --setup docwiki.setup --clean
89 rm -f *.man $(outprogs) ikiwiki.setup plugins/*.pyc
90 rm -fr t/tmp t/manual/*/git/ t/manual/*/html/ t/tinyblog/.ikiwiki/ t/tinypodcast/.ikiwiki/
94 git checkout po ikiwiki.spec
96 # Joey uses this before committing.
97 myclean: clean reset-generated
100 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
102 for dir in `$(FIND) underlays -follow -mindepth 1 -type d | $(SED) -e 's|^underlays/||'`; do \
103 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
104 for file in `$(FIND) underlays/$$dir -follow -maxdepth 1 -type f ! -name jquery.js ! -name jquery-ui.css ! -name jquery-ui.js ! -name jquery.tmpl.js`; do \
105 if ! cp -pRL $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir 2>/dev/null; then \
106 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
111 # The directive docs become their own special underlay.
112 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive
114 for file in doc/ikiwiki/directive/*; do \
115 if [ -f "$$file" ]; then \
116 if ! cp -pRL $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive 2>/dev/null; then \
117 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive; \
122 # Themes have their base.css (if present) and then
123 # style.css appended to the normal one.
125 for theme in themes/*; do \
126 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme; \
127 for file in $$theme/*; do \
128 if echo "$$file" | grep -q style.css; then \
129 (cat doc/style.css; cat $$theme/base.css 2>/dev/null || :; cat $$file) > $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme/style.css; \
130 elif echo "$$file" | grep -q base.css; then \
132 elif [ -f "$$file" ]; then \
133 if ! cp -pRL $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$file 2>/dev/null; then \
134 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$file; \
140 extra_install: underlay_install
141 # Install example sites.
143 for dir in `$(FIND) doc/examples -type d ! -regex '.*discussion.*' | $(SED) -ne 's|^doc/examples/||p'`; do \
144 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$dir; \
147 for file in `$(FIND) doc/examples -type f ! -regex '.*discussion.*' | $(SED) -ne 's|^doc/examples/||p'`; do \
148 if ! cp -pRL doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file 2>/dev/null; then \
149 install -m 644 doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file; \
154 for dir in `$(FIND) templates -follow -type d`; do \
155 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
156 for file in `$(FIND) $$dir -follow -maxdepth 1 -type f`; do \
157 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
161 install -d $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins
163 for file in `$(FIND) plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* -name \*.py`; do \
164 install -m 644 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
167 for file in `$(FIND) plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* ! -name \*.py ! -name \*.pyc`; do \
168 install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
171 install -d $(DESTDIR)$(MANDIR)/man1
172 install -m 644 ikiwiki.man $(DESTDIR)$(MANDIR)/man1/ikiwiki.1
173 install -m 644 ikiwiki-makerepo.man $(DESTDIR)$(MANDIR)/man1/ikiwiki-makerepo.1
174 install -m 644 ikiwiki-transition.man $(DESTDIR)$(MANDIR)/man1/ikiwiki-transition.1
175 install -m 644 ikiwiki-update-wikilist.man $(DESTDIR)$(MANDIR)/man1/ikiwiki-update-wikilist.1
176 install -m 644 ikiwiki-calendar.man $(DESTDIR)$(MANDIR)/man1/ikiwiki-calendar.1
177 install -m 644 ikiwiki-comment.man $(DESTDIR)$(MANDIR)/man1/ikiwiki-comment.1
179 install -d $(DESTDIR)$(MANDIR)/man8
180 install -m 644 ikiwiki-mass-rebuild.man $(DESTDIR)$(MANDIR)/man8/ikiwiki-mass-rebuild.8
182 install -d $(DESTDIR)$(PREFIX)/sbin
183 install ikiwiki-mass-rebuild $(DESTDIR)$(PREFIX)/sbin
185 install -d $(DESTDIR)$(W3M_CGI_BIN)
186 install ikiwiki-w3m.cgi $(DESTDIR)$(W3M_CGI_BIN)
188 install -d $(DESTDIR)$(PREFIX)/bin
190 for prog in $(outprogs) $(scripts); do \
191 install $$prog $(DESTDIR)$(PREFIX)/bin/$$(echo $$prog | $(SED) 's/\.out//'); \
194 $(MAKE) -C po install DESTDIR=$(DESTDIR) PREFIX=$(PREFIX)
196 # These might fail if a regular user is installing into a home
198 -install -d $(DESTDIR)$(SYSCONFDIR)
199 -install -m 0644 wikilist $(DESTDIR)$(SYSCONFDIR)
200 -install -m 0644 auto.setup $(DESTDIR)$(SYSCONFDIR)
201 -install -m 0644 auto-blog.setup $(DESTDIR)$(SYSCONFDIR)
203 # The git/hg plugins want to chdir; so does Devel::Cover. Skip those tests
204 # to stop them hurting each other.
207 $(MAKE) test PERL5OPT=-MDevel::Cover PERL5LIB=. TEST_FILES="$(filter-out t/git.t t/mercurial.t,$(wildcard t/*.t))"
211 git archive --format=tar --prefix=IkiWiki-$(VER)/ HEAD | xz -c > IkiWiki-$(VER).tar.xz
217 PREFIX => "/usr/local",
218 PM_FILTER => './pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB)',
221 'XML::Simple' => "0",
222 'Text::Markdown' => "0",
223 'Date::Parse' => "0",
224 'HTML::Template' => "0",
225 'HTML::Scrubber' => "0",
226 'CGI::FormBuilder' => "3.02.02",
227 'CGI::Session' => "0",
228 'Mail::Sendmail' => "0",
229 'HTML::Parser' => "0",
231 'Data::Dumper' => "2.11",