# all (default) # Same as `make dirs js skins robots` # # dirs # Creates the required directories not present in git # # js # Generates the Javascript code # # skins # Generates the CSS code # # robots # Ensures that www/robots.txt and static/robots.txt exist. Can be modified to # suit your needs. # # chmod # For when the http process is run from a different user than the files are # chown'ed to. chmods all files and directories written to from vndb.pl. # (including the stylesheets and javascript code, so these can be auto-updated) # # chmod-tladmin # The TransAdmin plugin also needs write access to some files # # multi-start, multi-stop, multi-restart: # Start/stop/restart the Multi daemon. Provided for convenience, a proper initscript # probably makes more sense. # # sql-import # Imports util/sql/all.sql into your (presumably empty) database # # update- # Updates all non-versioned items from the version before to . # # NOTE: This Makefile has only been tested using a recent version of GNU make # in a relatively up-to-date Arch Linux environment, and may not work in other # environments. Patches to improve the portability are always welcome. .PHONY: all dirs js skins robots chmod chmod-tladmin multi-stop multi-start multi-restart sql-import\ update-2.10 update-2.11 update-2.12 update-2.13 update-2.14 update-2.15 update-2.16 update-2.17\ update-2.18 update-2.19 update-2.20 all: dirs js skins robots data/config.pl dirs: static/f/js static/ch static/cv static/sf static/st data/log www www/feeds js: static/f/js/en.js skins: static/s/*/style.css robots: dirs www/robots.txt static/robots.txt static/ch static/cv static/sf static/st: mkdir $@; for i in $$(seq -w 0 1 99); do mkdir "$@/$$i"; done static/f/js data/log www www/feeds: mkdir $@ static/f/js/en.js: data/script.js data/lang.txt util/jsgen.pl data/config.pl data/global.pl util/jsgen.pl static/s/%/style.css: static/s/%/conf util/skingen.pl data/style.css util/skingen.pl $* %/robots.txt: echo 'User-agent: *' > $@ echo 'Disallow: /' >> $@ chmod: all chmod a+xrw static/f/js chmod -R a-x+rwX static/{ch,cv,sf,st} chmod a-x+rw static/s/*/{style.css,boxbg.png} chmod-tladmin: chmod a-x+rwX data/lang.txt data/docs data/docs/*\.* # may wait indefinitely, ^C and kill -9 in that case define multi-stop if [ -s data/multi.pid ]; then\ kill `cat data/multi.pid`;\ while [ -s data/multi.pid ]; do\ if kill -0 `cat data/multi.pid`; then sleep 1;\ else rm -f data/multi.pid; fi\ done;\ fi endef define multi-start util/multi.pl endef multi-stop: $(multi-stop) multi-start: $(multi-start) multi-restart: $(multi-stop) $(multi-start) # Small perl script that tries to connect to the PostgreSQL database using 'psql', with the # connection settings from data/config.pl. May not work in all configurations, though... define runpsql @perl -MDBI -e 'package VNDB;\ $$ROOT=".";\ require "data/global.pl";\ $$_=(DBI->parse_dsn($$VNDB::O{db_login}[0]))[4];\ $$ENV{PGPASSWORD} = $$VNDB::O{db_login}[2];\ $$ENV{PGUSER} = $$VNDB::O{db_login}[1];\ $$ENV{PGDATABASE} = $$2 if /(dbname|db|database)=([^;]+)/;\ $$ENV{PGHOST} = $$1 if /host=([^;]+)/;\ $$ENV{PGHOSTADDR} = $$1 if /hostaddr=([^;]+)/;\ $$ENV{PGPORT} = $$1 if /port=([^;]+)/;\ $$ENV{PGSERVICE} = $$1 if /service=([^;]+)/;\ $$ENV{PGSSLMODE} = $$1 if /sslmode=([^;]+)/;\ open F, "|psql" or die $$!;\ print F while(<>);\ close F or exit 1' endef sql-import): ${runpsql} < util/sql/all.sql update-2.10: all $(multi-stop) ${runpsql} < util/updates/update_2.10.sql $(multi-start) update-2.11: all $(multi-stop) ${runpsql} < util/updates/update_2.11.sql $(multi-start) update-2.12: all $(multi-stop) rm www/sitemap.xml.gz ${runpsql} < util/updates/update_2.12.sql $(multi-start) update-2.13: all $(multi-stop) ${runpsql} < util/updates/update_2.13.sql $(multi-start) update-2.14: all rm -f static/f/script.js $(multi-stop) ${runpsql} < util/updates/update_2.14.sql $(multi-start) update-2.15: all $(multi-stop) ${runpsql} < util/updates/update_2.15.sql $(multi-start) update-2.16: all $(multi-stop) ${runpsql} < util/updates/update_2.16.sql $(multi-start) update-2.17: all $(multi-stop) ${runpsql} < util/updates/update_2.17.sql $(multi-start) update-2.18: all $(multi-stop) ${runpsql} < util/updates/update_2.18.sql $(multi-start) update-2.19: all $(multi-stop) ${runpsql} < util/updates/update_2.19.sql $(multi-start) update-2.20: all $(multi-stop) ${runpsql} < util/updates/update_2.20.sql $(multi-start)