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