blob: a781c17b086d9eda7c9507eabfedd8a5e10eec08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/usr/bin/make -f
DISTRIBUTION = $(shell lsb_release -i | cut -f2 -d':' | tr -d '\t')
LDFLAGS+=-Wl,--as-needed
%:
dh $@ --with=quilt
override_dh_quilt_unpatch:
dh_quilt_unpatch
ifeq ("$(DISTRIBUTION)", "Ubuntu")
if test -e debian/patches/series.old; then \
mv debian/patches/series.old debian/patches/series ;\
fi
endif
override_dh_quilt_patch:
ifeq ("$(DISTRIBUTION)", "Ubuntu")
cp debian/patches/series debian/patches/series.old
echo 20-lpi.patch >> debian/patches/series
endif
dh_quilt_patch
# Fixes FTBFS
override_dh_auto_test:
# Autoreconf due to 01_lpi.patch
override_dh_auto_configure:
[ -e gnome-doc-utils.make ] || \
ln -s /usr/share/gnome-doc-utils/gnome-doc-utils.make
autoreconf -f -i -s
dh_auto_configure
override_dh_auto_build:
cd po; intltool-update -p
dh_auto_build
|