forked from sipb/config-package-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
debconf-divert.mk
72 lines (64 loc) · 2.96 KB
/
debconf-divert.mk
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- mode: makefile; coding: utf-8 -*-
# Copyright © 2007-2008 Anders Kaseorg <andersk@mit.edu> and
# Tim Abbott <tabbott@mit.edu>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2, or (at
# your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
# 02111-1307 USA.
ifndef _cdbs_rules_debconf_divert
_cdbs_rules_debconf_divert = 1
CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), config-package-dev (>= 3.2~)
DEB_DEBCONF_HACK_SCRIPT = /usr/share/config-package-dev/debconf-hack.sh
DEB_DEBCONF_HACK_PACKAGES += $(foreach package,$(DEB_ALL_PACKAGES), \
$(if $(wildcard debian/$(package).debconf-hack),$(package)))
dh_compat_6 := $(shell if [ '$(DH_COMPAT)' -ge 6 ]; then echo y; fi)
$(patsubst %,debian-debconf-hack/%,$(DEB_DEBCONF_HACK_PACKAGES)) :: debian-debconf-hack/%:
set -e; \
{ \
cat $(DEB_DEBCONF_HACK_SCRIPT); \
echo 'if [ ! -f /var/cache/$(cdbs_curpkg).debconf-save ]; then'; \
echo ' debconf_get $(shell cut -d' ' -f2 debian/$(cdbs_curpkg).debconf-hack) >/var/cache/$(cdbs_curpkg).debconf-save'; \
echo ' debconf_set <<EOF'; \
sed 's/$$/ true/' debian/$(cdbs_curpkg).debconf-hack; \
echo 'EOF'; \
echo 'fi'; \
} >> $(CURDIR)/debian/$(cdbs_curpkg).preinst.debhelper
set -e; \
{ \
cat $(DEB_DEBCONF_HACK_SCRIPT); \
echo 'if [ -f /var/cache/$(cdbs_curpkg).debconf-save ]; then'; \
echo ' debconf_set </var/cache/$(cdbs_curpkg).debconf-save'; \
echo ' rm -f /var/cache/$(cdbs_curpkg).debconf-save'; \
echo 'fi'; \
} >> $(CURDIR)/debian/$(cdbs_curpkg).postinst.debhelper
set -e; \
{ \
$(if $(dh_compat_6),, \
if [ -e $(CURDIR)/debian/$(cdbs_curpkg).postrm.debhelper ]; then \
cat $(CURDIR)/debian/$(cdbs_curpkg).postrm.debhelper; \
fi;) \
cat $(DEB_DEBCONF_HACK_SCRIPT); \
echo 'if [ -f /var/cache/$(cdbs_curpkg).debconf-save ]; then'; \
echo ' debconf_set </var/cache/$(cdbs_curpkg).debconf-save'; \
echo ' rm -f /var/cache/$(cdbs_curpkg).debconf-save'; \
echo 'fi'; \
$(if $(dh_compat_6), \
if [ -e $(CURDIR)/debian/$(cdbs_curpkg).postrm.debhelper ]; then \
cat $(CURDIR)/debian/$(cdbs_curpkg).postrm.debhelper; \
fi;) \
} >> $(CURDIR)/debian/$(cdbs_curpkg).postrm.debhelper.new
mv $(CURDIR)/debian/$(cdbs_curpkg).postrm.debhelper.new \
$(CURDIR)/debian/$(cdbs_curpkg).postrm.debhelper
$(patsubst %,binary-fixup/%,$(DEB_DEBCONF_HACK_PACKAGES)) :: binary-fixup/%: debian-debconf-hack/%
endif