X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/88e8f08c8ffe61fbb3aa8d0fbf78a86c30c65543..1d674c612d5409e2eaf33e588db97412ccc3b1ee:/Makefile.PL diff --git a/Makefile.PL b/Makefile.PL index cfcc19db7..676ba06ef 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,17 +23,22 @@ PROBABLE_INST_LIB=$(shell \\ fi \\ ) +tflag=$(shell if [ "$$NOTAINT" != 0 ]; then printf -- "-T"; fi) +extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-MDevel::Profiler"; fi) + extra_build: - LANG=C ./ikiwiki.in doc html --templatedir=templates \ + ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < ikiwiki.in > ikiwiki.out + chmod +x ikiwiki.out + LANG=C perl -I. $(extramodules) $(tflag) ikiwiki.out doc html --templatedir=templates \ --underlaydir=basewiki \ - --wikiname="ikiwiki" --verbose --no-rcs \ + --wikiname="ikiwiki" --verbose \ --exclude=/discussion --no-discussion --userdir=users \ --plugin=goodstuff \ --plugin=haiku --plugin=polygen --plugin=fortune ./mdwn2man ikiwiki 1 doc/usage.mdwn > ikiwiki.man ./mdwn2man ikiwiki-mass-rebuild 8 doc/ikiwiki-mass-rebuild.mdwn > ikiwiki-mass-rebuild.man - ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < ikiwiki.in > ikiwiki.out $(MAKE) -C po + if [ "$$PROFILE" = 1 ]; then dprofpp; fi extra_clean: rm -rf html doc/.ikiwiki @@ -41,11 +46,9 @@ extra_clean: $(MAKE) -C po clean extra_install: - install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/templates - $(CP) -a templates/* $(DESTDIR)$(PREFIX)/share/ikiwiki/templates - - install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/basewiki - $(CP) -aL basewiki/* $(DESTDIR)$(PREFIX)/share/ikiwiki/basewiki + install -d $(DESTDIR)$(PREFIX)/share/ikiwiki + find basewiki templates \( -type f -or -type l \) ! -regex '.*\.svn.*' \ + -exec cp --parents -aL {} $(DESTDIR)$(PREFIX)/share/ikiwiki \; install -d $(DESTDIR)$(PREFIX)/share/man/man1 install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1 @@ -71,4 +74,17 @@ WriteMakefile( PREFIX => "/usr/local", PM_FILTER => './pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB)', MAN1PODS => {}, + PREREQ_PM => { + 'XML::Simple' => 0, + 'Text::Markdown' => 0, + 'Date::Parse' => 0, + 'HTML::Template' => 0, + 'HTML::Scrubber' => 0, + 'CGI::FormBuilder' => 3.02.02, + 'Time::Duration' => 0, + 'CGI::Session' => 0, + 'Mail::Sendmail' => 0, + 'HTML::Parser' => 0, + 'URI' => 0, + }, );