X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/e16746a52f40f478af1b634c532d90c25cc0ec76..63dd2c1baee6ff3a86ddbd02ffd446ec79fbfd72:/Makefile.PL diff --git a/Makefile.PL b/Makefile.PL index d2266ad8e..4f6b05179 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,51 +13,78 @@ pure_install:: extra_install VER=$(shell perl -e '$$_=<>;print m/\((.*?)\)/' ikiwiki +PROBABLE_INST_LIB=$(shell \\ + if [ "$(INSTALLDIRS)" = "perl" ]; then \\ + echo $(INSTALLPRIVLIB); \\ + elif [ "$(INSTALLDIRS)" = "site" ]; then \\ + echo $(INSTALLSITELIB); \\ + elif [ "$(INSTALLDIRS)" = "vendor" ]; then \\ + echo $(INSTALLVENDORLIB); \\ + fi \\ +) + +tflag=$(shell if [ "$$NOTAINT" != 0 ]; then printf -- "-T"; fi) +extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-MDevel::Profiler"; fi) extra_build: - ./ikiwiki.pl doc html --templatedir=templates --underlaydir=basewiki \ - --wikiname="ikiwiki" --verbose --no-rcs \ - --exclude=/discussion --no-discussion \ - --plugin=brokenlinks --plugin=pagecount \ - --plugin=orphans --plugin=haiku --plugin=meta \ - --plugin=tag --plugin=polygen --plugin=pagestats \ - --plugin=fortune --plugin=aggregate --plugin=map \ - --plugin=template --plugin=toc + ./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 \ + --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 - + $(MAKE) -C po + if [ "$$PROFILE" = 1 ]; then dprofpp; fi + extra_clean: rm -rf html doc/.ikiwiki - rm -f ikiwiki.man ikiwiki-mass-rebuild.man + rm -f ikiwiki.man ikiwiki-mass-rebuild.man ikiwiki.out tmon.out + $(MAKE) -C po clean extra_install: - install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/templates - cp templates/* $(DESTDIR)$(PREFIX)/share/ikiwiki/templates - - install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/basewiki - cp -a 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 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1 + install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1 install -d $(DESTDIR)$(PREFIX)/share/man/man8 - install ikiwiki-mass-rebuild.man $(DESTDIR)$(PREFIX)/share/man/man8/ikiwiki-mass-rebuild.8 + install -m 644 ikiwiki-mass-rebuild.man $(DESTDIR)$(PREFIX)/share/man/man8/ikiwiki-mass-rebuild.8 install -d $(DESTDIR)$(PREFIX)/sbin install ikiwiki-mass-rebuild $(DESTDIR)$(PREFIX)/sbin install -d $(DESTDIR)$(PREFIX)/lib/w3m/cgi-bin install ikiwiki-w3m.cgi $(DESTDIR)$(PREFIX)/lib/w3m/cgi-bin + + install -d $(DESTDIR)$(PREFIX)/bin + install ikiwiki.out $(DESTDIR)$(PREFIX)/bin/ikiwiki + + $(MAKE) -C po install PREFIX=$(PREFIX) } } WriteMakefile( NAME => 'IkiWiki', PREFIX => "/usr/local", - PM_FILTER => './pm_filter $(PREFIX) $(VER)', - EXE_FILES => ['ikiwiki'], + PM_FILTER => './pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB)', MAN1PODS => {}, - clean => {FILES => 'ikiwiki'}, + 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, + }, );