initial librarification push
[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)
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
fcc0e9d6 65APT_UTILS=ftparchive sortpkgs extracttemplates
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
149daa16
DK
73# do not fail as we are just experimenting with symbol files for now
74export DPKG_GENSYMBOLS_CHECK_LEVEL=0
201eaabd 75
70371bc8
DK
76build: build/build-stamp
77build-doc: build/build-doc-stamp
b2e465d6
AL
78
79# Note that this is unconditionally done first as part of loading environment.mak
80# The true is needed to force make to reload environment.mak after running
81# configure-stamp. Otherwise we can get stale or invalid, or missing config data.
82build/environment.mak: build/configure-stamp
83 @true
201eaabd 84
b2e465d6
AL
85configure: configure.in
86build/configure-stamp: configure
2d18d44e 87 dh_testdir
2ee6f3cb 88 -mkdir build
9b2e67eb 89 cp COPYING debian/copyright
fdd739c7 90 cd build && CXXFLAGS="$(CXXFLAGS)" ../configure $(confflags)
b2e465d6 91 touch $@
0b5c85b5 92
b2e465d6 93build/build-stamp: build/configure-stamp
2d18d44e 94 # Add here commands to compile the package.
16c76dd2
AL
95 $(MAKE) binary
96 touch $@
97
98build/build-doc-stamp: build/configure-stamp
99 # Add here commands to compile the package.
100 $(MAKE) doc
cf58a7e1 101 touch $@
2d18d44e
AL
102
103clean:
104 dh_testdir
e184b9df 105
70371bc8 106 [ ! -f Makefile ] || $(MAKE) clean distclean
2d18d44e 107 rm -rf build
201eaabd 108
16c76dd2 109binary-indep: apt-doc libapt-pkg-doc
2d18d44e 110# Build architecture-independent files here.
149daa16 111libapt-pkg-doc: build-doc
c64bcd92
AL
112 dh_testdir -p$@
113 dh_testroot -p$@
af7a92c3 114 dh_prep -p$@
c64bcd92 115 dh_installdirs -p$@
3a42cc3c
AL
116#
117# libapt-pkg-doc install
70371bc8 118#
e9d27d26
DK
119 # remove doxygen's embedded jquery as we don't use it anyway (#622147)
120 rm -f $(BLD)/doc/doxygen/html/jquery.js
121
70371bc8
DK
122 dh_installdocs -p$@ $(BLD)/docs/design* \
123 $(BLD)/docs/dpkg-tech* \
124 $(BLD)/docs/files* \
125 $(BLD)/docs/method* \
126 doc/libapt-pkg2_to_3.txt \
d1aa9162 127 doc/style.txt \
dc1e2a06 128 $(BLD)/doc/doxygen/html
c64bcd92 129 dh_installexamples -p$@
c64bcd92 130
c64bcd92
AL
131 dh_installchangelogs -p$@
132 dh_strip -p$@
133 dh_compress -p$@
134 dh_fixperms -p$@
c64bcd92 135 dh_installdeb -p$@
782486e8 136 dh_gencontrol -p$@
c64bcd92
AL
137 dh_md5sums -p$@
138 dh_builddeb -p$@
2d18d44e 139
16c76dd2
AL
140apt-doc: build-doc
141 dh_testdir -p$@
142 dh_testroot -p$@
af7a92c3 143 dh_prep -p$@
16c76dd2
AL
144#
145# apt-doc install
146#
147 # Copy the guides
70371bc8
DK
148 dh_installdocs -p$@ $(BLD)/docs/guide*.text \
149 $(BLD)/docs/guide*.html \
150 $(BLD)/docs/offline*.text \
151 $(BLD)/docs/offline*.html
16c76dd2
AL
152 dh_installchangelogs -p$@
153 dh_compress -p$@
154 dh_fixperms -p$@
155 dh_installdeb -p$@
156 dh_gencontrol -p$@
157 dh_md5sums -p$@
158 dh_builddeb -p$@
159
160
2d18d44e 161
3a42cc3c 162# Build architecture-dependent files here.
3a42cc3c 163
782486e8 164binary-arch: libapt-pkg4.10 libapt-inst1.2 apt libapt-pkg-dev apt-utils apt-transport-https
2a52e8c5 165apt_MANPAGES = apt-cache apt-cdrom apt-config apt-get apt-key apt-mark apt-secure apt apt.conf apt_preferences sources.list
149daa16 166apt: build build-doc
c64bcd92
AL
167 dh_testdir -p$@
168 dh_testroot -p$@
af7a92c3 169 dh_prep -p$@
503a2291 170 dh_installdirs -p$@
3a42cc3c
AL
171#
172# apt install
173#
9d2938d4 174 cp debian/apt.conf.autoremove debian/$@/etc/apt/apt.conf.d/01autoremove
2d18d44e 175
be2d3759
MV
176 # make rosetta happy and remove pot files in po/ (but leave stuff
177 # in po/domains/* untouched) and cp *.po into each domain dir
178 rm -f build/po/*.pot
179 rm -f po/*.pot
180
2cf8c58b
DK
181 dh_install -p$@ --sourcedir=$(BLD)
182
183 # Remove the bits that are in apt-utils
184 rm $(addprefix debian/$@/usr/bin/apt-,$(APT_UTILS))
185
186 # https has its own package
187 rm debian/$@/usr/lib/apt/methods/https
188
3f599bb7 189 # move the mirror failure script in place
23c5897c
MV
190 #mv debian/$@/usr/bin/apt-report-mirror-failure \
191 # debian/$@/usr/lib/apt/apt-report-mirror-failure \
3f599bb7 192
304c041b 193 dh_bugfiles -p$@
063a17d7 194 dh_lintian -p$@
3fb71b27 195 dh_installexamples -p$@ $(BLD)/docs/examples/*
2a52e8c5 196 dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt_MANPAGES)))
0c132682 197 dh_installcron -p$@
9e980be8 198 dh_installdocs -p$@
c64bcd92 199 dh_installchangelogs -p$@
2cf8c58b 200 dh_installlogrotate -p$@
c64bcd92
AL
201 dh_strip -p$@
202 dh_compress -p$@
203 dh_fixperms -p$@
149daa16 204 dh_makeshlibs -p$@
c64bcd92 205 dh_installdeb -p$@
782486e8
MV
206 dh_shlibdeps -p$@ -l$(CURDIR)/debian/libapt-inst2.1/usr/lib:$(CURDIR)/debian/libapt-pkg4.10/usr/lib
207 dh_gencontrol -p$@
c64bcd92
AL
208 dh_md5sums -p$@
209 dh_builddeb -p$@
210
149daa16 211libapt-pkg-dev: build
c64bcd92
AL
212 dh_testdir -p$@
213 dh_testroot -p$@
af7a92c3 214 dh_prep -p$@
c64bcd92
AL
215 dh_installdirs -p$@
216#
217# libapt-pkg-dev install
218#
2cf8c58b 219 dh_install -p$@ --sourcedir=$(BLD)
c64bcd92 220 dh_installdocs -p$@
c64bcd92
AL
221 dh_installchangelogs -p$@
222 dh_strip -p$@
223 dh_compress -p$@
224 dh_fixperms -p$@
c64bcd92 225 dh_installdeb -p$@
782486e8 226 dh_gencontrol -p$@
b2e465d6
AL
227 dh_md5sums -p$@
228 dh_builddeb -p$@
229
2a52e8c5 230apt-utils_MANPAGES = apt-sortpkgs apt-ftparchive apt-extracttemplates
149daa16 231apt-utils: build
b2e465d6
AL
232 dh_testdir -p$@
233 dh_testroot -p$@
af7a92c3 234 dh_prep -p$@
b2e465d6
AL
235 dh_installdirs -p$@
236
b2e465d6 237 cp $(addprefix $(BLD)/bin/apt-,$(APT_UTILS)) debian/$@/usr/bin/
2cf8c58b
DK
238
239 dh_install -p$@ --sourcedir=$(BLD)
b2e465d6 240 dh_installdocs -p$@
53cd7e2b 241 dh_installexamples -p$@
201eaabd 242
b2e465d6 243 # Install the man pages..
2a52e8c5 244 dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt-utils_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt-utils_MANPAGES)))
90ebe30c 245
b2e465d6
AL
246 dh_installchangelogs -p$@
247 dh_strip -p$@
248 dh_compress -p$@
249 dh_fixperms -p$@
149daa16 250 dh_makeshlibs -p$@
b2e465d6 251 dh_installdeb -p$@
782486e8
MV
252 dh_shlibdeps -p$@ -l$(CURDIR)/debian/libapt-inst2.1/usr/lib:$(CURDIR)/debian/libapt-pkg4.10/usr/lib
253 dh_gencontrol -p$@
254 dh_md5sums -p$@
255 dh_builddeb -p$@
256
257libapt-pkg4.10: build
258 dh_testdir -p$@
259 dh_testroot -p$@
260 dh_prep -p$@
261 dh_installdirs -p$@
262
263 dh_install -p$@ --sourcedir=$(BLD)
264 dh_installchangelogs -p$@
265 dh_strip -p$@
266 dh_compress -p$@
267 dh_fixperms -p$@
268 dh_installdeb -p$@
269 dh_shlibdeps -p$@
270 dh_gencontrol -p$@
271 dh_md5sums -p$@
272 dh_builddeb -p$@
273
274libapt-inst1.2: build
275 dh_testdir -p$@
276 dh_testroot -p$@
277 dh_prep -p$@
278 dh_installdirs -p$@
279
280 dh_install -p$@ --sourcedir=$(BLD)
281 dh_installchangelogs -p$@
282 dh_strip -p$@
283 dh_compress -p$@
284 dh_fixperms -p$@
285 dh_installdeb -p$@
286 dh_shlibdeps -p$@ -l$(CURDIR)/debian/libapt-pkg4.10/usr/lib
287 dh_gencontrol -p$@
c64bcd92
AL
288 dh_md5sums -p$@
289 dh_builddeb -p$@
2d18d44e 290
149daa16 291apt-transport-https: build libapt-pkg-dev
d546f98d
MV
292 dh_testdir -p$@
293 dh_testroot -p$@
af7a92c3 294 dh_prep -p$@
d546f98d
MV
295 dh_installdirs -p$@
296
2cf8c58b 297 dh_install -p$@ --sourcedir=$(BLD)
370ad5e1 298 dh_installdocs -p$@ debian/apt-transport-https.README
d546f98d
MV
299 dh_installexamples -p$@
300
301 # Install the man pages..
302 dh_installman -p$@
303
304 dh_installchangelogs -p$@
305 dh_strip -p$@
306 dh_compress -p$@
307 dh_fixperms -p$@
308 dh_installdeb -p$@
a59397c1 309 dh_shlibdeps -p$@ -l$(CURDIR)/debian/apt/usr/lib:$(CURDIR)/debian/$@/usr/lib
d546f98d
MV
310 dh_gencontrol -p$@
311 dh_md5sums -p$@
312 dh_builddeb -p$@
313
2d18d44e 314configure:
1d9fd7a2 315 $(MAKE) configure
2d18d44e 316
2d18d44e 317really-clean: clean
70371bc8 318 -find . -name Makefile.in -print0 | xargs --null --no-run-if-empty -- rm -f
2d18d44e
AL
319 find -name ChangeLog | xargs rm -f
320 rm -f l33ch-stamp
321
322binary: binary-indep binary-arch
149daa16 323.PHONY: build clean binary-indep binary-arch binary