]> git.donarmstrong.com Git - lilypond.git/blob - debian/rules
fix rules and remove w3c callback
[lilypond.git] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for LilyPond in Debian.
3 #
4 # This is free software; see the GNU General Public Licence
5 # version 2 or later for copying conditions.  There is NO warranty.
6 #
7
8 include VERSION
9
10 export MAILADDRESS = lilypond@packages.debian.org
11
12 # fontconfig blows chunks if it can't write to $HOME; and some
13 # buildds set it to a bogus value.
14 export HOME = /tmp
15
16 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
17 CFLAGS := $(shell dpkg-buildflags --get CFLAGS)
18 CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
19 ifneq (,$(filter $(DEB_HOST_ARCH), i386 kfreebsd-i386))
20   config_opt = --disable-optimising
21   CFLAGS := $(filter-out -O%, $(CFLAGS))
22   CXXFLAGS := $(filter-out -O%, $(CXXFLAGS))
23 else
24 ifneq (,$(filter $(DEB_BUILD_OPTIONS),noopt))
25   config_opt = --disable-optimising
26 else
27   config_opt = --enable-optimising
28 endif
29 endif
30
31 DOC_OPTIONS := WEB_TARGETS="offline"
32 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
33         DOC_OPTIONS := $(DOC_OPTIONS) CPU_COUNT=$(firstword $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))))
34 endif
35
36 %:
37         dh $@ --parallel --with autotools-dev --with python2 --with quilt
38
39
40 ## we need to nuke the parser files, because if there is a mistmatch
41 ## between upstreams bison and our bison, the build will fail epically
42 override_dh_auto_configure:
43         rm -f lily/out/parser.*
44         dh_auto_configure -- --disable-checking --enable-debugging $(config_opt)
45
46 override_dh_auto_build-indep:
47         dh_auto_build
48         $(MAKE) doc $(DOC_OPTIONS)
49
50 override_dh_auto_install-indep:
51         $(MAKE) install-doc $(DOC_OPTIONS) prefix=$(CURDIR)/debian/tmp/usr/
52         $(MAKE) install-info $(DOC_OPTIONS) prefix=$(CURDIR)/debian/tmp/usr
53         rm -rf $(CURDIR)/debian/tmp/usr/share/omf
54         rm -rf $(CURDIR)/debian/tmp/usr/share/doc/lilypond/html/input
55         perl debian/move_info_images_from_html_doc $(CURDIR)/debian/tmp/usr/share/info/ $(CURDIR)/debian/tmp/usr/share/doc/lilypond/html/Documentation/
56         perl debian/symlink_html_images_to_info_images $(CURDIR)/debian/tmp/usr/share/info/lilypond
57         perl debian/remove_w3c_callback $(CURDIR)/debian/tmp/usr/share/doc/lilypond/ $(CURDIR)/debian/tmp/usr/share/info/
58
59 ## Unfortunately, lilypond is kind of broken, and installs the wrong
60 ## info documentation (missing images) if we call their makefile
61 ## directly. They also don't provide an install rule which doesn't
62 ## install the documentation, which we don't care about for the
63 ## architecture dependent build
64 override_dh_auto_install-arch:
65         for dir in `echo */*makefile|xargs -n 1 dirname|grep -v Documentation`; do \
66                 $(MAKE) --no-builtin-rules PACKAGE=LILYPOND package=lilypond -C $$dir install $(DOC_OPTIONS) prefix=$(CURDIR)/debian/tmp/usr/; \
67         done;
68
69 ## we need to nuke the parser files, because if there is a mistmatch
70 ## between upstreams bison and our bison, the build will fail epically
71 override_dh_auto_clean:
72         rm -f lily/out/parser.*
73         dh_auto_clean
74
75 ## we need to install only the png, jpg, css, ly and english html
76 ## files into the doc-html package, and only the english pdfs into the
77 ## doc-pdf package. Because dh_install doesn't support regexes, we'll
78 ## use find to replace the contents of the .install file before we
79 ## call dh_install
80 override_dh_install:
81         /bin/echo -e 'usr/share/doc/lilypond/html/*/*/*.ly\nusr/share/doc/lilypond/html/*/*/*.png' \
82                 > $(CURDIR)/debian/lilypond-doc-html.install
83         /bin/echo -e 'usr/share/doc/lilypond/html/*/*/*.jpg\nusr/share/doc/lilypond/html/*/*/*.css' \
84                 >> $(CURDIR)/debian/lilypond-doc-html.install
85         find $(CURDIR)/debian/tmp/ -type f \
86                 -regex '.*usr/share/doc/lilypond/.*/[^\.]+.html' \
87                 -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-html.install
88         /bin/echo -e ''> $(CURDIR)/debian/lilypond-doc-pdf.install
89         find $(CURDIR)/debian/tmp/ -type f \
90                 -regex '.*usr/share/doc/lilypond/.*/[^\.]+.pdf' \
91                 -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-pdf.install
92         find $(CURDIR)/debian/tmp/ -type f \
93                 -regex '.*usr/share/doc/lilypond/.*/[^\.]+.preview.pdf' \
94                 -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-pdf.install
95         dh_install --list-missing
96
97 override_dh_python2:
98         dh_python2 --verbose
99         dh_python2 --verbose usr/share/lilypond/$(MAJOR_VERSION).$(MINOR_VERSION).$(PATCH_LEVEL)/python/
100
101 override_dh_compress:
102         dh_compress -X.ly
103
104 override_dh_installdocs:
105         dh_installdocs
106         for a in $(wildcard $(CURDIR)/debian/*.doc-base-special); do \
107                 package=`basename $$a .doc-base-special`; \
108                 install -d debian/$$package/usr/share/doc-base; \
109                 install -m0644 $$a debian/$$package/usr/share/doc-base/$$package; \
110         done;
111
112 ## this rule will update debian/control and the per-language install
113 ## files; all of the files it generates/modifies should be included in
114 ## the Debian package and should not need to be regenerated or
115 ## modified.
116 update-doc-packages:
117         perl debian/update_doc_packages