]> sipb.mit.edu Git - ikiwiki.git/blobdiff - Makefile.PL
web commit by http://joey.kitenet.net/: test commit
[ikiwiki.git] / Makefile.PL
index 74ad20c177da1d24788b296b364f830db38d7821..6e75097c899c50919a9a3d9db97bf353cd052023 100755 (executable)
@@ -11,32 +11,62 @@ clean:: extra_clean
 install:: extra_install
 pure_install:: extra_install
 
+VER=$(shell perl -e '$$_=<>;print m/\((.*?)\)/'<debian/changelog)
+
+PROBABLE_INST_LIB=$(shell \\
+       if [ "$(INSTALLDIRS)" = "perl" ]; then \\
+               echo $(INSTALLPRIVLIB); \\
+       elif [ "$(INSTALLDIRS)" = "site" ]; then \\
+               echo $(INSTALLSITELIB); \\
+       elif [ "$(INSTALLDIRS)" = "vendor" ]; then \\
+               echo $(INSTALLVENDORLIB); \\
+       fi \\
+)
+
 extra_build:
-       ./ikiwiki doc html --templatedir=templates --underlaydir=basewiki \
+       ./ikiwiki.in doc html --templatedir=templates --underlaydir=basewiki \
                --wikiname="ikiwiki" --verbose --no-rcs \
-               --exclude=/discussion --plugin=brokenlinks \
-               --plugin=pagecount --plugin=orphans \
-               --plugin=haiku
-       ./mdwn2man doc/usage.mdwn > ikiwiki.man
+               --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 --plugin=shortcut
+       ./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
                
 extra_clean:
        rm -rf html doc/.ikiwiki
-       rm -f ikiwiki.man
+       rm -f ikiwiki.man ikiwiki-mass-rebuild.man ikiwiki.out
 
 extra_install:
-       install -d $(PREFIX)/share/ikiwiki/templates
-       cp templates/* $(PREFIX)/share/ikiwiki/templates
+       install -d $(DESTDIR)$(PREFIX)/share/ikiwiki/templates
+       $(CP) -a 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/man/man1
+       install 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 -d $(DESTDIR)$(PREFIX)/sbin
+       install ikiwiki-mass-rebuild $(DESTDIR)$(PREFIX)/sbin
 
-       install -d $(PREFIX)/share/ikiwiki/basewiki
-       cp -a basewiki/* $(PREFIX)/share/ikiwiki/basewiki
+       install -d $(DESTDIR)$(PREFIX)/lib/w3m/cgi-bin
+       install ikiwiki-w3m.cgi $(DESTDIR)$(PREFIX)/lib/w3m/cgi-bin
 
-       install -d $(PREFIX)/share/man/man1
-       install ikiwiki.man $(PREFIX)/share/man/man1/ikiwiki.1
+       install -d $(DESTDIR)$(PREFIX)/bin
+       install ikiwiki.out $(DESTDIR)$(PREFIX)/bin/ikiwiki
 }
 }
 
 WriteMakefile(
-       'NAME'          => 'IkiWiki',
-       'PM_FILTER'     => 'grep -v "removed by Makefile"',
-       'EXE_FILES'     => ['ikiwiki'],
+       NAME            => 'IkiWiki',
+       PREFIX          => "/usr/local",
+       PM_FILTER       => './pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB)',
+       MAN1PODS        => {},
 );