]>
Commit | Line | Data |
---|---|---|
2d18d44e AL |
1 | #!/usr/bin/make -f |
2 | # Made with the aid of dh_make, by Craig Small | |
3 | # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. | |
4 | # Some lines taken from debmake, by Christoph Lameter. | |
2d18d44e | 5 | |
045ba613 AL |
6 | export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
7 | export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) | |
cb1a690c | 8 | export DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) |
045ba613 AL |
9 | |
10 | # FOR AUTOCONF 2.52 AND NEWER ONLY | |
11 | ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) | |
12 | confflags += --build $(DEB_HOST_GNU_TYPE) | |
13 | else | |
14 | confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) | |
15 | endif | |
16 | ||
b2e465d6 | 17 | # See below |
0b3e8849 | 18 | -include build/environment.mak |
b2e465d6 | 19 | |
39151234 DK |
20 | ifneq (,$(shell which dpkg-buildflags)) |
21 | export CXXFLAGS = $(shell dpkg-buildflags --get CXXFLAGS) | |
e5379452 DK |
22 | export LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS) |
23 | export CPPFLAGS = $(shell dpkg-buildflags --get CPPFLAGS) | |
bab7c2cb | 24 | else |
39151234 DK |
25 | ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) |
26 | export CXXFLAGS = -O0 -g -Wall | |
27 | else | |
28 | export CXXFLAGS = -O2 -g -Wall | |
29 | endif | |
bab7c2cb AL |
30 | endif |
31 | ||
b2e465d6 AL |
32 | # Default rule |
33 | build: | |
34 | ||
4d745d64 | 35 | PKG=apt |
a789b983 | 36 | DEB_BUILD_PROG:=debuild --preserve-envvar PATH --preserve-envvar CCACHE_DIR -us -uc $(DEB_BUILD_PROG_OPTS) |
3a42cc3c | 37 | |
cf6371d0 AL |
38 | # Determine the build directory to use |
39 | BASE=. | |
40 | ifdef BUILD | |
41 | BUILD_POSSIBLE := $(BUILD) $(BASE)/$(BUILD) | |
42 | else | |
70371bc8 | 43 | BUILD_POSSIBLE := $(BASE) $(BASE)/build-$(shell uname --machine) $(BASE)/build |
cf6371d0 AL |
44 | endif |
45 | BUILDX:= $(foreach i,$(BUILD_POSSIBLE),$(wildcard $(i)/environment.mak*)) | |
46 | BUILDX:= $(patsubst %/,%,$(firstword $(dir $(BUILDX)))) | |
47 | override BLD := $(BUILDX) | |
48 | ||
b024fa25 AL |
49 | ifeq ($(words $(BLD)),0) |
50 | override BLD := ./build | |
51 | endif | |
52 | ||
b2e465d6 | 53 | # APT Programs in apt-utils |
9c30a078 | 54 | APT_UTILS=ftparchive sortpkgs extracttemplates |
b2e465d6 | 55 | |
2d18d44e AL |
56 | # Uncomment this to turn on verbose mode. |
57 | #export DH_VERBOSE=1 | |
58 | ||
d153f53f | 59 | # Find the libapt-pkg major version for use in other control files |
23d84658 | 60 | include buildlib/libversion.mak |
a5b7cd82 | 61 | |
7eee083a MV |
62 | # Determine which library package names to use |
63 | LIBAPT_PKG=libapt-pkg$(LIBAPTPKG_MAJOR) | |
64 | LIBAPT_INST=libapt-inst$(LIBAPTINST_MAJOR) | |
65 | ||
149daa16 DK |
66 | # do not fail as we are just experimenting with symbol files for now |
67 | export DPKG_GENSYMBOLS_CHECK_LEVEL=0 | |
201eaabd | 68 | |
ee7ddf12 | 69 | build-binary: build/build-binary-stamp |
1098ae37 | 70 | build-debiandoc: build/build-debiandoc-stamp |
e4bc41c7 | 71 | build-manpages: build/build-manpages-stamp |
b2e465d6 AL |
72 | |
73 | # Note that this is unconditionally done first as part of loading environment.mak | |
74 | # The true is needed to force make to reload environment.mak after running | |
75 | # configure-stamp. Otherwise we can get stale or invalid, or missing config data. | |
76 | build/environment.mak: build/configure-stamp | |
77 | @true | |
201eaabd | 78 | |
ed9ba607 | 79 | configure: configure.ac |
b2e465d6 | 80 | build/configure-stamp: configure |
2d18d44e | 81 | dh_testdir |
2ee6f3cb | 82 | -mkdir build |
9b2e67eb | 83 | cp COPYING debian/copyright |
e5379452 | 84 | cd build && CXXFLAGS="$(CXXFLAGS)" LDFLAGS="$(LDFLAGS)" CPPFLAGS="$(CPPFLAGS)" ../configure $(confflags) |
b2e465d6 | 85 | touch $@ |
0b5c85b5 | 86 | |
ee7ddf12 | 87 | build/build-binary-stamp: build/configure-stamp |
2d18d44e | 88 | # Add here commands to compile the package. |
16c76dd2 | 89 | $(MAKE) binary |
84736cfa MV |
90 | # compat symlink for the locale split |
91 | mkdir -p build/usr/share | |
92 | cd build/usr/share && ln -f -s ../../locale . | |
afd7b358 | 93 | # compile and run tests |
224bdefc | 94 | ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS))) |
6e08a00f | 95 | $(MAKE) test |
224bdefc DK |
96 | else |
97 | @echo "Tests DISABLED" | |
98 | endif | |
16c76dd2 AL |
99 | touch $@ |
100 | ||
1098ae37 | 101 | build/build-debiandoc-stamp: build/configure-stamp |
16c76dd2 | 102 | # Add here commands to compile the package. |
1098ae37 | 103 | $(MAKE) debiandoc |
cf58a7e1 | 104 | touch $@ |
2d18d44e | 105 | |
e4bc41c7 DK |
106 | build/build-manpages-stamp: build/configure-stamp |
107 | # Add here commands to compile the package. | |
108 | $(MAKE) manpages | |
109 | touch $@ | |
110 | ||
2d18d44e AL |
111 | clean: |
112 | dh_testdir | |
8bb62daf | 113 | dh_clean |
e184b9df | 114 | |
70371bc8 | 115 | [ ! -f Makefile ] || $(MAKE) clean distclean |
2d18d44e | 116 | rm -rf build |
cb1a690c MV |
117 | rm -f debian/$(LIBAPT_PKG).install debian/$(LIBAPT_INST).install \ |
118 | debian/libapt-pkg-dev.install | |
201eaabd | 119 | |
cb1a690c MV |
120 | debian/%.install: debian/%.install.in |
121 | sed 's/@DEB_HOST_MULTIARCH@/$(DEB_HOST_MULTIARCH)/g' $< > $@ | |
122 | ||
2d18d44e | 123 | # Build architecture-independent files here. |
1098ae37 | 124 | libapt-pkg-doc: build-debiandoc |
c64bcd92 AL |
125 | dh_testdir -p$@ |
126 | dh_testroot -p$@ | |
af7a92c3 | 127 | dh_prep -p$@ |
c64bcd92 | 128 | dh_installdirs -p$@ |
3a42cc3c AL |
129 | # |
130 | # libapt-pkg-doc install | |
70371bc8 DK |
131 | # |
132 | dh_installdocs -p$@ $(BLD)/docs/design* \ | |
133 | $(BLD)/docs/dpkg-tech* \ | |
134 | $(BLD)/docs/files* \ | |
135 | $(BLD)/docs/method* \ | |
136 | doc/libapt-pkg2_to_3.txt \ | |
d1aa9162 | 137 | doc/style.txt \ |
dc1e2a06 | 138 | $(BLD)/doc/doxygen/html |
c64bcd92 | 139 | dh_installexamples -p$@ |
c64bcd92 | 140 | |
c64bcd92 AL |
141 | dh_installchangelogs -p$@ |
142 | dh_strip -p$@ | |
143 | dh_compress -p$@ | |
144 | dh_fixperms -p$@ | |
c64bcd92 | 145 | dh_installdeb -p$@ |
782486e8 | 146 | dh_gencontrol -p$@ |
c64bcd92 AL |
147 | dh_md5sums -p$@ |
148 | dh_builddeb -p$@ | |
2d18d44e | 149 | |
1098ae37 | 150 | apt-doc: build-debiandoc |
16c76dd2 AL |
151 | dh_testdir -p$@ |
152 | dh_testroot -p$@ | |
af7a92c3 | 153 | dh_prep -p$@ |
16c76dd2 AL |
154 | # |
155 | # apt-doc install | |
156 | # | |
157 | # Copy the guides | |
70371bc8 DK |
158 | dh_installdocs -p$@ $(BLD)/docs/guide*.text \ |
159 | $(BLD)/docs/guide*.html \ | |
160 | $(BLD)/docs/offline*.text \ | |
161 | $(BLD)/docs/offline*.html | |
16c76dd2 AL |
162 | dh_installchangelogs -p$@ |
163 | dh_compress -p$@ | |
164 | dh_fixperms -p$@ | |
165 | dh_installdeb -p$@ | |
166 | dh_gencontrol -p$@ | |
167 | dh_md5sums -p$@ | |
168 | dh_builddeb -p$@ | |
169 | ||
170 | ||
2d18d44e | 171 | |
3a42cc3c | 172 | # Build architecture-dependent files here. |
3a42cc3c | 173 | |
0425a56b | 174 | apt_MANPAGES = apt apt-cache apt-cdrom apt-config apt-get apt-key apt-mark apt-secure apt apt.conf apt_preferences sources.list |
ee7ddf12 | 175 | apt: build-binary build-manpages |
c64bcd92 AL |
176 | dh_testdir -p$@ |
177 | dh_testroot -p$@ | |
af7a92c3 | 178 | dh_prep -p$@ |
503a2291 | 179 | dh_installdirs -p$@ |
3a42cc3c AL |
180 | # |
181 | # apt install | |
182 | # | |
9d2938d4 | 183 | cp debian/apt.conf.autoremove debian/$@/etc/apt/apt.conf.d/01autoremove |
a86f8516 SL |
184 | cp debian/apt.auto-removal.sh debian/$@/etc/kernel/postinst.d/apt-auto-removal |
185 | chmod 755 debian/$@/etc/kernel/postinst.d/apt-auto-removal | |
2d18d44e | 186 | |
be2d3759 MV |
187 | # make rosetta happy and remove pot files in po/ (but leave stuff |
188 | # in po/domains/* untouched) and cp *.po into each domain dir | |
189 | rm -f build/po/*.pot | |
190 | rm -f po/*.pot | |
191 | ||
2cf8c58b DK |
192 | dh_install -p$@ --sourcedir=$(BLD) |
193 | ||
194 | # Remove the bits that are in apt-utils | |
9c30a078 | 195 | rm $(addprefix debian/$@/usr/bin/apt-,$(APT_UTILS) dump-solver internal-solver) |
2cf8c58b DK |
196 | |
197 | # https has its own package | |
198 | rm debian/$@/usr/lib/apt/methods/https | |
199 | ||
3f599bb7 | 200 | # move the mirror failure script in place |
23c5897c MV |
201 | #mv debian/$@/usr/bin/apt-report-mirror-failure \ |
202 | # debian/$@/usr/lib/apt/apt-report-mirror-failure \ | |
3f599bb7 | 203 | |
304c041b | 204 | dh_bugfiles -p$@ |
063a17d7 | 205 | dh_lintian -p$@ |
3fb71b27 | 206 | dh_installexamples -p$@ $(BLD)/docs/examples/* |
ac62eb38 | 207 | dh_installman -p$@ $(wildcard $(patsubst %,doc/en/%.[158],$(apt_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt_MANPAGES))) |
0c132682 | 208 | dh_installcron -p$@ |
9e980be8 | 209 | dh_installdocs -p$@ |
c64bcd92 | 210 | dh_installchangelogs -p$@ |
2cf8c58b | 211 | dh_installlogrotate -p$@ |
c64bcd92 AL |
212 | dh_strip -p$@ |
213 | dh_compress -p$@ | |
214 | dh_fixperms -p$@ | |
c64bcd92 | 215 | dh_installdeb -p$@ |
bd5e34e8 | 216 | dh_shlibdeps -p$@ |
782486e8 | 217 | dh_gencontrol -p$@ |
c64bcd92 AL |
218 | dh_md5sums -p$@ |
219 | dh_builddeb -p$@ | |
220 | ||
ee7ddf12 | 221 | libapt-pkg-dev: build-binary debian/libapt-pkg-dev.install |
c64bcd92 AL |
222 | dh_testdir -p$@ |
223 | dh_testroot -p$@ | |
af7a92c3 | 224 | dh_prep -p$@ |
c64bcd92 AL |
225 | dh_installdirs -p$@ |
226 | # | |
227 | # libapt-pkg-dev install | |
228 | # | |
2cf8c58b | 229 | dh_install -p$@ --sourcedir=$(BLD) |
c64bcd92 | 230 | dh_installdocs -p$@ |
c64bcd92 AL |
231 | dh_installchangelogs -p$@ |
232 | dh_strip -p$@ | |
233 | dh_compress -p$@ | |
234 | dh_fixperms -p$@ | |
c64bcd92 | 235 | dh_installdeb -p$@ |
ceab242d | 236 | dh_gencontrol -p$@ -- -Vlibapt-pkg-name=$(LIBAPT_PKG) -Vlibapt-inst-name=$(LIBAPT_INST) |
b2e465d6 AL |
237 | dh_md5sums -p$@ |
238 | dh_builddeb -p$@ | |
239 | ||
2a52e8c5 | 240 | apt-utils_MANPAGES = apt-sortpkgs apt-ftparchive apt-extracttemplates |
ee7ddf12 | 241 | apt-utils: build-binary build-manpages |
b2e465d6 AL |
242 | dh_testdir -p$@ |
243 | dh_testroot -p$@ | |
af7a92c3 | 244 | dh_prep -p$@ |
b2e465d6 AL |
245 | dh_installdirs -p$@ |
246 | ||
b2e465d6 | 247 | cp $(addprefix $(BLD)/bin/apt-,$(APT_UTILS)) debian/$@/usr/bin/ |
66b6fe05 | 248 | cp $(BLD)/bin/apt-dump-solver debian/$@/usr/lib/apt/solvers/dump |
9c30a078 | 249 | cp $(BLD)/bin/apt-internal-solver debian/$@/usr/lib/apt/solvers/apt |
2cf8c58b DK |
250 | |
251 | dh_install -p$@ --sourcedir=$(BLD) | |
66b6fe05 | 252 | dh_link -p$@ |
b2e465d6 | 253 | dh_installdocs -p$@ |
53cd7e2b | 254 | dh_installexamples -p$@ |
201eaabd | 255 | |
b2e465d6 | 256 | # Install the man pages.. |
ac62eb38 | 257 | dh_installman -p$@ $(wildcard $(patsubst %,doc/en/%.[158],$(apt-utils_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt-utils_MANPAGES))) |
90ebe30c | 258 | |
b2e465d6 AL |
259 | dh_installchangelogs -p$@ |
260 | dh_strip -p$@ | |
261 | dh_compress -p$@ | |
262 | dh_fixperms -p$@ | |
149daa16 | 263 | dh_makeshlibs -p$@ |
b2e465d6 | 264 | dh_installdeb -p$@ |
bd5e34e8 | 265 | dh_shlibdeps -p$@ |
782486e8 MV |
266 | dh_gencontrol -p$@ |
267 | dh_md5sums -p$@ | |
268 | dh_builddeb -p$@ | |
269 | ||
ee7ddf12 | 270 | $(LIBAPT_PKG): build-binary debian/$(LIBAPT_PKG).install |
782486e8 MV |
271 | dh_testdir -p$@ |
272 | dh_testroot -p$@ | |
273 | dh_prep -p$@ | |
274 | dh_installdirs -p$@ | |
275 | ||
276 | dh_install -p$@ --sourcedir=$(BLD) | |
08c9b191 | 277 | dh_installdocs -p$@ |
782486e8 MV |
278 | dh_installchangelogs -p$@ |
279 | dh_strip -p$@ | |
280 | dh_compress -p$@ | |
281 | dh_fixperms -p$@ | |
f521559b | 282 | dh_makeshlibs -p$@ |
08c9b191 | 283 | dh_installdeb -p$@ |
782486e8 MV |
284 | dh_shlibdeps -p$@ |
285 | dh_gencontrol -p$@ | |
286 | dh_md5sums -p$@ | |
287 | dh_builddeb -p$@ | |
288 | ||
ee7ddf12 | 289 | $(LIBAPT_INST): build-binary debian/$(LIBAPT_INST).install |
782486e8 MV |
290 | dh_testdir -p$@ |
291 | dh_testroot -p$@ | |
292 | dh_prep -p$@ | |
293 | dh_installdirs -p$@ | |
294 | ||
295 | dh_install -p$@ --sourcedir=$(BLD) | |
08c9b191 | 296 | dh_installdocs -p$@ |
782486e8 MV |
297 | dh_installchangelogs -p$@ |
298 | dh_strip -p$@ | |
299 | dh_compress -p$@ | |
300 | dh_fixperms -p$@ | |
f521559b | 301 | dh_makeshlibs -p$@ |
08c9b191 | 302 | dh_installdeb -p$@ |
bd5e34e8 | 303 | dh_shlibdeps -p$@ |
782486e8 | 304 | dh_gencontrol -p$@ |
c64bcd92 AL |
305 | dh_md5sums -p$@ |
306 | dh_builddeb -p$@ | |
2d18d44e | 307 | |
ee7ddf12 | 308 | apt-transport-https: build-binary libapt-pkg-dev |
d546f98d MV |
309 | dh_testdir -p$@ |
310 | dh_testroot -p$@ | |
af7a92c3 | 311 | dh_prep -p$@ |
d546f98d MV |
312 | dh_installdirs -p$@ |
313 | ||
2cf8c58b | 314 | dh_install -p$@ --sourcedir=$(BLD) |
370ad5e1 | 315 | dh_installdocs -p$@ debian/apt-transport-https.README |
d546f98d MV |
316 | dh_installexamples -p$@ |
317 | ||
318 | # Install the man pages.. | |
319 | dh_installman -p$@ | |
320 | ||
321 | dh_installchangelogs -p$@ | |
322 | dh_strip -p$@ | |
323 | dh_compress -p$@ | |
324 | dh_fixperms -p$@ | |
325 | dh_installdeb -p$@ | |
bd5e34e8 | 326 | dh_shlibdeps -p$@ |
d546f98d MV |
327 | dh_gencontrol -p$@ |
328 | dh_md5sums -p$@ | |
329 | dh_builddeb -p$@ | |
330 | ||
2d18d44e | 331 | configure: |
1d9fd7a2 | 332 | $(MAKE) configure |
2d18d44e | 333 | |
ee7ddf12 DK |
334 | # translate targets to targets required by debian-policy |
335 | binary-arch: $(LIBAPT_PKG) $(LIBAPT_INST) apt libapt-pkg-dev apt-utils apt-transport-https | |
336 | binary-indep: apt-doc libapt-pkg-doc | |
2d18d44e | 337 | binary: binary-indep binary-arch |
ee7ddf12 DK |
338 | build-arch: build-binary |
339 | build-indep: build-manpages build-debiandoc | |
340 | build: build-indep build-arch | |
341 | ||
149daa16 | 342 | .PHONY: build clean binary-indep binary-arch binary |