* methods/{gzip,bzip2}.cc:
[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.
915f3b1c 5# $Id: rules,v 1.68 2004/05/30 18:21:43 mdz Exp $
0f6b2443 6
1b955876
AL
7# LD_LIBRARY_PATH=pwd/debian/apt/usr/lib dh_shlibdeps -papt
8# dpkg: /home/jgg/work/apt2/debian/apt/usr/lib/libapt-pkg.so.2.9 not found.
0f6b2443
AL
9
10# For the deb builder, you can run 'debian/rules cvs-build', which does all
11# steps nescessary to produce a proper source tarball with the CVS/ removed.
12# It builds in debian/cvs-build/apt-<VER>/, and places files in
13# debian/cvs-build/. Optionally, you can run 'debian/rules cvs-mkul' to
14# create ../upload-<VER>, with all the files needed to be uploaded placed
15# in it.
2d18d44e 16
045ba613
AL
17export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
18export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
19
20# FOR AUTOCONF 2.52 AND NEWER ONLY
21ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
22 confflags += --build $(DEB_HOST_GNU_TYPE)
23else
24 confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
25endif
26
b2e465d6 27# See below
0b3e8849 28-include build/environment.mak
b2e465d6 29
39151234
DK
30ifneq (,$(shell which dpkg-buildflags))
31 export CXXFLAGS = $(shell dpkg-buildflags --get CXXFLAGS)
bab7c2cb 32else
39151234
DK
33 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
34 export CXXFLAGS = -O0 -g -Wall
35 else
36 export CXXFLAGS = -O2 -g -Wall
37 endif
bab7c2cb
AL
38endif
39
b2e465d6
AL
40# Default rule
41build:
42
4d745d64 43PKG=apt
a789b983 44DEB_BUILD_PROG:=debuild --preserve-envvar PATH --preserve-envvar CCACHE_DIR -us -uc $(DEB_BUILD_PROG_OPTS)
da78c57f 45APT_DEBVER=$(shell dpkg-parsechangelog |sed -n -e '/^Version:/s/^Version: //p' | sed -e 's/\+.*$$//')
3a42cc3c 46APT_CONFVER=$(shell sed -n -e 's/^AC_DEFINE_UNQUOTED(VERSION,"\(.*\)")/\1/p' configure.in)
c6baaffe 47APT_CVSTAG=$(shell echo "$(APT_DEBVER)" | sed -e 's/^/v/' -e 's/\./_/g')
3a42cc3c 48
cf6371d0
AL
49# Determine the build directory to use
50BASE=.
51ifdef BUILD
52BUILD_POSSIBLE := $(BUILD) $(BASE)/$(BUILD)
53else
70371bc8 54BUILD_POSSIBLE := $(BASE) $(BASE)/build-$(shell uname --machine) $(BASE)/build
cf6371d0
AL
55endif
56BUILDX:= $(foreach i,$(BUILD_POSSIBLE),$(wildcard $(i)/environment.mak*))
57BUILDX:= $(patsubst %/,%,$(firstword $(dir $(BUILDX))))
58override BLD := $(BUILDX)
59
b024fa25
AL
60ifeq ($(words $(BLD)),0)
61override BLD := ./build
62endif
63
b2e465d6 64# Rebuild configure.in to have the correct version from the change log
3a42cc3c 65ifneq ($(APT_DEBVER),$(APT_CONFVER))
3d851670 66ifneq ($(APT_DEBVER),)
3a42cc3c
AL
67.PHONY: configure.in
68configure.in:
eef77d37 69 sed -e 's/$(APT_CONFVER)/$(APT_DEBVER)/' $@ > $@.$$$$ && mv $@.$$$$ $@
9daf15d6 70endif
3a42cc3c
AL
71else
72configure.in:
73endif
2d18d44e 74
b2e465d6 75# APT Programs in apt-utils
fcc0e9d6 76APT_UTILS=ftparchive sortpkgs extracttemplates
b2e465d6 77
2d18d44e
AL
78# Uncomment this to turn on verbose mode.
79#export DH_VERBOSE=1
80
d153f53f 81# Find the libapt-pkg major version for use in other control files
23d84658 82include buildlib/libversion.mak
a5b7cd82
AL
83
84# Determine which package we should provide in the control files
9d378975
JAK
85LIBAPTPKG_PROVIDE=libapt-pkg$(LIBAPTPKG_MAJOR)
86LIBAPTINST_PROVIDE=libapt-inst$(LIBAPTINST_MAJOR)
a5b7cd82 87
3fb71b27 88debian/shlibs.local: apt-pkg/makefile
70371bc8 89 # We have 3 shlibs.local files: One for 'apt', one for 'apt-utils' and
b2e465d6 90 # one for the rest of the packages. This ensures that each package gets
70371bc8 91 # the right overrides…
b2e465d6 92 rm -rf $@ $@.apt $@.apt-utils
44c8b5df 93 echo "libapt-pkg $(LIBAPTPKG_MAJOR)" > $@.apt
b2e465d6 94
44c8b5df
DK
95 echo "libapt-pkg $(LIBAPTPKG_MAJOR) $(LIBAPTPKG_PROVIDE)" > $@.apt-utils
96 echo "libapt-inst $(LIBAPTINST_MAJOR)" >> $@.apt-utils
d153f53f 97
44c8b5df
DK
98 echo "libapt-pkg $(LIBAPTPKG_MAJOR) $(LIBAPTPKG_PROVIDE)" > $@
99 echo "libapt-inst $(LIBAPTINST_MAJOR) $(LIBAPTINST_PROVIDE)" >> $@
201eaabd 100
70371bc8
DK
101build: build/build-stamp
102build-doc: build/build-doc-stamp
b2e465d6
AL
103
104# Note that this is unconditionally done first as part of loading environment.mak
105# The true is needed to force make to reload environment.mak after running
106# configure-stamp. Otherwise we can get stale or invalid, or missing config data.
107build/environment.mak: build/configure-stamp
108 @true
201eaabd 109
b2e465d6
AL
110configure: configure.in
111build/configure-stamp: configure
2d18d44e 112 dh_testdir
2ee6f3cb 113 -mkdir build
9b2e67eb 114 cp COPYING debian/copyright
fdd739c7 115 cd build && CXXFLAGS="$(CXXFLAGS)" ../configure $(confflags)
b2e465d6 116 touch $@
0b5c85b5 117
b2e465d6 118build/build-stamp: build/configure-stamp
2d18d44e 119 # Add here commands to compile the package.
16c76dd2
AL
120 $(MAKE) binary
121 touch $@
122
123build/build-doc-stamp: build/configure-stamp
124 # Add here commands to compile the package.
125 $(MAKE) doc
cf58a7e1 126 touch $@
2d18d44e
AL
127
128clean:
129 dh_testdir
e184b9df 130
70371bc8 131 [ ! -f Makefile ] || $(MAKE) clean distclean
2d18d44e 132 rm -rf build
201eaabd 133
2d18d44e 134 # Add here commands to clean up after the build process.
e184b9df 135 dh_clean debian/copyright debian/shlibs.local debian/shlibs.local.apt debian/shlibs.local.apt-utils
2d18d44e 136
16c76dd2 137binary-indep: apt-doc libapt-pkg-doc
2d18d44e 138# Build architecture-independent files here.
16c76dd2 139libapt-pkg-doc: build-doc debian/shlibs.local
c64bcd92
AL
140 dh_testdir -p$@
141 dh_testroot -p$@
142 dh_clean -p$@ -k
143 dh_installdirs -p$@
3a42cc3c
AL
144#
145# libapt-pkg-doc install
70371bc8
DK
146#
147 dh_installdocs -p$@ $(BLD)/docs/design* \
148 $(BLD)/docs/dpkg-tech* \
149 $(BLD)/docs/files* \
150 $(BLD)/docs/method* \
151 doc/libapt-pkg2_to_3.txt \
d1aa9162 152 doc/style.txt \
dc1e2a06 153 $(BLD)/doc/doxygen/html
c64bcd92 154 dh_installexamples -p$@
c64bcd92 155
c64bcd92
AL
156 dh_installchangelogs -p$@
157 dh_strip -p$@
158 dh_compress -p$@
159 dh_fixperms -p$@
c64bcd92 160 dh_installdeb -p$@
a5b7cd82 161 dh_gencontrol -p$@ -u -Vlibapt-pkg:provides=$(LIBAPTPKG_PROVIDE)
c64bcd92
AL
162 dh_md5sums -p$@
163 dh_builddeb -p$@
2d18d44e 164
16c76dd2
AL
165apt-doc: build-doc
166 dh_testdir -p$@
167 dh_testroot -p$@
168 dh_clean -p$@ -k
169#
170# apt-doc install
171#
172 # Copy the guides
70371bc8
DK
173 dh_installdocs -p$@ $(BLD)/docs/guide*.text \
174 $(BLD)/docs/guide*.html \
175 $(BLD)/docs/offline*.text \
176 $(BLD)/docs/offline*.html
16c76dd2
AL
177 dh_installchangelogs -p$@
178 dh_compress -p$@
179 dh_fixperms -p$@
180 dh_installdeb -p$@
181 dh_gencontrol -p$@
182 dh_md5sums -p$@
183 dh_builddeb -p$@
184
185
2d18d44e 186
3a42cc3c 187# Build architecture-dependent files here.
3a42cc3c 188
e753b480 189binary-arch: apt libapt-pkg-dev apt-utils apt-transport-https
2a52e8c5 190apt_MANPAGES = apt-cache apt-cdrom apt-config apt-get apt-key apt-mark apt-secure apt apt.conf apt_preferences sources.list
425684e0 191apt: build build-doc debian/shlibs.local
c64bcd92
AL
192 dh_testdir -p$@
193 dh_testroot -p$@
194 dh_clean -p$@ -k
503a2291 195 dh_installdirs -p$@
3a42cc3c
AL
196#
197# apt install
198#
b3d44315 199 cp $(BLD)/bin/apt-* debian/$@/usr/bin/
201eaabd 200
b2e465d6 201 # Remove the bits that are in apt-utils
b3d44315 202 rm $(addprefix debian/$@/usr/bin/apt-,$(APT_UTILS))
201eaabd 203
2553a569 204 # install the shared libs
b3d44315
MV
205 find $(BLD)/bin/ -type f -name "libapt-pkg*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \;
206 find $(BLD)/bin/ -type l -name "libapt-pkg*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \;
207
208 cp $(BLD)/bin/methods/* debian/$@/usr/lib/apt/methods/
7ce6bd6a
MV
209 # https has its own package
210 rm debian/$@/usr/lib/apt/methods/https
2553a569 211
b3d44315
MV
212 cp $(BLD)/scripts/dselect/* debian/$@/usr/lib/dpkg/methods/apt/
213 cp -r $(BLD)/locale debian/$@/usr/share/
2d18d44e 214
b3d44315 215 cp debian/bugscript debian/$@/usr/share/bug/apt/script
b30aa0ec 216 cp debian/apt.logrotate debian/$@/etc/logrotate.d/apt
2d18d44e 217
9d2938d4 218 cp debian/apt.conf.autoremove debian/$@/etc/apt/apt.conf.d/01autoremove
2d18d44e 219
acbd8c84
EL
220 # copy lintian override
221 cp share/lintian-overrides debian/$@/usr/share/lintian/overrides/apt
222
be2d3759
MV
223 # make rosetta happy and remove pot files in po/ (but leave stuff
224 # in po/domains/* untouched) and cp *.po into each domain dir
225 rm -f build/po/*.pot
226 rm -f po/*.pot
227
3f599bb7 228 # move the mirror failure script in place
23c5897c
MV
229 #mv debian/$@/usr/bin/apt-report-mirror-failure \
230 # debian/$@/usr/lib/apt/apt-report-mirror-failure \
3f599bb7 231
3fb71b27 232 dh_installexamples -p$@ $(BLD)/docs/examples/*
2a52e8c5 233 dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt_MANPAGES)))
0c132682 234 dh_installcron -p$@
9e980be8 235 dh_installdocs -p$@
c64bcd92
AL
236 dh_installchangelogs -p$@
237 dh_strip -p$@
238 dh_compress -p$@
239 dh_fixperms -p$@
70371bc8 240 dh_makeshlibs -p$@ --major=$(LIBAPTPKG_MAJOR) --version-info='$(LIBAPTPKG_PROVIDE)'
c64bcd92 241 dh_installdeb -p$@
a59397c1 242 dh_shlibdeps -p$@ -l$(CURDIR)/debian/apt/usr/lib:$(CURDIR)/debian/$@/usr/lib -- -Ldebian/shlibs.local.apt
a5b7cd82 243 dh_gencontrol -p$@ -u -Vlibapt-pkg:provides=$(LIBAPTPKG_PROVIDE)
c64bcd92
AL
244 dh_md5sums -p$@
245 dh_builddeb -p$@
246
247libapt-pkg-dev: build debian/shlibs.local
248 dh_testdir -p$@
249 dh_testroot -p$@
250 dh_clean -p$@ -k
251 dh_installdirs -p$@
252#
253# libapt-pkg-dev install
254#
a5b7cd82
AL
255 cp -a $(BLD)/bin/libapt-pkg*.so debian/libapt-pkg-dev/usr/lib/
256 cp -a $(BLD)/bin/libapt-inst*.so debian/libapt-pkg-dev/usr/lib/
201eaabd 257# ln -s libapt-pkg.so.$(LIBAPTPKG_MAJOR) debian/libapt-pkg-dev/usr/lib/libapt-pkg.so
cf6371d0 258 cp $(BLD)/include/apt-pkg/*.h debian/libapt-pkg-dev/usr/include/apt-pkg/
c64bcd92
AL
259
260 dh_installdocs -p$@
c64bcd92
AL
261
262 dh_installchangelogs -p$@
263 dh_strip -p$@
264 dh_compress -p$@
265 dh_fixperms -p$@
c64bcd92 266 dh_installdeb -p$@
4334f918 267 dh_gencontrol -p$@ -u -Vlibapt-pkg:provides=$(LIBAPTPKG_PROVIDE) -Vlibapt-inst:provides=$(LIBAPTINST_PROVIDE)
b2e465d6
AL
268 dh_md5sums -p$@
269 dh_builddeb -p$@
270
2a52e8c5 271apt-utils_MANPAGES = apt-sortpkgs apt-ftparchive apt-extracttemplates
b2e465d6
AL
272apt-utils: build debian/shlibs.local
273 dh_testdir -p$@
274 dh_testroot -p$@
275 dh_clean -p$@ -k
276 dh_installdirs -p$@
277
278 # install the shared libs
a5b7cd82
AL
279 find $(BLD)/bin/ -type f -name "libapt-inst*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \;
280 find $(BLD)/bin/ -type l -name "libapt-inst*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \;
b2e465d6
AL
281
282 cp $(addprefix $(BLD)/bin/apt-,$(APT_UTILS)) debian/$@/usr/bin/
283 dh_installdocs -p$@
53cd7e2b 284 dh_installexamples -p$@
201eaabd 285
b2e465d6 286 # Install the man pages..
2a52e8c5 287 dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt-utils_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt-utils_MANPAGES)))
90ebe30c 288
b2e465d6
AL
289 dh_installchangelogs -p$@
290 dh_strip -p$@
291 dh_compress -p$@
292 dh_fixperms -p$@
70371bc8 293 dh_makeshlibs -p$@ --major=$(LIBAPTINST_MAJOR) --version-info='$(LIBAPTINST_PROVIDE)'
b2e465d6 294 dh_installdeb -p$@
a59397c1 295 dh_shlibdeps -p$@ -l$(CURDIR)/debian/apt/usr/lib:$(CURDIR)/debian/$@/usr/lib -- -Ldebian/shlibs.local.apt-utils
5d622d51 296 dh_gencontrol -p$@ -u -Vlibapt-inst:provides=$(LIBAPTINST_PROVIDE)
c64bcd92
AL
297 dh_md5sums -p$@
298 dh_builddeb -p$@
2d18d44e 299
b5a6232d 300apt-transport-https: build debian/shlibs.local libapt-pkg-dev
d546f98d
MV
301 dh_testdir -p$@
302 dh_testroot -p$@
303 dh_clean -p$@ -k
304 dh_installdirs -p$@
305
306 # install the method
70371bc8 307 mkdir --parents debian/$@/usr/lib/apt/methods
7ce6bd6a 308 cp $(BLD)/bin/methods/https debian/$@/usr/lib/apt/methods
d546f98d 309
370ad5e1 310 dh_installdocs -p$@ debian/apt-transport-https.README
d546f98d
MV
311 dh_installexamples -p$@
312
313 # Install the man pages..
314 dh_installman -p$@
315
316 dh_installchangelogs -p$@
317 dh_strip -p$@
318 dh_compress -p$@
319 dh_fixperms -p$@
320 dh_installdeb -p$@
a59397c1 321 dh_shlibdeps -p$@ -l$(CURDIR)/debian/apt/usr/lib:$(CURDIR)/debian/$@/usr/lib
d546f98d
MV
322 dh_gencontrol -p$@
323 dh_md5sums -p$@
324 dh_builddeb -p$@
325
2d18d44e 326configure:
1d9fd7a2 327 $(MAKE) configure
2d18d44e 328
2d18d44e 329really-clean: clean
70371bc8 330 -find . -name Makefile.in -print0 | xargs --null --no-run-if-empty -- rm -f
2d18d44e
AL
331 find -name ChangeLog | xargs rm -f
332 rm -f l33ch-stamp
333
334binary: binary-indep binary-arch
c64bcd92 335.PHONY: build clean binary-indep binary-arch binary debian/shlibs.local