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