source: config-package-dev/debconf-divert.mk @ ab8e2a6

Revision ab8e2a6, 2.4 KB checked in by Tim Abbott <tabbott@…>, 16 years ago (diff)
Initial import of the config-package-dev system. git-svn-id: svn+ssh://svn.mit.edu/athena/trunk/debathena/debathena/config-package-dev@22854 728af825-273c-0410-89f9-f7d3b574a069
  • Property mode set to 100644
Line 
1# -*- mode: makefile; coding: utf-8 -*-
2# Copyright © 2007-2008 Anders Kaseorg <andersk@mit.edu> and
3#                       Tim Abbott <tabbott@mit.edu>
4#
5# This program is free software; you can redistribute it and/or
6# modify it under the terms of the GNU General Public License as
7# published by the Free Software Foundation; either version 2, or (at
8# your option) any later version.
9#
10# This program is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18# 02111-1307 USA.
19
20ifndef _cdbs_rules_debconf_divert
21_cdbs_rules_debconf_divert = 1
22
23CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), config-package-dev (>= 3.2~)
24
25DEB_DEBCONF_HACK_SCRIPT = /usr/share/config-package-dev/debconf-hack.sh
26
27DEB_DEBCONF_HACK_PACKAGES += $(foreach package,$(DEB_ALL_PACKAGES), \
28    $(if $(wildcard debian/$(package).debconf-hack),$(package)))
29
30$(patsubst %,debian-debconf-hack/%,$(DEB_DEBCONF_HACK_PACKAGES)) :: debian-debconf-hack/%:
31        ( \
32            cat $(DEB_DEBCONF_HACK_SCRIPT); \
33            echo 'if [ ! -f /var/cache/$(cdbs_curpkg).debconf-save ]; then'; \
34            echo '    debconf_get $(shell cut -d'       ' -f2 debian/$(cdbs_curpkg).debconf-hack) >/var/cache/$(cdbs_curpkg).debconf-save'; \
35            echo '    debconf_set <<EOF'; \
36            sed 's/$$/  true/' debian/$(cdbs_curpkg).debconf-hack; \
37            echo 'EOF'; \
38            echo 'fi'; \
39        ) >> $(CURDIR)/debian/$(cdbs_curpkg).preinst.debhelper
40        ( \
41            cat $(DEB_DEBCONF_HACK_SCRIPT); \
42            echo 'if [ -f /var/cache/$(cdbs_curpkg).debconf-save ]; then'; \
43            echo '    debconf_set </var/cache/$(cdbs_curpkg).debconf-save'; \
44            echo '    rm -f /var/cache/$(cdbs_curpkg).debconf-save'; \
45            echo 'fi'; \
46        ) >> $(CURDIR)/debian/$(cdbs_curpkg).postinst.debhelper
47        ( \
48            cat $(DEB_DEBCONF_HACK_SCRIPT); \
49            echo 'if [ -f /var/cache/$(cdbs_curpkg).debconf-save ]; then'; \
50            echo '    debconf_set </var/cache/$(cdbs_curpkg).debconf-save'; \
51            echo '    rm -f /var/cache/$(cdbs_curpkg).debconf-save'; \
52            echo 'fi'; \
53        ) >> $(CURDIR)/debian/$(cdbs_curpkg).postrm.debhelper
54
55$(patsubst %,binary-fixup/%,$(DEB_DEBCONF_HACK_PACKAGES)) :: binary-fixup/%: debian-debconf-hack/%
56
57endif
Note: See TracBrowser for help on using the repository browser.