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 PROBABLE_INST_LIB=$(shell \\
17 if [ "$(INSTALLDIRS)" = "perl" ]; then \\
18 echo $(INSTALLPRIVLIB); \\
19 elif [ "$(INSTALLDIRS)" = "site" ]; then \\
20 echo $(INSTALLSITELIB); \\
21 elif [ "$(INSTALLDIRS)" = "vendor" ]; then \\
22 echo $(INSTALLVENDORLIB); \\
26 # Additional configurable path variables.
27 W3M_CGI_BIN?=$(PREFIX)/lib/w3m/cgi-bin
29 tflag=$(shell if [ -n "$$NOTAINT" ] && [ "$$NOTAINT" != 1 ]; then printf -- "-T"; fi)
30 extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-d:NYTProf"; fi)
31 outprogs=ikiwiki.out ikiwiki-transition.out ikiwiki-calendar.out
32 scripts=ikiwiki-update-wikilist ikiwiki-makerepo
35 ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < $< > $@
39 HOME=/home/me $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.in -dumpsetup ikiwiki.setup
41 extra_build: $(outprogs) ikiwiki.setup docwiki
42 ./mdwn2man ikiwiki 1 doc/usage.mdwn > ikiwiki.man
43 ./mdwn2man ikiwiki-mass-rebuild 8 doc/ikiwiki-mass-rebuild.mdwn > ikiwiki-mass-rebuild.man
44 ./mdwn2man ikiwiki-makerepo 1 doc/ikiwiki-makerepo.mdwn > ikiwiki-makerepo.man
45 ./mdwn2man ikiwiki-transition 1 doc/ikiwiki-transition.mdwn > ikiwiki-transition.man
46 ./mdwn2man ikiwiki-update-wikilist 1 doc/ikiwiki-update-wikilist.mdwn > ikiwiki-update-wikilist.man
47 ./mdwn2man ikiwiki-calendar 1 doc/ikiwiki-calendar.mdwn > ikiwiki-calendar.man
49 sed -i.bkp "s/Version:.*/Version: $$(perl -e '$$_=<>;print m/\((.*?)\)/'<debian/changelog)/" ikiwiki.spec
50 rm -f ikiwiki.spec.bkp
53 $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.in -setup docwiki.setup -refresh
56 $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.in -setup docwiki.setup -clean
57 rm -f *.man $(outprogs) ikiwiki.setup plugins/*.pyc
60 # Joey uses this before committing.
62 git checkout po ikiwiki.spec
65 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
66 for dir in `cd underlays && find . -follow -type d ! -regex '.*\.svn.*'`; do \
67 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
68 for file in `find underlays/$$dir -follow -maxdepth 1 -type f`; do \
69 cp -aL $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir 2>/dev/null || \
70 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
74 # The directive docs become their own special underlay.
75 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive
76 for file in doc/ikiwiki/directive/*; do \
77 if [ -f "$$file" ]; then \
78 cp -aL $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive 2>/dev/null || \
79 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive; \
83 # Themes have their style.css appended to the normal one.
84 for theme in themes/*; do \
85 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme; \
86 for file in $$theme/*; do \
87 if echo "$$file" | grep -q style.css; then \
88 (cat doc/style.css; cat $$file) >> $(DESTDIR)$(PREFIX)/share/ikiwiki/$$theme/style.css; \
89 elif [ -f "$$file" ]; then \
90 cp -aL $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$file 2>/dev/null || \
91 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$file; \
96 extra_install: underlay_install
97 # Install example sites.
98 for dir in `cd doc/examples; find . -type d ! -regex '.*\.svn.*'`; do \
99 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$dir; \
101 for file in `cd doc/examples; find . -type f ! -regex '.*\.svn.*'`; do \
102 cp -aL doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file 2>/dev/null || \
103 install -m 644 doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file; \
106 for dir in `find templates -follow -type d ! -regex '.*\.svn.*'`; do \
107 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
108 for file in `find $$dir -follow -maxdepth 1 -type f`; do \
109 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
113 install -d $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins
114 for file in `find plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* -name \*.py`; do \
115 install -m 644 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
117 for file in `find plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* ! -name \*.py ! -name \*.pyc`; do \
118 install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
121 install -d $(DESTDIR)$(PREFIX)/share/man/man1
122 install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1
123 install -m 644 ikiwiki-makerepo.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-makerepo.1
124 install -m 644 ikiwiki-transition.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-transition.1
125 install -m 644 ikiwiki-update-wikilist.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-update-wikilist.1
126 install -m 644 ikiwiki-calendar.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-calendar.1
128 install -d $(DESTDIR)$(PREFIX)/share/man/man8
129 install -m 644 ikiwiki-mass-rebuild.man $(DESTDIR)$(PREFIX)/share/man/man8/ikiwiki-mass-rebuild.8
131 install -d $(DESTDIR)$(PREFIX)/sbin
132 install ikiwiki-mass-rebuild $(DESTDIR)$(PREFIX)/sbin
134 install -d $(DESTDIR)$(W3M_CGI_BIN)
135 install ikiwiki-w3m.cgi $(DESTDIR)$(W3M_CGI_BIN)
137 install -d $(DESTDIR)$(PREFIX)/bin
138 for prog in $(outprogs) $(scripts); do \
139 install $$prog $(DESTDIR)$(PREFIX)/bin/$$(echo $$prog | sed 's/\.out//'); \
142 $(MAKE) -C po install DESTDIR=$(DESTDIR) PREFIX=$(PREFIX)
144 # These might fail if a regular user is installing into a home
146 -install -d $(DESTDIR)/etc/ikiwiki
147 -install -m 0644 wikilist $(DESTDIR)/etc/ikiwiki
148 -install -m 0644 auto.setup $(DESTDIR)/etc/ikiwiki
149 -install -m 0644 auto-blog.setup $(DESTDIR)/etc/ikiwiki
155 PREFIX => "/usr/local",
156 PM_FILTER => './pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB)',
159 'XML::Simple' => "0",
160 'Text::Markdown' => "0",
161 'Date::Parse' => "0",
162 'HTML::Template' => "0",
163 'HTML::Scrubber' => "0",
164 'CGI::FormBuilder' => "3.02.02",
165 'CGI::Session' => "0",
166 'Mail::Sendmail' => "0",
167 'HTML::Parser' => "0",
169 'Data::Dumper' => "2.11",