X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/f59796697d3b01d1cb413f88304b5c2682efc927..4de235a385bf569e95d3902c7a1f688b5fbf0d44:/Makefile.PL diff --git a/Makefile.PL b/Makefile.PL index 3c47e684e..985c944ad 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -23,13 +23,16 @@ PROBABLE_INST_LIB=$(shell \\ fi \\ ) -tflag=$(shell if [ ! "$$NOTAINT" ]; then printf -- "-T"; fi) +tflag=$(shell if [ "$$NOTAINT" != 0 ]; then printf -- "-T"; fi) +extramodules=$(shell if [ "$$PROFILE" = 1 ]; then printf -- "-MDevel::Profiler"; fi) -extra_build: +ikiwiki.out: ikiwiki.in ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < ikiwiki.in > ikiwiki.out chmod +x ikiwiki.out - LANG=C perl -I. $(tflag) ikiwiki.out doc html --templatedir=templates \ - --underlaydir=basewiki \ + +extra_build: ikiwiki.out + LANG=C perl -I. $(extramodules) $(tflag) ikiwiki.out doc html --templatedir=templates \ + --underlaydir=basewiki --nousedirs\ --wikiname="ikiwiki" --verbose \ --exclude=/discussion --no-discussion --userdir=users \ --plugin=goodstuff \ @@ -37,6 +40,7 @@ extra_build: ./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 @@ -44,11 +48,13 @@ 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 + for dir in `find basewiki templates -follow -type d ! -regex '.*\.svn.*'`; do \ + install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \ + for file in `find $$dir -follow -maxdepth 1 -type f`; do \ + install -m 644 $$file $(DESTDIR)$(PREFIX)/share/ikiwiki/$$dir; \ + done; \ + done install -d $(DESTDIR)$(PREFIX)/share/man/man1 install -m 644 ikiwiki.man $(DESTDIR)$(PREFIX)/share/man/man1/ikiwiki.1