]> sipb.mit.edu Git - ikiwiki.git/blob - Makefile.PL
bad po plugin bug
[ikiwiki.git] / Makefile.PL
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use ExtUtils::MakeMaker;
5
6 # Add a few more targets.
7 sub MY::postamble {
8 q{
9 all:: extra_build
10 clean:: extra_clean
11 install:: extra_install
12 pure_install:: extra_install
13
14 VER=$(shell perl -e '$$_=<>;print m/\((.*?)\)/'<debian/changelog)
15
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); \\
23         fi \\
24 )
25
26 # Additional configurable path variables.
27 W3M_CGI_BIN?=$(PREFIX)/lib/w3m/cgi-bin
28
29 tflag=$(shell if [ -n "$$NOTAINT" ] && [ "$$NOTAINT" != 1 ]; then printf -- "-T"; fi)
30 extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-d:Profile"; fi)
31
32 ikiwiki.out: ikiwiki.in
33         ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < ikiwiki.in > ikiwiki.out
34         chmod +x ikiwiki.out
35
36 ikiwiki.setup: ikiwiki.out
37         HOME=/home/me $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -dumpsetup ikiwiki.setup
38
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
45         $(MAKE) -C po
46         
47 docwiki: ikiwiki.out
48         $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -setup docwiki.setup -refresh
49
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; \
57         done
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; \
63                 fi \
64         done
65         $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -setup underlaypo.setup -refresh
66         find po/underlays -name \*.mdwn | xargs rm -f
67
68 extra_clean:
69         rm -rf html doc/.ikiwiki
70         rm -f *.man ikiwiki.out ikiwiki.setup plugins/*.pyc
71         $(MAKE) -C po clean
72         rm -rf po/html po/underlays/.ikiwiki
73
74 extra_install:
75         install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
76         for dir in `cd underlays && find . -follow -type d ! -regex '.*\.svn.*'`; do \
77                 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
78                 for file in `find underlays/$$dir -follow -maxdepth 1 -type f`; do \
79                         cp -aL $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir 2>/dev/null || \
80                         install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
81                 done; \
82         done
83
84         # The directive docs become their own special underlay.
85         install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive
86         for file in doc/ikiwiki/directive/*; do \
87                 if [ -f "$$file" ]; then \
88                         install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive; \
89                 fi \
90         done
91         
92         # Install example sites.
93         for dir in `cd doc/examples; find . -type d ! -regex '.*\.svn.*'`; do \
94                 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$dir; \
95         done
96         for file in `cd doc/examples; find . -type f ! -regex '.*\.svn.*'`; do \
97                 cp -aL doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file 2>/dev/null || \
98                 install -m 644 doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file; \
99         done
100
101         for dir in `find templates -follow -type d ! -regex '.*\.svn.*'`; do \
102                 install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
103                 for file in `find $$dir -follow -maxdepth 1 -type f`; do \
104                         install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
105                 done; \
106         done
107         
108         install -d $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins
109         for file in `find plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* -name \*.py`; do \
110                 install -m 644 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
111         done
112         for file in `find plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* ! -name \*.py ! -name \*.pyc`; do \
113                 install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
114         done
115
116         install -d $(DESTDIR)$(PREFIX)/share/man/man1
117         install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1
118         install -m 644 ikiwiki-makerepo.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-makerepo.1
119         install -m 644 ikiwiki-transition.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-transition.1
120         install -m 644 ikiwiki-update-wikilist.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-update-wikilist.1
121         
122         install -d $(DESTDIR)$(PREFIX)/share/man/man8
123         install -m 644 ikiwiki-mass-rebuild.man $(DESTDIR)$(PREFIX)/share/man/man8/ikiwiki-mass-rebuild.8
124         
125         install -d $(DESTDIR)$(PREFIX)/sbin
126         install ikiwiki-mass-rebuild $(DESTDIR)$(PREFIX)/sbin
127
128         install -d $(DESTDIR)$(W3M_CGI_BIN)
129         install ikiwiki-w3m.cgi $(DESTDIR)$(W3M_CGI_BIN)
130
131         install -d $(DESTDIR)$(PREFIX)/bin
132         install ikiwiki.out $(DESTDIR)$(PREFIX)/bin/ikiwiki
133         install ikiwiki-makerepo ikiwiki-transition ikiwiki-update-wikilist $(DESTDIR)$(PREFIX)/bin/
134
135         $(MAKE) -C po install DESTDIR=$(DESTDIR) PREFIX=$(PREFIX)
136         
137         # These might fail if a regular user is installing into a home
138         # directory.
139         -install -d $(DESTDIR)/etc/ikiwiki
140         -install -m 0644 wikilist $(DESTDIR)/etc/ikiwiki
141         -install -m 0644 auto.setup $(DESTDIR)/etc/ikiwiki
142         -install -m 0644 auto-blog.setup $(DESTDIR)/etc/ikiwiki
143 }
144 }
145
146 WriteMakefile(
147         NAME            => 'IkiWiki',
148         PREFIX          => "/usr/local",
149         PM_FILTER       => './pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB)',
150         MAN1PODS        => {},
151         PREREQ_PM       => {
152                 'XML::Simple'           => 0,
153                 'Text::Markdown'        => 0,
154                 'Date::Parse'           => 0,
155                 'HTML::Template'        => 0,
156                 'HTML::Scrubber'        => 0,
157                 'CGI::FormBuilder'      => 3.02.02,
158                 'CGI::Session'          => 0,
159                 'Mail::Sendmail'        => 0,
160                 'HTML::Parser'          => 0,
161                 'URI'                   => 0,
162                 'Data::Dumper'          => 2.11,
163         },
164 );