~ubuntu-branches/debian/lenny/xserver-xorg-video-suncg14/lenny

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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#!/usr/bin/make -f
# $Id$

# Automagical conversion of autoreconf results into quilt patches.

# Copyright 2006 Eugene Konev
#
# Licensed under the GNU General Public License, version 2.  See the file
# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.

# The idea behind this is storing changes produced by autoreconf as a 
# separate patch on quilt stack (on top of stack actually).
# The only usable target here is 'autoreconf`. Other targets are not
# supposed to be called directly. DO NOT invoke them, unless you know what
# you are doing.
# The autoreconf target will check if files with names in $(RECONF_CHECKFILES)
# were changed during patching (from upstream version or from previously
# autoreconfed version) and call actual autoreconfing if they were.
# The actual autoreconfing target (doautoreconf) WILL FAIL after 
# calling autoreconf and pushing changes into quilt stack by design. It
# should never be invoked by automatic build process.
# The proposed use is adding autoreconf into clean's prerequisites before
# xsfclean like:
# - clean: xsfclean
# + clean: autoreconf xsfclean
# This will ensure it is called when you build package with dpkg-buildpackage.

# This dir will be used for producing diff of autoreconfed tree
RECONF_DIR := xsfautoreconf

# This files will be checked for changes
RECONF_CHECKFILES += configure.ac Makefile.am

# This files will not be hardlinked but copied
RECONF_NOLINKFILES += aclocal.m4

# This files/dirs will be pruned after autoreconf run
RECONF_PRUNEFILES += autom4te.cache config.h.in~ aclocal.m4~

# Internal target. Never invoke directly.
stampdir_target+=check.md5sum
$(STAMP_DIR)/check.md5sum:
	dh_testdir
	$(MAKE) -f debian/rules prepare
	for F in $(RECONF_CHECKFILES); do \
	  find . -wholename ./$(STAMP_DIR) -prune -o -name $$F -print | \
	    LC_ALL=C sort | xargs --no-run-if-empty md5sum >>$@; \
	done

# Internal target. Never invoke directly.
$(STAMP_DIR)/clean.md5sum:
	dh_testdir
	$(MAKE) -f debian/rules unpatch
	rm -f $(STAMP_DIR)/check.md5sum
	$(MAKE) -f debian/rules $(STAMP_DIR)/check.md5sum
	mv $(STAMP_DIR)/check.md5sum $@

# Internal target. Never invoke directly.
debian/patches/patched.md5sum:
	dh_testdir
	[ -f $(STAMP_DIR)/clean.md5sum ] || \
	  $(MAKE) -f debian/rules $(STAMP_DIR)/clean.md5sum

	$(MAKE) -f debian/rules patch
	rm -f $(STAMP_DIR)/check.md5sum
	$(MAKE) -f debian/rules $(STAMP_DIR)/check.md5sum
	if ! diff $(STAMP_DIR)/clean.md5sum \
	          $(STAMP_DIR)/check.md5sum > /dev/null; then \
	  $(MAKE) -f debian/rules doautoreconf; \
	else \
	  mv $(STAMP_DIR)/check.md5sum $@; \
	fi

# Internal target. Never invoke directly.
,PHONY: doautoreconf
doautoreconf: patch
	quilt push -a >>$(STAMP_DIR)/log/autoreconf 2>&1 || true
	if quilt applied | grep ^autoreconf.diff$$ > /dev/null; then \
	  quilt pop -a >>$(STAMP_DIR)/log/autoreconf 2>&1; \
	  quilt rename -p autoreconf.diff autoreconf-old.diff \
	       >>$(STAMP_DIR)/log/autoreconf 2>&1; \
	  quilt delete autoreconf-old.diff >>$(STAMP_DIR)/log/autoreconf 2>&1; \
	  quilt push -a >>$(STAMP_DIR)/log/autoreconf 2>&1; \
	fi

	if [ -e $(RECONF_DIR) ]; then \
	  echo "ERROR: $(RECONF_DIR) already exists. Cleanup by hand"; \
	  exit 1; \
	fi

	mkdir -p $(RECONF_DIR)/before
	find . -maxdepth 1 -mindepth 1 ! -wholename ./$(RECONF_DIR) \
	     -a ! -wholename ./debian -a ! -wholename ./patches \
	     -a ! -wholename ./.pc -a ! -wholename ./$(STAMP_DIR) | \
	  xargs -i{} cp -al {} $(RECONF_DIR)/before/

	for F in $(RECONF_PRUNEFILES); do \
	  find $(RECONF_DIR)/before -name $$F -print | \
	    xargs --no-run-if-empty rm -r; \
	done

	cp -al $(RECONF_DIR)/before $(RECONF_DIR)/after

	for F in $(RECONF_NOLINKFILES); do \
	  find . -wholename ./$(RECONF_DIR) -prune -o -wholename ./debian \
	       -prune -o -wholename ./$(STAMP_DIR) -prune -o -name $$F \
	       -print | \
	    xargs --no-run-if-empty -i{} cp --remove-destination {} \
	      $(RECONF_DIR)/after/{}; \
	done

	cd $(RECONF_DIR)/after && autoreconf -v --install && \
	  for F in $(RECONF_PRUNEFILES); do \
	    find . -name $$F -print | \
	      xargs --no-run-if-empty rm -r; \
	  done

	cd $(RECONF_DIR) && diff -Nru before after > autoreconf.diff || true

	quilt import $(RECONF_DIR)/autoreconf.diff \
	      >>$(STAMP_DIR)/log/autoreconf 2>&1

	mv $(STAMP_DIR)/check.md5sum debian/patches/patched.md5sum

	rm -r $(RECONF_DIR) && rm -f patches/autoreconf-old.diff

	@echo 
	@echo "****************************************************************"
	@echo "  This target is made to fail INTENTIONALLY. It should NEVER    "
	@echo "  be invoked during automatic builds.                           "
	@echo 
	@echo "  This target was invoked because you added/removed/changed     "
	@echo "  patches which modify either configure.ac or Makefile.am and,  "
	@echo "  thus, require autoreconf run. And all autoreconfing should    "
	@echo "  happen before uploading.                                      "
	@echo 
	@echo "  (See also debian/xsfbs/xsfbs-autoreconf.mk)                   "
	@echo 
	@echo "  If you see this message, autoreconfing actually SUCCEEDED,    "
	@echo "  and your build should finish successfully, when rerun.        "
	@echo "****************************************************************"
	@echo 
	exit 1;

.PHONY: autoreconf
autoreconf: debian/patches/patched.md5sum patch $(STAMP_DIR)/check.md5sum
	if ! diff $(STAMP_DIR)/check.md5sum \
	          debian/patches/patched.md5sum > /dev/null; then \
	  $(MAKE) -f debian/rules doautoreconf; \
	fi