]>
Commit | Line | Data |
---|---|---|
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 |
17 | export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
18 | export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) | |
19 | ||
20 | # FOR AUTOCONF 2.52 AND NEWER ONLY | |
21 | ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) | |
22 | confflags += --build $(DEB_HOST_GNU_TYPE) | |
23 | else | |
24 | confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) | |
25 | endif | |
26 | ||
b2e465d6 | 27 | # See below |
0b3e8849 | 28 | -include build/environment.mak |
b2e465d6 | 29 | |
bab7c2cb | 30 | ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) |
bad95184 | 31 | export CXXFLAGS = -O0 -g -Wall |
bab7c2cb | 32 | else |
bad95184 | 33 | export CXXFLAGS = -O2 -g -Wall |
bab7c2cb AL |
34 | endif |
35 | ||
b2e465d6 AL |
36 | # Default rule |
37 | build: | |
38 | ||
4d745d64 | 39 | PKG=apt |
a789b983 | 40 | DEB_BUILD_PROG:=debuild --preserve-envvar PATH --preserve-envvar CCACHE_DIR -us -uc $(DEB_BUILD_PROG_OPTS) |
da78c57f | 41 | APT_DEBVER=$(shell dpkg-parsechangelog |sed -n -e '/^Version:/s/^Version: //p' | sed -e 's/\+.*$$//') |
3a42cc3c | 42 | APT_CONFVER=$(shell sed -n -e 's/^AC_DEFINE_UNQUOTED(VERSION,"\(.*\)")/\1/p' configure.in) |
c6baaffe | 43 | APT_CVSTAG=$(shell echo "$(APT_DEBVER)" | sed -e 's/^/v/' -e 's/\./_/g') |
3a42cc3c | 44 | |
cf6371d0 AL |
45 | # Determine the build directory to use |
46 | BASE=. | |
47 | ifdef BUILD | |
48 | BUILD_POSSIBLE := $(BUILD) $(BASE)/$(BUILD) | |
49 | else | |
70371bc8 | 50 | BUILD_POSSIBLE := $(BASE) $(BASE)/build-$(shell uname --machine) $(BASE)/build |
cf6371d0 AL |
51 | endif |
52 | BUILDX:= $(foreach i,$(BUILD_POSSIBLE),$(wildcard $(i)/environment.mak*)) | |
53 | BUILDX:= $(patsubst %/,%,$(firstword $(dir $(BUILDX)))) | |
54 | override BLD := $(BUILDX) | |
55 | ||
b024fa25 AL |
56 | ifeq ($(words $(BLD)),0) |
57 | override BLD := ./build | |
58 | endif | |
59 | ||
b2e465d6 | 60 | # Rebuild configure.in to have the correct version from the change log |
3a42cc3c | 61 | ifneq ($(APT_DEBVER),$(APT_CONFVER)) |
3d851670 | 62 | ifneq ($(APT_DEBVER),) |
3a42cc3c AL |
63 | .PHONY: configure.in |
64 | configure.in: | |
eef77d37 | 65 | sed -e 's/$(APT_CONFVER)/$(APT_DEBVER)/' $@ > $@.$$$$ && mv $@.$$$$ $@ |
9daf15d6 | 66 | endif |
3a42cc3c AL |
67 | else |
68 | configure.in: | |
69 | endif | |
2d18d44e | 70 | |
b2e465d6 | 71 | # APT Programs in apt-utils |
fcc0e9d6 | 72 | APT_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 | 78 | include buildlib/libversion.mak |
a5b7cd82 AL |
79 | |
80 | # Determine which package we should provide in the control files | |
9d378975 JAK |
81 | LIBAPTPKG_PROVIDE=libapt-pkg$(LIBAPTPKG_MAJOR) |
82 | LIBAPTINST_PROVIDE=libapt-inst$(LIBAPTINST_MAJOR) | |
a5b7cd82 | 83 | |
3fb71b27 | 84 | debian/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 |
97 | build: build/build-stamp |
98 | build-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. | |
103 | build/environment.mak: build/configure-stamp | |
104 | @true | |
201eaabd | 105 | |
b2e465d6 AL |
106 | configure: configure.in |
107 | build/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 | 114 | build/build-stamp: build/configure-stamp |
2d18d44e | 115 | # Add here commands to compile the package. |
16c76dd2 AL |
116 | $(MAKE) binary |
117 | touch $@ | |
118 | ||
119 | build/build-doc-stamp: build/configure-stamp | |
120 | # Add here commands to compile the package. | |
121 | $(MAKE) doc | |
cf58a7e1 | 122 | touch $@ |
2d18d44e AL |
123 | |
124 | clean: | |
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 | 133 | binary-indep: apt-doc libapt-pkg-doc |
2d18d44e | 134 | # Build architecture-independent files here. |
16c76dd2 | 135 | libapt-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 \ | |
148 | doc/style.txt | |
c64bcd92 | 149 | dh_installexamples -p$@ |
c64bcd92 | 150 | |
c64bcd92 AL |
151 | dh_installchangelogs -p$@ |
152 | dh_strip -p$@ | |
153 | dh_compress -p$@ | |
154 | dh_fixperms -p$@ | |
c64bcd92 | 155 | dh_installdeb -p$@ |
a5b7cd82 | 156 | dh_gencontrol -p$@ -u -Vlibapt-pkg:provides=$(LIBAPTPKG_PROVIDE) |
c64bcd92 AL |
157 | dh_md5sums -p$@ |
158 | dh_builddeb -p$@ | |
2d18d44e | 159 | |
16c76dd2 AL |
160 | apt-doc: build-doc |
161 | dh_testdir -p$@ | |
162 | dh_testroot -p$@ | |
163 | dh_clean -p$@ -k | |
164 | # | |
165 | # apt-doc install | |
166 | # | |
167 | # Copy the guides | |
70371bc8 DK |
168 | dh_installdocs -p$@ $(BLD)/docs/guide*.text \ |
169 | $(BLD)/docs/guide*.html \ | |
170 | $(BLD)/docs/offline*.text \ | |
171 | $(BLD)/docs/offline*.html | |
16c76dd2 AL |
172 | dh_installchangelogs -p$@ |
173 | dh_compress -p$@ | |
174 | dh_fixperms -p$@ | |
175 | dh_installdeb -p$@ | |
176 | dh_gencontrol -p$@ | |
177 | dh_md5sums -p$@ | |
178 | dh_builddeb -p$@ | |
179 | ||
180 | ||
2d18d44e | 181 | |
3a42cc3c | 182 | # Build architecture-dependent files here. |
3a42cc3c | 183 | |
e753b480 | 184 | binary-arch: apt libapt-pkg-dev apt-utils apt-transport-https |
2a52e8c5 | 185 | apt_MANPAGES = apt-cache apt-cdrom apt-config apt-get apt-key apt-mark apt-secure apt apt.conf apt_preferences sources.list |
425684e0 | 186 | apt: build build-doc debian/shlibs.local |
c64bcd92 AL |
187 | dh_testdir -p$@ |
188 | dh_testroot -p$@ | |
189 | dh_clean -p$@ -k | |
503a2291 | 190 | dh_installdirs -p$@ |
3a42cc3c AL |
191 | # |
192 | # apt install | |
193 | # | |
b3d44315 | 194 | cp $(BLD)/bin/apt-* debian/$@/usr/bin/ |
201eaabd | 195 | |
b2e465d6 | 196 | # Remove the bits that are in apt-utils |
b3d44315 | 197 | rm $(addprefix debian/$@/usr/bin/apt-,$(APT_UTILS)) |
201eaabd | 198 | |
2553a569 | 199 | # install the shared libs |
b3d44315 MV |
200 | find $(BLD)/bin/ -type f -name "libapt-pkg*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \; |
201 | find $(BLD)/bin/ -type l -name "libapt-pkg*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \; | |
202 | ||
203 | cp $(BLD)/bin/methods/* debian/$@/usr/lib/apt/methods/ | |
7ce6bd6a MV |
204 | # https has its own package |
205 | rm debian/$@/usr/lib/apt/methods/https | |
2553a569 | 206 | |
b3d44315 MV |
207 | cp $(BLD)/scripts/dselect/* debian/$@/usr/lib/dpkg/methods/apt/ |
208 | cp -r $(BLD)/locale debian/$@/usr/share/ | |
2d18d44e | 209 | |
b3d44315 | 210 | cp debian/bugscript debian/$@/usr/share/bug/apt/script |
b30aa0ec | 211 | cp debian/apt.logrotate debian/$@/etc/logrotate.d/apt |
2d18d44e | 212 | |
9d2938d4 | 213 | cp debian/apt.conf.autoremove debian/$@/etc/apt/apt.conf.d/01autoremove |
2d18d44e | 214 | |
acbd8c84 EL |
215 | # copy lintian override |
216 | cp share/lintian-overrides debian/$@/usr/share/lintian/overrides/apt | |
217 | ||
be2d3759 MV |
218 | # make rosetta happy and remove pot files in po/ (but leave stuff |
219 | # in po/domains/* untouched) and cp *.po into each domain dir | |
220 | rm -f build/po/*.pot | |
221 | rm -f po/*.pot | |
222 | ||
3fb71b27 | 223 | dh_installexamples -p$@ $(BLD)/docs/examples/* |
2a52e8c5 | 224 | dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt_MANPAGES))) |
0c132682 | 225 | dh_installcron -p$@ |
9e980be8 | 226 | dh_installdocs -p$@ |
c64bcd92 AL |
227 | dh_installchangelogs -p$@ |
228 | dh_strip -p$@ | |
229 | dh_compress -p$@ | |
230 | dh_fixperms -p$@ | |
70371bc8 | 231 | dh_makeshlibs -p$@ --major=$(LIBAPTPKG_MAJOR) --version-info='$(LIBAPTPKG_PROVIDE)' |
c64bcd92 | 232 | dh_installdeb -p$@ |
70371bc8 | 233 | dh_shlibdeps -p$@ -l$(pwd)/debian/apt/usr/lib:$(pwd)/debian/$@/usr/lib -- -Ldebian/shlibs.local.apt |
a5b7cd82 | 234 | dh_gencontrol -p$@ -u -Vlibapt-pkg:provides=$(LIBAPTPKG_PROVIDE) |
c64bcd92 AL |
235 | dh_md5sums -p$@ |
236 | dh_builddeb -p$@ | |
237 | ||
238 | libapt-pkg-dev: build debian/shlibs.local | |
239 | dh_testdir -p$@ | |
240 | dh_testroot -p$@ | |
241 | dh_clean -p$@ -k | |
242 | dh_installdirs -p$@ | |
243 | # | |
244 | # libapt-pkg-dev install | |
245 | # | |
a5b7cd82 AL |
246 | cp -a $(BLD)/bin/libapt-pkg*.so debian/libapt-pkg-dev/usr/lib/ |
247 | cp -a $(BLD)/bin/libapt-inst*.so debian/libapt-pkg-dev/usr/lib/ | |
201eaabd | 248 | # ln -s libapt-pkg.so.$(LIBAPTPKG_MAJOR) debian/libapt-pkg-dev/usr/lib/libapt-pkg.so |
cf6371d0 | 249 | cp $(BLD)/include/apt-pkg/*.h debian/libapt-pkg-dev/usr/include/apt-pkg/ |
c64bcd92 AL |
250 | |
251 | dh_installdocs -p$@ | |
c64bcd92 AL |
252 | |
253 | dh_installchangelogs -p$@ | |
254 | dh_strip -p$@ | |
255 | dh_compress -p$@ | |
256 | dh_fixperms -p$@ | |
c64bcd92 | 257 | dh_installdeb -p$@ |
4334f918 | 258 | dh_gencontrol -p$@ -u -Vlibapt-pkg:provides=$(LIBAPTPKG_PROVIDE) -Vlibapt-inst:provides=$(LIBAPTINST_PROVIDE) |
b2e465d6 AL |
259 | dh_md5sums -p$@ |
260 | dh_builddeb -p$@ | |
261 | ||
2a52e8c5 | 262 | apt-utils_MANPAGES = apt-sortpkgs apt-ftparchive apt-extracttemplates |
b2e465d6 AL |
263 | apt-utils: build debian/shlibs.local |
264 | dh_testdir -p$@ | |
265 | dh_testroot -p$@ | |
266 | dh_clean -p$@ -k | |
267 | dh_installdirs -p$@ | |
268 | ||
269 | # install the shared libs | |
a5b7cd82 AL |
270 | find $(BLD)/bin/ -type f -name "libapt-inst*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \; |
271 | find $(BLD)/bin/ -type l -name "libapt-inst*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \; | |
b2e465d6 AL |
272 | |
273 | cp $(addprefix $(BLD)/bin/apt-,$(APT_UTILS)) debian/$@/usr/bin/ | |
274 | dh_installdocs -p$@ | |
53cd7e2b | 275 | dh_installexamples -p$@ |
201eaabd | 276 | |
b2e465d6 | 277 | # Install the man pages.. |
2a52e8c5 | 278 | dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt-utils_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt-utils_MANPAGES))) |
90ebe30c | 279 | |
b2e465d6 AL |
280 | dh_installchangelogs -p$@ |
281 | dh_strip -p$@ | |
282 | dh_compress -p$@ | |
283 | dh_fixperms -p$@ | |
70371bc8 | 284 | dh_makeshlibs -p$@ --major=$(LIBAPTINST_MAJOR) --version-info='$(LIBAPTINST_PROVIDE)' |
b2e465d6 | 285 | dh_installdeb -p$@ |
70371bc8 | 286 | dh_shlibdeps -p$@ -l$(pwd)/debian/apt/usr/lib:$(pwd)/debian/$@/usr/lib -- -Ldebian/shlibs.local.apt-utils |
5d622d51 | 287 | dh_gencontrol -p$@ -u -Vlibapt-inst:provides=$(LIBAPTINST_PROVIDE) |
c64bcd92 AL |
288 | dh_md5sums -p$@ |
289 | dh_builddeb -p$@ | |
2d18d44e | 290 | |
b5a6232d | 291 | apt-transport-https: build debian/shlibs.local libapt-pkg-dev |
d546f98d MV |
292 | dh_testdir -p$@ |
293 | dh_testroot -p$@ | |
294 | dh_clean -p$@ -k | |
295 | dh_installdirs -p$@ | |
296 | ||
297 | # install the method | |
70371bc8 | 298 | mkdir --parents debian/$@/usr/lib/apt/methods |
7ce6bd6a | 299 | cp $(BLD)/bin/methods/https debian/$@/usr/lib/apt/methods |
d546f98d | 300 | |
370ad5e1 | 301 | dh_installdocs -p$@ debian/apt-transport-https.README |
d546f98d MV |
302 | dh_installexamples -p$@ |
303 | ||
304 | # Install the man pages.. | |
305 | dh_installman -p$@ | |
306 | ||
307 | dh_installchangelogs -p$@ | |
308 | dh_strip -p$@ | |
309 | dh_compress -p$@ | |
310 | dh_fixperms -p$@ | |
311 | dh_installdeb -p$@ | |
70371bc8 | 312 | dh_shlibdeps -p$@ -l$(pwd)/debian/apt/usr/lib:$(pwd)/debian/$@/usr/lib |
d546f98d MV |
313 | dh_gencontrol -p$@ |
314 | dh_md5sums -p$@ | |
315 | dh_builddeb -p$@ | |
316 | ||
2d18d44e | 317 | configure: |
1d9fd7a2 | 318 | $(MAKE) configure |
2d18d44e | 319 | |
2d18d44e | 320 | really-clean: clean |
70371bc8 | 321 | -find . -name Makefile.in -print0 | xargs --null --no-run-if-empty -- rm -f |
2d18d44e AL |
322 | find -name ChangeLog | xargs rm -f |
323 | rm -f l33ch-stamp | |
324 | ||
325 | binary: binary-indep binary-arch | |
c64bcd92 | 326 | .PHONY: build clean binary-indep binary-arch binary debian/shlibs.local |