summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3912400c38daf9113c79c2c599fa0446f526b97d (plain)
  1. # expensive checks enabled: make -B flightcheck=1
  2. # Final document: make -B final=1
  3. stem = eut
  4. source_baseurl = http://euwiki.org/
  5. source_basename = EUT/2nd-edition
  6. citeproc_file = $(stem).bib
  7. templates = template.tex header.tex before.tex after.tex
  8. filters = ./pandoc-memoir ./pandoc-emphasis ./pandoc-cs1 ./pandoc-todo
  9. filters += $(if $(citeproc_file),pandoc-citeproc)
  10. filters += ./pandoc-iri
  11. markdown_includes = copyright.md colophon.md
  12. includes += $(markdown_includes:.md=.tex)
  13. localperlfilters = $(filter ./%,$(filters))
  14. title = Ensuring utmost transparency
  15. subtitle = Free Software and Open Standards under the Rules of Procedure of the European Parliament
  16. env_filter += $(citeproc_file:%=PANDOC_CITEPROC_FILE=%)
  17. env_filter += $(if $(flightcheck),NETWORK_TESTS=1)
  18. args_filter += $(filters:%=--filter %)
  19. args_meta += $(citeproc_file:%=-M bibliography=%)
  20. args_meta += -V lang=english -V langoption=variant=british
  21. args_meta += -M title="$(title) - $(subtitle)"
  22. args_meta += -V title="$(title)"
  23. args_meta += -V subtitle="$(subtitle)"
  24. args_meta += -M author="Carlo Piana, Ulf Öberg"
  25. args_meta += -V author="Carlo Piana" -V author="Ulf Öberg"
  26. args_meta += -V date=""
  27. args_latex += --template=template.tex --latex-engine=xelatex
  28. args_latex += -H header.tex -B before.tex -A after.tex
  29. args_latex += -V mainfont="Lora" -V sansfont="Quattrocento Sans" -V monofont="Inconsolata"
  30. args_latex += -V documentclass=memoir -V pagestyle=plain -V headstyles=komalike -V chapterstyle=ell
  31. args_latex += -V frontmatter=yes -V classoption=titlepage -V classoption=$(if $(final),final,draft)
  32. #flavors = a4 book ebook
  33. flavors = a4 ebook
  34. args_a4 = -V papersize=a4paper -V fontsize=10pt -V classoption=twoside
  35. args_a4 += -M isbn="978-90-823692-1-2" -V coverpage="$(stem)-a4-front.pdf"
  36. args_book = -V papersize=b5paper -V fontsize=10pt -V classoption=twoside
  37. args_ebook = -V papersize=a5paper -V fontsize=12pt -V classoption=oneside -V classoption=openany
  38. args_ebook += -M isbn="978-90-823692-0-5" -V isbn-nobarcode=1 -V coverpage="$(stem)-a4-front.pdf"
  39. args_ebook += -H header-ebook.tex
  40. all: $(flavors:%=$(stem)-%.pdf)
  41. download:: get-$(stem).raw
  42. download:: get-$(stem)-front-logo2.bmp get-$(stem)-front-a4-orig.svg
  43. download:: get-$(stem)-front-photo-orig.jpg
  44. download:: get-fonts
  45. get-$(stem).raw: get-%:
  46. # FIXME: website apparently down (last checked 2017-03-30)
  47. #./mediawiki-fetch $(source_baseurl) $(source_basename) $*
  48. get-$(stem)-front-photo-orig.jpg: get-%:
  49. curl -o '$*' 'http://audiovisual.europarl.europa.eu/Asset.aspx?type=nl&id=52c6e976-dd19-4a10-a8f0-afebae7fddd8'
  50. get-$(stem)-front-logo2.bmp: get-%:
  51. curl -o '$*' 'http://siri.biks.dk/transparency/GreensEFA-EN.bmp'
  52. get-$(stem)-front-a4-orig.svg: get-%:
  53. curl -o '$*' 'http://siri.biks.dk/transparency/transparency_front.svg'
  54. get-fonts:
  55. curl -LO https://github.com/cyrealtype/Lora-Cyrillic/raw/master/fonts/ttf/Lora-{Regular,Italic,Bold,BoldItalic}.ttf
  56. curl -Lo quattrocento-sans-v2.0.zip http://www.impallari.com/media/uploads/prosources/update-19-source.zip
  57. unzip -uo quattrocento-sans-v2.0.zip quattrocento-sans-v2.0/*.ttf
  58. install-fonts:
  59. mkdir -p ~/.fonts
  60. cp -ft ~/.fonts Lora-*.ttf quattrocento-sans-v2.0/*.ttf
  61. $(stem)-front-photo.jpg: $(stem)-front-photo-orig.jpg
  62. cp -f $< $@
  63. jpegoptim --strip-all --all-progressive --force $@
  64. $(stem)-front-logo2.png: $(stem)-front-logo2.bmp
  65. optipng -clobber $<
  66. $(stem)-front-a4.svg: $(stem)-front-a4-orig.svg eut-front-logo2.png eut-front-photo.jpg
  67. cp -f $< $@
  68. perl -i -pe 's,xlink:href="\K[^\"]+\.bmp,eut-front-logo2.png,' $@
  69. perl -i -pe 's,xlink:href="\K[^\"]+\.jpg,eut-front-photo.jpg,' $@
  70. $(stem)-a4-front.pdf: $(stem)-front-a4.svg
  71. inkscape -z --export-pdf=$@ $<
  72. $(stem).mw: $(stem).raw
  73. ./mediawiki-trim $< $@
  74. ./mediawiki-blockquote $@
  75. ./mediawiki-uri-escape $@
  76. ./mediawiki-matter $@
  77. $(stem).native: $(stem).mw $(localperlfilters)
  78. # validate syntax and dependencies of local Perl filters
  79. set -e; $(foreach filter,$(localperlfilters),perl -c $(filter);)
  80. # convert content from mediawiki to pandoc-native
  81. $(env_filter) pandoc -f mediawiki --smart $(args_meta) $(args_filter) -o $@ $<
  82. # tweak pandoc-native data
  83. ./native-hacks $@
  84. $(markdown_includes:.md=.tex): %.tex: %.md
  85. pandoc -f markdown -t latex --chapters -o $@ $<
  86. $(flavors:%=deps-%):: $(templates) $(includes) Makefile
  87. deps-a4:: $(deps) $(stem)-a4-front.pdf
  88. deps-ebook:: $(deps) $(stem)-a4-front.pdf header-ebook.tex
  89. $(flavors:%=$(stem)-%.pdf): $(stem)-%.pdf: $(stem).native $(deps-all) deps-%
  90. pandoc --standalone --no-tex-ligatures $(args_meta) $(args_latex) $(args_$*) -o $@ $<
  91. clean:
  92. rm -f $(foreach ext,native bib mw,$(stem:%=%.$(ext)))
  93. rm -f $(includes)
  94. distclean: clean
  95. rm -f $(stem:%=%.raw) $(stem:%=%-a4-front.pdf)