summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 3db5c0d4063fffb54d7fdabccc61cca6b4ec3cc1 (plain)
  1. #!/usr/bin/perl
  2. use warnings;
  3. use strict;
  4. use ExtUtils::MakeMaker;
  5. # Add a few more targets.
  6. sub MY::postamble {
  7. q{
  8. all:: extra_build
  9. clean:: extra_clean
  10. install:: extra_install
  11. pure_install:: extra_install
  12. VER=$(shell perl -e '$$_=<>;print m/\((.*?)\)/'<debian/changelog)
  13. PROBABLE_INST_LIB=$(shell \\
  14. if [ "$(INSTALLDIRS)" = "perl" ]; then \\
  15. echo $(INSTALLPRIVLIB); \\
  16. elif [ "$(INSTALLDIRS)" = "site" ]; then \\
  17. echo $(INSTALLSITELIB); \\
  18. elif [ "$(INSTALLDIRS)" = "vendor" ]; then \\
  19. echo $(INSTALLVENDORLIB); \\
  20. fi \\
  21. )
  22. # Additional configurable path variables.
  23. W3M_CGI_BIN?=$(PREFIX)/lib/w3m/cgi-bin
  24. tflag=$(shell if [ -n "$$NOTAINT" ] && [ "$$NOTAINT" != 1 ]; then printf -- "-T"; fi)
  25. extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-d:Profile"; fi)
  26. ikiwiki.out: ikiwiki.in
  27. ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < ikiwiki.in > ikiwiki.out
  28. chmod +x ikiwiki.out
  29. ikiwiki.setup: ikiwiki.out
  30. HOME=/home/me $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -dumpsetup ikiwiki.setup
  31. extra_build: ikiwiki.out ikiwiki.setup docwiki
  32. ./mdwn2man ikiwiki 1 doc/usage.mdwn > ikiwiki.man
  33. ./mdwn2man ikiwiki-mass-rebuild 8 doc/ikiwiki-mass-rebuild.mdwn > ikiwiki-mass-rebuild.man
  34. ./mdwn2man ikiwiki-makerepo 1 doc/ikiwiki-makerepo.mdwn > ikiwiki-makerepo.man
  35. ./mdwn2man ikiwiki-transition 1 doc/ikiwiki-transition.mdwn > ikiwiki-transition.man
  36. ./mdwn2man ikiwiki-update-wikilist 1 doc/ikiwiki-update-wikilist.mdwn > ikiwiki-update-wikilist.man
  37. $(MAKE) -C po
  38. docwiki: ikiwiki.out
  39. $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -setup docwiki.setup -refresh
  40. underlaypo: ikiwiki.out
  41. # copy all the files we want to translate into the
  42. # po/underlays scrdir.
  43. for file in `find underlays -follow -name \*.mdwn`; do \
  44. install -d po/$$(dirname $$file); \
  45. cp -aL $$file po/$$file 2>/dev/null || \
  46. install -m 644 $$file po/$$file; \
  47. done
  48. install -d po/underlays/directives/ikiwiki/directive
  49. for file in doc/ikiwiki/directive/*; do \
  50. if [ -f "$$file" ]; then \
  51. cp -a $$file po/underlays/directives/ikiwiki/directive || \
  52. install -m 644 $$file po/underlays/directives/ikiwiki/directive; \
  53. fi \
  54. done
  55. install -d po/underlays/empty
  56. $(PERL) -Iblib/lib $(extramodules) $(tflag) ikiwiki.out -libdir . -setup underlaypo.setup -refresh
  57. find po/underlays -name \*.mdwn | xargs rm -f
  58. extra_clean:
  59. rm -rf html doc/.ikiwiki
  60. rm -f *.man ikiwiki.out ikiwiki.setup plugins/*.pyc
  61. $(MAKE) -C po clean
  62. rm -rf po/html po/underlays/.ikiwiki
  63. extra_install:
  64. install -d $(DESTDIR)$(PREFIX)/share/ikiwiki
  65. for dir in `cd underlays && find . -follow -type d ! -regex '.*\.svn.*'`; do \
  66. install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
  67. for file in `find underlays/$$dir -follow -maxdepth 1 -type f`; do \
  68. cp -aL $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir 2>/dev/null || \
  69. install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
  70. done; \
  71. done
  72. # The directive docs become their own special underlay.
  73. install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive
  74. for file in doc/ikiwiki/directive/*; do \
  75. if [ -f "$$file" ]; then \
  76. install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/directives/ikiwiki/directive; \
  77. fi \
  78. done
  79. # Install example sites.
  80. for dir in `cd doc/examples; find . -type d ! -regex '.*\.svn.*'`; do \
  81. install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$dir; \
  82. done
  83. for file in `cd doc/examples; find . -type f ! -regex '.*\.svn.*'`; do \
  84. cp -aL doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file 2>/dev/null || \
  85. install -m 644 doc/examples/$$file $(DESTDIR)$(PREFIX)/share/ikiwiki/examples/$$file; \
  86. done
  87. for dir in `find templates -follow -type d ! -regex '.*\.svn.*'`; do \
  88. install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
  89. for file in `find $$dir -follow -maxdepth 1 -type f`; do \
  90. install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \
  91. done; \
  92. done
  93. install -d $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins
  94. for file in `find plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* -name \*.py`; do \
  95. install -m 644 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
  96. done
  97. for file in `find plugins -maxdepth 1 -type f ! -path plugins/.\* ! -name \*demo\* ! -name \*.py ! -name \*.pyc`; do \
  98. install -m 755 $$file $(DESTDIR)$(PREFIX)/lib/ikiwiki/plugins; \
  99. done
  100. install -d $(DESTDIR)$(PREFIX)/share/man/man1
  101. install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1
  102. install -m 644 ikiwiki-makerepo.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-makerepo.1
  103. install -m 644 ikiwiki-transition.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-transition.1
  104. install -m 644 ikiwiki-update-wikilist.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki-update-wikilist.1
  105. install -d $(DESTDIR)$(PREFIX)/share/man/man8
  106. install -m 644 ikiwiki-mass-rebuild.man $(DESTDIR)$(PREFIX)/share/man/man8/ikiwiki-mass-rebuild.8
  107. install -d $(DESTDIR)$(PREFIX)/sbin
  108. install ikiwiki-mass-rebuild $(DESTDIR)$(PREFIX)/sbin
  109. install -d $(DESTDIR)$(W3M_CGI_BIN)
  110. install ikiwiki-w3m.cgi $(DESTDIR)$(W3M_CGI_BIN)
  111. install -d $(DESTDIR)$(PREFIX)/bin
  112. install ikiwiki.out $(DESTDIR)$(PREFIX)/bin/ikiwiki
  113. install ikiwiki-makerepo ikiwiki-transition ikiwiki-update-wikilist $(DESTDIR)$(PREFIX)/bin/
  114. $(MAKE) -C po install DESTDIR=$(DESTDIR) PREFIX=$(PREFIX)
  115. # These might fail if a regular user is installing into a home
  116. # directory.
  117. -install -d $(DESTDIR)/etc/ikiwiki
  118. -install -m 0644 wikilist $(DESTDIR)/etc/ikiwiki
  119. -install -m 0644 auto.setup $(DESTDIR)/etc/ikiwiki
  120. -install -m 0644 auto-blog.setup $(DESTDIR)/etc/ikiwiki
  121. }
  122. }
  123. WriteMakefile(
  124. NAME => 'IkiWiki',
  125. PREFIX => "/usr/local",
  126. PM_FILTER => './pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB)',
  127. MAN1PODS => {},
  128. PREREQ_PM => {
  129. 'XML::Simple' => 0,
  130. 'Text::Markdown' => 0,
  131. 'Date::Parse' => 0,
  132. 'HTML::Template' => 0,
  133. 'HTML::Scrubber' => 0,
  134. 'CGI::FormBuilder' => 3.02.02,
  135. 'CGI::Session' => 0,
  136. 'Mail::Sendmail' => 0,
  137. 'HTML::Parser' => 0,
  138. 'URI' => 0,
  139. 'Data::Dumper' => 2.11,
  140. },
  141. );