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