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:Profile"; fi)
32 ikiwiki.out: ikiwiki.in
33 ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < ikiwiki.in > ikiwiki.out
36 ikiwiki.setup: ikiwiki.out
37 HOME=/home/me $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -dumpsetup ikiwiki.setup
39 extra_build: ikiwiki.out ikiwiki.setup docwiki
40 ./mdwn2man ikiwiki 1 doc/usage.mdwn > ikiwiki.man
41 ./mdwn2man ikiwiki-mass-rebuild 8 doc/ikiwiki-mass-rebuild.mdwn > ikiwiki-mass-rebuild.man
42 ./mdwn2man ikiwiki-makerepo 1 doc/ikiwiki-makerepo.mdwn > ikiwiki-makerepo.man
43 ./mdwn2man ikiwiki-transition 1 doc/ikiwiki-transition.mdwn > ikiwiki-transition.man
44 ./mdwn2man ikiwiki-update-wikilist 1 doc/ikiwiki-update-wikilist.mdwn > ikiwiki-update-wikilist.man
48 $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -setup docwiki.setup -refresh
50 underlaypo: ikiwiki.out
51 # copy all the files we want to translate into the
52 # po/underlays scrdir.
53 for file in `find underlays -follow -name \*.mdwn`; do \
54 install -d po/$$(dirname $$file); \
55 cp -aL $$file po/$$file 2>/dev/null || \
56 install -m 644 $$file po/$$file; \
58 install -d po/underlays/directives/ikiwiki/directive
59 for file in doc/ikiwiki/directive/*; do \
60 if [ -f "$$file" ]; then \
61 cp -a $$file po/underlays/directives/ikiwiki/directive || \
62 install -m 644 $$file po/underlays/directives/ikiwiki/directive; \
65 install -d po/underlays/empty
66 $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -setup underlaypo.setup -refresh
67 find po/underlays -name \*.mdwn | xargs rm -f
70 rm -rf html doc/.ikiwiki
71 rm -f *.man ikiwiki.out ikiwiki.setup plugins/*.pyc
73 rm -rf po/html po/underlays/.ikiwiki
76 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
77 for dir in `cd underlays && find . -follow -type d ! -regex '.*\.svn.*'`; do \
78 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
79 for file in `find underlays/$$dir -follow -maxdepth 1 -type f`; do \
80 cp -aL $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir 2>/dev/null || \
81 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
85 # The directive docs become their own special underlay.
86 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive
87 for file in doc/ikiwiki/directive/*; do \
88 if [ -f "$$file" ]; then \
89 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive; \
93 # Install example sites.
94 for dir in `cd doc/examples; find . -type d ! -regex '.*\.svn.*'`; do \
95 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$dir; \
97 for file in `cd doc/examples; find . -type f ! -regex '.*\.svn.*'`; do \
98 cp -aL doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file 2>/dev/null || \
99 install -m 644 doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file; \
102 for dir in `find templates -follow -type d ! -regex '.*\.svn.*'`; do \
103 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
104 for file in `find $$dir -follow -maxdepth 1 -type f`; do \
105 install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
109 install -d $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins
110 for file in `find plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* -name \*.py`; do \
111 install -m 644 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
113 for file in `find plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* ! -name \*.py ! -name \*.pyc`; do \
114 install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
117 install -d $(DESTDIR)$(PREFIX)/share/man/man1
118 install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1
119 install -m 644 ikiwiki-makerepo.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-makerepo.1
120 install -m 644 ikiwiki-transition.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-transition.1
121 install -m 644 ikiwiki-update-wikilist.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-update-wikilist.1
123 install -d $(DESTDIR)$(PREFIX)/share/man/man8
124 install -m 644 ikiwiki-mass-rebuild.man $(DESTDIR)$(PREFIX)/share/man/man8/ikiwiki-mass-rebuild.8
126 install -d $(DESTDIR)$(PREFIX)/sbin
127 install ikiwiki-mass-rebuild $(DESTDIR)$(PREFIX)/sbin
129 install -d $(DESTDIR)$(W3M_CGI_BIN)
130 install ikiwiki-w3m.cgi $(DESTDIR)$(W3M_CGI_BIN)
132 install -d $(DESTDIR)$(PREFIX)/bin
133 install ikiwiki.out $(DESTDIR)$(PREFIX)/bin/ikiwiki
134 install ikiwiki-makerepo ikiwiki-transition ikiwiki-update-wikilist $(DESTDIR)$(PREFIX)/bin/
136 $(MAKE) -C po install DESTDIR=$(DESTDIR) PREFIX=$(PREFIX)
138 # These might fail if a regular user is installing into a home
140 -install -d $(DESTDIR)/etc/ikiwiki
141 -install -m 0644 wikilist $(DESTDIR)/etc/ikiwiki
142 -install -m 0644 auto.setup $(DESTDIR)/etc/ikiwiki
143 -install -m 0644 auto-blog.setup $(DESTDIR)/etc/ikiwiki
149 PREFIX => "/usr/local",
150 PM_FILTER => './pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB)',
154 'Text::Markdown' => 0,
156 'HTML::Template' => 0,
157 'HTML::Scrubber' => 0,
158 'CGI::FormBuilder' => 3.02.02,
160 'Mail::Sendmail' => 0,
163 'Data::Dumper' => 2.11,