]>
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. | |
2d18d44e | 5 | |
045ba613 AL |
6 | export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
7 | export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) | |
8 | ||
9 | # FOR AUTOCONF 2.52 AND NEWER ONLY | |
10 | ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) | |
11 | confflags += --build $(DEB_HOST_GNU_TYPE) | |
12 | else | |
13 | confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) | |
14 | endif | |
15 | ||
b2e465d6 | 16 | # See below |
0b3e8849 | 17 | -include build/environment.mak |
b2e465d6 | 18 | |
39151234 DK |
19 | ifneq (,$(shell which dpkg-buildflags)) |
20 | export CXXFLAGS = $(shell dpkg-buildflags --get CXXFLAGS) | |
bab7c2cb | 21 | else |
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 |
27 | endif |
28 | ||
b2e465d6 AL |
29 | # Default rule |
30 | build: | |
31 | ||
4d745d64 | 32 | PKG=apt |
a789b983 | 33 | DEB_BUILD_PROG:=debuild --preserve-envvar PATH --preserve-envvar CCACHE_DIR -us -uc $(DEB_BUILD_PROG_OPTS) |
da78c57f | 34 | APT_DEBVER=$(shell dpkg-parsechangelog |sed -n -e '/^Version:/s/^Version: //p' | sed -e 's/\+.*$$//') |
3a42cc3c | 35 | APT_CONFVER=$(shell sed -n -e 's/^AC_DEFINE_UNQUOTED(VERSION,"\(.*\)")/\1/p' configure.in) |
c6baaffe | 36 | APT_CVSTAG=$(shell echo "$(APT_DEBVER)" | sed -e 's/^/v/' -e 's/\./_/g') |
3a42cc3c | 37 | |
cf6371d0 AL |
38 | # Determine the build directory to use |
39 | BASE=. | |
40 | ifdef BUILD | |
41 | BUILD_POSSIBLE := $(BUILD) $(BASE)/$(BUILD) | |
42 | else | |
70371bc8 | 43 | BUILD_POSSIBLE := $(BASE) $(BASE)/build-$(shell uname --machine) $(BASE)/build |
cf6371d0 AL |
44 | endif |
45 | BUILDX:= $(foreach i,$(BUILD_POSSIBLE),$(wildcard $(i)/environment.mak*)) | |
46 | BUILDX:= $(patsubst %/,%,$(firstword $(dir $(BUILDX)))) | |
47 | override BLD := $(BUILDX) | |
48 | ||
b024fa25 AL |
49 | ifeq ($(words $(BLD)),0) |
50 | override BLD := ./build | |
51 | endif | |
52 | ||
b2e465d6 | 53 | # Rebuild configure.in to have the correct version from the change log |
3a42cc3c | 54 | ifneq ($(APT_DEBVER),$(APT_CONFVER)) |
3d851670 | 55 | ifneq ($(APT_DEBVER),) |
3a42cc3c AL |
56 | .PHONY: configure.in |
57 | configure.in: | |
eef77d37 | 58 | sed -e 's/$(APT_CONFVER)/$(APT_DEBVER)/' $@ > $@.$$$$ && mv $@.$$$$ $@ |
9daf15d6 | 59 | endif |
3a42cc3c AL |
60 | else |
61 | configure.in: | |
62 | endif | |
2d18d44e | 63 | |
b2e465d6 | 64 | # APT Programs in apt-utils |
fcc0e9d6 | 65 | APT_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 | 71 | include buildlib/libversion.mak |
a5b7cd82 AL |
72 | |
73 | # Determine which package we should provide in the control files | |
9d378975 JAK |
74 | LIBAPTPKG_PROVIDE=libapt-pkg$(LIBAPTPKG_MAJOR) |
75 | LIBAPTINST_PROVIDE=libapt-inst$(LIBAPTINST_MAJOR) | |
a5b7cd82 | 76 | |
149daa16 DK |
77 | # do not fail as we are just experimenting with symbol files for now |
78 | export DPKG_GENSYMBOLS_CHECK_LEVEL=0 | |
201eaabd | 79 | |
70371bc8 DK |
80 | build: build/build-stamp |
81 | build-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. | |
86 | build/environment.mak: build/configure-stamp | |
87 | @true | |
201eaabd | 88 | |
b2e465d6 AL |
89 | configure: configure.in |
90 | build/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 | 97 | build/build-stamp: build/configure-stamp |
2d18d44e | 98 | # Add here commands to compile the package. |
16c76dd2 AL |
99 | $(MAKE) binary |
100 | touch $@ | |
101 | ||
102 | build/build-doc-stamp: build/configure-stamp | |
103 | # Add here commands to compile the package. | |
104 | $(MAKE) doc | |
cf58a7e1 | 105 | touch $@ |
2d18d44e AL |
106 | |
107 | clean: | |
108 | dh_testdir | |
e184b9df | 109 | |
70371bc8 | 110 | [ ! -f Makefile ] || $(MAKE) clean distclean |
2d18d44e | 111 | rm -rf build |
201eaabd | 112 | |
16c76dd2 | 113 | binary-indep: apt-doc libapt-pkg-doc |
2d18d44e | 114 | # Build architecture-independent files here. |
149daa16 | 115 | libapt-pkg-doc: build-doc |
c64bcd92 AL |
116 | dh_testdir -p$@ |
117 | dh_testroot -p$@ | |
af7a92c3 | 118 | dh_prep -p$@ |
c64bcd92 | 119 | dh_installdirs -p$@ |
3a42cc3c AL |
120 | # |
121 | # libapt-pkg-doc install | |
70371bc8 DK |
122 | # |
123 | dh_installdocs -p$@ $(BLD)/docs/design* \ | |
124 | $(BLD)/docs/dpkg-tech* \ | |
125 | $(BLD)/docs/files* \ | |
126 | $(BLD)/docs/method* \ | |
127 | doc/libapt-pkg2_to_3.txt \ | |
d1aa9162 | 128 | doc/style.txt \ |
dc1e2a06 | 129 | $(BLD)/doc/doxygen/html |
c64bcd92 | 130 | dh_installexamples -p$@ |
c64bcd92 | 131 | |
c64bcd92 AL |
132 | dh_installchangelogs -p$@ |
133 | dh_strip -p$@ | |
134 | dh_compress -p$@ | |
135 | dh_fixperms -p$@ | |
c64bcd92 | 136 | dh_installdeb -p$@ |
d0648096 | 137 | dh_gencontrol -p$@ -- -Vlibapt-pkg:provides=$(LIBAPTPKG_PROVIDE) |
c64bcd92 AL |
138 | dh_md5sums -p$@ |
139 | dh_builddeb -p$@ | |
2d18d44e | 140 | |
16c76dd2 AL |
141 | apt-doc: build-doc |
142 | dh_testdir -p$@ | |
143 | dh_testroot -p$@ | |
af7a92c3 | 144 | dh_prep -p$@ |
16c76dd2 AL |
145 | # |
146 | # apt-doc install | |
147 | # | |
148 | # Copy the guides | |
70371bc8 DK |
149 | dh_installdocs -p$@ $(BLD)/docs/guide*.text \ |
150 | $(BLD)/docs/guide*.html \ | |
151 | $(BLD)/docs/offline*.text \ | |
152 | $(BLD)/docs/offline*.html | |
16c76dd2 AL |
153 | dh_installchangelogs -p$@ |
154 | dh_compress -p$@ | |
155 | dh_fixperms -p$@ | |
156 | dh_installdeb -p$@ | |
157 | dh_gencontrol -p$@ | |
158 | dh_md5sums -p$@ | |
159 | dh_builddeb -p$@ | |
160 | ||
161 | ||
2d18d44e | 162 | |
3a42cc3c | 163 | # Build architecture-dependent files here. |
3a42cc3c | 164 | |
e753b480 | 165 | binary-arch: apt libapt-pkg-dev apt-utils apt-transport-https |
2a52e8c5 | 166 | apt_MANPAGES = apt-cache apt-cdrom apt-config apt-get apt-key apt-mark apt-secure apt apt.conf apt_preferences sources.list |
149daa16 | 167 | apt: build build-doc |
c64bcd92 AL |
168 | dh_testdir -p$@ |
169 | dh_testroot -p$@ | |
af7a92c3 | 170 | dh_prep -p$@ |
503a2291 | 171 | dh_installdirs -p$@ |
3a42cc3c AL |
172 | # |
173 | # apt install | |
174 | # | |
b3d44315 | 175 | cp $(BLD)/bin/apt-* debian/$@/usr/bin/ |
201eaabd | 176 | |
b2e465d6 | 177 | # Remove the bits that are in apt-utils |
b3d44315 | 178 | rm $(addprefix debian/$@/usr/bin/apt-,$(APT_UTILS)) |
201eaabd | 179 | |
2553a569 | 180 | # install the shared libs |
b3d44315 MV |
181 | find $(BLD)/bin/ -type f -name "libapt-pkg*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \; |
182 | find $(BLD)/bin/ -type l -name "libapt-pkg*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \; | |
183 | ||
184 | cp $(BLD)/bin/methods/* debian/$@/usr/lib/apt/methods/ | |
7ce6bd6a MV |
185 | # https has its own package |
186 | rm debian/$@/usr/lib/apt/methods/https | |
2553a569 | 187 | |
b3d44315 MV |
188 | cp $(BLD)/scripts/dselect/* debian/$@/usr/lib/dpkg/methods/apt/ |
189 | cp -r $(BLD)/locale debian/$@/usr/share/ | |
2d18d44e | 190 | |
b30aa0ec | 191 | cp debian/apt.logrotate debian/$@/etc/logrotate.d/apt |
2d18d44e | 192 | |
9d2938d4 | 193 | cp debian/apt.conf.autoremove debian/$@/etc/apt/apt.conf.d/01autoremove |
2d18d44e | 194 | |
be2d3759 MV |
195 | # make rosetta happy and remove pot files in po/ (but leave stuff |
196 | # in po/domains/* untouched) and cp *.po into each domain dir | |
197 | rm -f build/po/*.pot | |
198 | rm -f po/*.pot | |
199 | ||
3f599bb7 | 200 | # move the mirror failure script in place |
23c5897c MV |
201 | #mv debian/$@/usr/bin/apt-report-mirror-failure \ |
202 | # debian/$@/usr/lib/apt/apt-report-mirror-failure \ | |
3f599bb7 | 203 | |
304c041b | 204 | dh_bugfiles -p$@ |
063a17d7 | 205 | dh_lintian -p$@ |
3fb71b27 | 206 | dh_installexamples -p$@ $(BLD)/docs/examples/* |
2a52e8c5 | 207 | dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt_MANPAGES))) |
0c132682 | 208 | dh_installcron -p$@ |
9e980be8 | 209 | dh_installdocs -p$@ |
c64bcd92 AL |
210 | dh_installchangelogs -p$@ |
211 | dh_strip -p$@ | |
212 | dh_compress -p$@ | |
213 | dh_fixperms -p$@ | |
149daa16 | 214 | dh_makeshlibs -p$@ |
c64bcd92 | 215 | dh_installdeb -p$@ |
149daa16 | 216 | dh_shlibdeps -p$@ -l$(CURDIR)/debian/apt/usr/lib:$(CURDIR)/debian/$@/usr/lib |
d0648096 | 217 | dh_gencontrol -p$@ -- -Vlibapt-pkg:provides=$(LIBAPTPKG_PROVIDE) |
c64bcd92 AL |
218 | dh_md5sums -p$@ |
219 | dh_builddeb -p$@ | |
220 | ||
149daa16 | 221 | libapt-pkg-dev: build |
c64bcd92 AL |
222 | dh_testdir -p$@ |
223 | dh_testroot -p$@ | |
af7a92c3 | 224 | dh_prep -p$@ |
c64bcd92 AL |
225 | dh_installdirs -p$@ |
226 | # | |
227 | # libapt-pkg-dev install | |
228 | # | |
a5b7cd82 AL |
229 | cp -a $(BLD)/bin/libapt-pkg*.so debian/libapt-pkg-dev/usr/lib/ |
230 | cp -a $(BLD)/bin/libapt-inst*.so debian/libapt-pkg-dev/usr/lib/ | |
201eaabd | 231 | # ln -s libapt-pkg.so.$(LIBAPTPKG_MAJOR) debian/libapt-pkg-dev/usr/lib/libapt-pkg.so |
cf6371d0 | 232 | cp $(BLD)/include/apt-pkg/*.h debian/libapt-pkg-dev/usr/include/apt-pkg/ |
c64bcd92 AL |
233 | |
234 | dh_installdocs -p$@ | |
c64bcd92 AL |
235 | |
236 | dh_installchangelogs -p$@ | |
237 | dh_strip -p$@ | |
238 | dh_compress -p$@ | |
239 | dh_fixperms -p$@ | |
c64bcd92 | 240 | dh_installdeb -p$@ |
d0648096 | 241 | dh_gencontrol -p$@ -- -Vlibapt-pkg:provides=$(LIBAPTPKG_PROVIDE) -Vlibapt-inst:provides=$(LIBAPTINST_PROVIDE) |
b2e465d6 AL |
242 | dh_md5sums -p$@ |
243 | dh_builddeb -p$@ | |
244 | ||
2a52e8c5 | 245 | apt-utils_MANPAGES = apt-sortpkgs apt-ftparchive apt-extracttemplates |
149daa16 | 246 | apt-utils: build |
b2e465d6 AL |
247 | dh_testdir -p$@ |
248 | dh_testroot -p$@ | |
af7a92c3 | 249 | dh_prep -p$@ |
b2e465d6 AL |
250 | dh_installdirs -p$@ |
251 | ||
252 | # install the shared libs | |
a5b7cd82 AL |
253 | find $(BLD)/bin/ -type f -name "libapt-inst*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \; |
254 | find $(BLD)/bin/ -type l -name "libapt-inst*.so.*" -exec cp -a "{}" debian/$@/usr/lib/ \; | |
b2e465d6 AL |
255 | |
256 | cp $(addprefix $(BLD)/bin/apt-,$(APT_UTILS)) debian/$@/usr/bin/ | |
257 | dh_installdocs -p$@ | |
53cd7e2b | 258 | dh_installexamples -p$@ |
201eaabd | 259 | |
b2e465d6 | 260 | # Install the man pages.. |
2a52e8c5 | 261 | dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt-utils_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt-utils_MANPAGES))) |
90ebe30c | 262 | |
b2e465d6 AL |
263 | dh_installchangelogs -p$@ |
264 | dh_strip -p$@ | |
265 | dh_compress -p$@ | |
266 | dh_fixperms -p$@ | |
149daa16 | 267 | dh_makeshlibs -p$@ |
b2e465d6 | 268 | dh_installdeb -p$@ |
149daa16 | 269 | dh_shlibdeps -p$@ -l$(CURDIR)/debian/apt/usr/lib:$(CURDIR)/debian/$@/usr/lib |
d0648096 | 270 | dh_gencontrol -p$@ -- -Vlibapt-inst:provides=$(LIBAPTINST_PROVIDE) |
c64bcd92 AL |
271 | dh_md5sums -p$@ |
272 | dh_builddeb -p$@ | |
2d18d44e | 273 | |
149daa16 | 274 | apt-transport-https: build libapt-pkg-dev |
d546f98d MV |
275 | dh_testdir -p$@ |
276 | dh_testroot -p$@ | |
af7a92c3 | 277 | dh_prep -p$@ |
d546f98d MV |
278 | dh_installdirs -p$@ |
279 | ||
280 | # install the method | |
70371bc8 | 281 | mkdir --parents debian/$@/usr/lib/apt/methods |
7ce6bd6a | 282 | cp $(BLD)/bin/methods/https debian/$@/usr/lib/apt/methods |
d546f98d | 283 | |
370ad5e1 | 284 | dh_installdocs -p$@ debian/apt-transport-https.README |
d546f98d MV |
285 | dh_installexamples -p$@ |
286 | ||
287 | # Install the man pages.. | |
288 | dh_installman -p$@ | |
289 | ||
290 | dh_installchangelogs -p$@ | |
291 | dh_strip -p$@ | |
292 | dh_compress -p$@ | |
293 | dh_fixperms -p$@ | |
294 | dh_installdeb -p$@ | |
a59397c1 | 295 | dh_shlibdeps -p$@ -l$(CURDIR)/debian/apt/usr/lib:$(CURDIR)/debian/$@/usr/lib |
d546f98d MV |
296 | dh_gencontrol -p$@ |
297 | dh_md5sums -p$@ | |
298 | dh_builddeb -p$@ | |
299 | ||
2d18d44e | 300 | configure: |
1d9fd7a2 | 301 | $(MAKE) configure |
2d18d44e | 302 | |
2d18d44e | 303 | really-clean: clean |
70371bc8 | 304 | -find . -name Makefile.in -print0 | xargs --null --no-run-if-empty -- rm -f |
2d18d44e AL |
305 | find -name ChangeLog | xargs rm -f |
306 | rm -f l33ch-stamp | |
307 | ||
308 | binary: binary-indep binary-arch | |
149daa16 | 309 | .PHONY: build clean binary-indep binary-arch binary |