blob: a1f33ea49c6d547b04428415fd57a73eb61350f2 [file] [log] [blame]
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +00001#! /usr/bin/make -f
2# -*- makefile -*-
3#
4# Invoke each target with `./debian/rules <target>'. All targets should be
5# invoked with the package root as the current directory.
6#
7# The `binary' target must be run as root, as it needs to install files with
8# specific ownerships.
9
10# be paranoid
11export LC_ALL=C
12
Theodore Ts'of85cc2a2003-07-26 00:48:08 -040013# These are used for cross-compiling and for saving the configure script
14# from having to guess our platform (since we know it already)
15DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
16DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
17DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
18DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000019
20# find the version for the main package, from changelog file
21MAIN_VERSION = $(shell head -1 debian/changelog | cut '-d ' -f 2 | sed 's/[()]//g')
Theodore Ts'oe5b16432002-08-17 21:11:29 -040022# find versions for libraries going into their own packages, from their Makefile.in's,
23# and sonames for all libs
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000024COMERR_VERSION = $(shell grep ELF_VERSION lib/et/Makefile.in | cut '-d ' -f3)
Theodore Ts'oe5b16432002-08-17 21:11:29 -040025COMERR_SOVERSION = $(shell grep ELF_SO_VERSION lib/et/Makefile.in | cut '-d ' -f3)
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000026SS_VERSION = $(shell grep ELF_VERSION lib/ss/Makefile.in | cut '-d ' -f3)
Theodore Ts'oe5b16432002-08-17 21:11:29 -040027SS_SOVERSION = $(shell grep ELF_SO_VERSION lib/ss/Makefile.in | cut '-d ' -f3)
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000028UUID_VERSION = $(shell grep ELF_VERSION lib/uuid/Makefile.in | cut '-d ' -f3)
Theodore Ts'oe5b16432002-08-17 21:11:29 -040029UUID_SOVERSION = $(shell grep ELF_SO_VERSION lib/uuid/Makefile.in | cut '-d ' -f3)
Theodore Ts'o6fe7d112003-03-16 19:58:25 -050030BLKID_VERSION = $(shell grep ELF_VERSION lib/blkid/Makefile.in | cut '-d ' -f3)
31BLKID_SOVERSION = $(shell grep ELF_SO_VERSION lib/blkid/Makefile.in | cut '-d ' -f3)
Theodore Ts'oe5b16432002-08-17 21:11:29 -040032EXT2FS_SOVERSION = $(shell grep ELF_SO_VERSION lib/ext2fs/Makefile.in | cut '-d ' -f3)
33E2P_SOVERSION = $(shell grep ELF_SO_VERSION lib/e2p/Makefile.in | cut '-d ' -f3)
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000034
35package=e2fsprogs
36
37topdir=$(shell pwd)
38debdir=${topdir}/debian
Theodore Ts'ob90b8262001-06-15 22:54:34 +000039tmpdir=${debdir}/tmp
Theodore Ts'odd198d62002-10-31 03:44:35 -050040udebdir=${debdir}/e2fsprogs-udeb
Theodore Ts'o417781a2003-04-10 00:18:56 -040041blkidudebdir=${debdir}/libblkid1-udeb
Theodore Ts'oe254d052003-12-07 01:57:04 -050042uuidudebdir=${debdir}/libuuid1-udeb
Theodore Ts'ob90b8262001-06-15 22:54:34 +000043maindir=${debdir}/e2fsprogs
Theodore Ts'o79786212001-06-22 23:05:23 -040044stdbuilddir=${debdir}/BUILD-STD
45bfbuilddir=${debdir}/BUILD-BF
Theodore Ts'oe5b16432002-08-17 21:11:29 -040046mipsbuilddir=${debdir}/BUILD-MIPS
Theodore Ts'ob90b8262001-06-15 22:54:34 +000047# docdir=${maindir}/usr/share/doc/${package}
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000048MANDIR=/usr/share/man
Theodore Ts'ob90b8262001-06-15 22:54:34 +000049mandir=${tmpdir}${MANDIR}
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000050
Theodore Ts'odd198d62002-10-31 03:44:35 -050051UDEB_NAME = $(package)-udeb_$(MAIN_VERSION)_$(DEB_HOST_ARCH).udeb
52UDEB_PRIORITY = $(shell grep '^Package: e2fsprogs-udeb' debian/control -A 10 | grep ^Priority: | cut -d ' ' -f 2)
53
Theodore Ts'o417781a2003-04-10 00:18:56 -040054BLKID_UDEB_NAME = libblkid1-udeb_$(MAIN_VERSION)_$(DEB_HOST_ARCH).udeb
55BLKID_UDEB_PRIORITY = $(shell grep '^Package: libblkid1-udeb' debian/control -A 10 | grep ^Priority: | cut -d ' ' -f 2)
56
Theodore Ts'oe254d052003-12-07 01:57:04 -050057UUID_UDEB_NAME = libuuid1-udeb_$(MAIN_VERSION)_$(DEB_HOST_ARCH).udeb
58UUID_UDEB_PRIORITY = $(shell grep '^Package: libuuid1-udeb' debian/control -A 10 | grep ^Priority: | cut -d ' ' -f 2)
59
Theodore Ts'o541d1732002-02-23 21:23:26 -050060STAMPSDIR=debian/stampdir
61CFGSTDSTAMP=${STAMPSDIR}/configure-std-stamp
62CFGBFSTAMP=${STAMPSDIR}/configure-bf-stamp
63BUILDSTDSTAMP=${STAMPSDIR}/build-std-stamp
64BUILDBFSTAMP=${STAMPSDIR}/build-bf-stamp
65
Theodore Ts'o1d658a12003-08-21 01:53:07 -040066CCOPTS = -g -fsigned-char
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000067
Theodore Ts'o1893e712001-05-21 02:48:41 +000068INSTALL = install
69INSTALL_PROGRAM = $(INSTALL) -p -o root -g root -m 755
70
Theodore Ts'o1d658a12003-08-21 01:53:07 -040071ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
72CCOPTS += -O2
Theodore Ts'o1893e712001-05-21 02:48:41 +000073endif
74ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
75INSTALL_PROGRAM += -s
76endif
77
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000078ifeq (${DEB_HOST_ARCH},alpha)
79CCOPTS += -DHAVE_NETINET_IN_H
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000080else
81CCOPTS += -D__NO_STRING_INLINES
82endif
83
Theodore Ts'o79786212001-06-22 23:05:23 -040084BF_CCOPTS = -Os -fomit-frame-pointer
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +000085
Theodore Ts'o79786212001-06-22 23:05:23 -040086COMMON_CONF_FLAGS = \
Theodore Ts'o62775dc2003-05-08 10:39:50 -040087 --enable-elf-shlibs --enable-dynamic-e2fsck --disable-evms \
Theodore Ts'oe5b16432002-08-17 21:11:29 -040088 --infodir=/usr/share/info
Theodore Ts'o79786212001-06-22 23:05:23 -040089
Theodore Ts'o62775dc2003-05-08 10:39:50 -040090STD_CONF_FLAGS = --with-ccopts="${CCOPTS}" --enable-compression
Theodore Ts'o79786212001-06-22 23:05:23 -040091
92BF_CONF_FLAGS = --with-ccopts="${CCOPTS} ${BF_CCOPTS}" \
Theodore Ts'o62775dc2003-05-08 10:39:50 -040093 --disable-nls --disable-swapfs --disable-imager \
Theodore Ts'o79786212001-06-22 23:05:23 -040094 --disable-resizer --disable-debugfs
95
Theodore Ts'o2a4c77b2002-09-24 01:30:00 -040096MIPS_NOPIC_CONF_FLAGS = --with-ccopts="${CCOPTS}" \
97 --disable-nls \
Theodore Ts'oe5b16432002-08-17 21:11:29 -040098 --disable-swapfs --disable-imager \
Theodore Ts'odd198d62002-10-31 03:44:35 -050099 --disable-resizer # --disable-debugfs
Theodore Ts'o2a4c77b2002-09-24 01:30:00 -0400100# we can't use those flags at configure time
101MIPS_CFLAGS= -G 0 -fno-pic -mno-abicalls
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400102
103ifeq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
104ifneq (,$(findstring $(DEB_BUILD_ARCH),mips mipsel))
105ismips=ismips
106endif
107endif
108
Theodore Ts'o541d1732002-02-23 21:23:26 -0500109${CFGSTDSTAMP}:
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000110 dh_testdir
Theodore Ts'o541d1732002-02-23 21:23:26 -0500111
Theodore Ts'o79786212001-06-22 23:05:23 -0400112 mkdir -p ${stdbuilddir}
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000113ifeq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400114 cd ${stdbuilddir} && \
Theodore Ts'o79786212001-06-22 23:05:23 -0400115 ${topdir}/configure ${COMMON_CONF_FLAGS} ${STD_CONF_FLAGS}
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000116else
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400117 cd ${stdbuilddir} && CC="${DEB_HOST_GNU_TYPE}-gcc" \
Theodore Ts'o79786212001-06-22 23:05:23 -0400118 ${topdir}/configure ${COMMON_CONF_FLAGS} ${STD_CONF_FLAGS} \
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000119 --build=$(DEB_BUILD_GNU_TYPE) $(DEB_HOST_GNU_TYPE)
120endif
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400121
122 # specially-built MIPS lib
123 if [ ismips = "${ismips}" ]; then \
124 mkdir -p ${mipsbuilddir} ; \
125 cd ${mipsbuilddir} && \
126 ${topdir}/configure ${MIPS_NOPIC_CONF_FLAGS} ; \
127 fi
128
Theodore Ts'o541d1732002-02-23 21:23:26 -0500129 mkdir -p ${STAMPSDIR}
130 touch ${CFGSTDSTAMP}
Theodore Ts'o79786212001-06-22 23:05:23 -0400131
Theodore Ts'o541d1732002-02-23 21:23:26 -0500132${CFGBFSTAMP}:
Theodore Ts'o79786212001-06-22 23:05:23 -0400133 dh_testdir
Theodore Ts'o541d1732002-02-23 21:23:26 -0500134 rm -f config.cache
135
Theodore Ts'o79786212001-06-22 23:05:23 -0400136 mkdir -p ${bfbuilddir}
137ifeq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400138 cd ${bfbuilddir} && \
Theodore Ts'o79786212001-06-22 23:05:23 -0400139 ${topdir}/configure ${COMMON_CONF_FLAGS} ${BF_CONF_FLAGS}
140else
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400141 cd ${bfbuilddir} && CC="${DEB_HOST_GNU_TYPE}-gcc" \
Theodore Ts'o79786212001-06-22 23:05:23 -0400142 ${topdir}/configure ${COMMON_CONF_FLAGS} ${BF_CONF_FLAGS} \
143 --build=$(DEB_BUILD_GNU_TYPE) $(DEB_HOST_GNU_TYPE)
144endif
Theodore Ts'o541d1732002-02-23 21:23:26 -0500145 mkdir -p ${STAMPSDIR}
146 touch ${CFGBFSTAMP}
Theodore Ts'o79786212001-06-22 23:05:23 -0400147
148build: build-std build-bf
149
Theodore Ts'o541d1732002-02-23 21:23:26 -0500150build-std: ${BUILDSTDSTAMP}
151${BUILDSTDSTAMP}: ${CFGSTDSTAMP}
Theodore Ts'o79786212001-06-22 23:05:23 -0400152 dh_testdir
153 make -C ${stdbuilddir} all
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400154
Theodore Ts'o79786212001-06-22 23:05:23 -0400155 ( cd ${stdbuilddir}/doc && \
156 texi2html -split_chapter ${topdir}/doc/libext2fs.texinfo )
157 ( cd ${stdbuilddir}/lib/et && make com_err.info && \
158 texi2html -split_chapter -expandinfo ${topdir}/lib/et/com_err.texinfo )
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400159
160 # specially-built MIPS lib
161 if [ ismips = "${ismips}" ]; then \
162 make -C ${mipsbuilddir}/util ; \
Theodore Ts'o2a4c77b2002-09-24 01:30:00 -0400163 make -C ${mipsbuilddir} libs \
164 CFLAGS="${CCOPTS} ${MIPS_CFLAGS}" \
165 LIB_SUBDIRS="lib/et lib/ext2fs" ; \
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400166 fi
167
Theodore Ts'o541d1732002-02-23 21:23:26 -0500168 touch ${BUILDSTDSTAMP}
Theodore Ts'o79786212001-06-22 23:05:23 -0400169
Theodore Ts'o541d1732002-02-23 21:23:26 -0500170build-bf: ${BUILDBFSTAMP}
171${BUILDBFSTAMP}: ${CFGBFSTAMP}
Theodore Ts'o79786212001-06-22 23:05:23 -0400172 dh_testdir
Theodore Ts'o62775dc2003-05-08 10:39:50 -0400173 make -C ${bfbuilddir} libs
174 make -C ${bfbuilddir}/e2fsck all
175 make -C ${bfbuilddir}/misc all
Theodore Ts'o541d1732002-02-23 21:23:26 -0500176 touch ${BUILDBFSTAMP}
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000177
178clean:
179 dh_testdir
Theodore Ts'o541d1732002-02-23 21:23:26 -0500180 rm -rf ${STAMPSDIR}
Theodore Ts'o79786212001-06-22 23:05:23 -0400181 -make -C ${stdbuilddir} -i distclean
182 -make -C ${bfbuilddir} -i distclean
Theodore Ts'o2a4c77b2002-09-24 01:30:00 -0400183 rm -rf ${stdbuilddir} ${bfbuilddir} ${mipsbuilddir}
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000184 rm -f doc/libext2fs_*.html lib/et/com_err_*.html debian/*.substvars
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000185 dh_clean
186
Theodore Ts'o62775dc2003-05-08 10:39:50 -0400187install: cleanup install-std
Theodore Ts'o79786212001-06-22 23:05:23 -0400188
189# This rule allows to factorize the dh_clean between the 2 install rules
190# This must be launched before install-* (if launching them by hand, for
191# exemple) or results are unpredictable
192cleanup:
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000193 dh_testdir
194 dh_testroot
195 dh_clean -k
Theodore Ts'o79786212001-06-22 23:05:23 -0400196
197install-std: DH_OPTIONS=
198install-std: build
199 dh_testdir
200 dh_testroot
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000201 dh_installdirs
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000202
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000203 mkdir -p ${tmpdir}/sbin
Theodore Ts'o79786212001-06-22 23:05:23 -0400204 make -C ${stdbuilddir} install DESTDIR=${tmpdir} \
205 INSTALL_PROGRAM="${INSTALL_PROGRAM}" LDCONFIG=true
206 # static libs and .h files
207 make -C ${stdbuilddir} install-libs DESTDIR=${tmpdir} LDCONFIG=true
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000208
Theodore Ts'o1893e712001-05-21 02:48:41 +0000209 # statically-linked fsck
Theodore Ts'o79786212001-06-22 23:05:23 -0400210 ${INSTALL_PROGRAM} ${stdbuilddir}/e2fsck/e2fsck.static ${tmpdir}/sbin
Theodore Ts'o1893e712001-05-21 02:48:41 +0000211 ln -s e2fsck.8.gz ${mandir}/man8/e2fsck.static.8.gz
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000212
Theodore Ts'o020c5472003-04-10 00:01:19 -0400213 ln -s et/com_err.h ${tmpdir}/usr/include
214
Theodore Ts'o2a4c77b2002-09-24 01:30:00 -0400215 dh_movefiles
216 test -z `find ${tmpdir} -type f`
217
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400218 # specially-built MIPS lib
219 if [ ismips = "${ismips}" ]; then \
220 cp ${mipsbuilddir}/lib/libext2fs.a \
221 ${debdir}/e2fslibs-dev/usr/lib/libext2fs-nopic.a ; \
222 fi
223
Theodore Ts'o62775dc2003-05-08 10:39:50 -0400224install-udeb: DH_OPTIONS=
225install-udeb: build
Theodore Ts'o79786212001-06-22 23:05:23 -0400226 dh_testdir
227 dh_testroot
Theodore Ts'o79786212001-06-22 23:05:23 -0400228
Theodore Ts'o62775dc2003-05-08 10:39:50 -0400229 make -C ${bfbuilddir} install-shlibs-libs-recursive DESTDIR=${udebdir} \
Theodore Ts'o79786212001-06-22 23:05:23 -0400230 INSTALL_PROGRAM="${INSTALL_PROGRAM}" LDCONFIG=true
Theodore Ts'o62775dc2003-05-08 10:39:50 -0400231 make -C ${bfbuilddir}/e2fsck install DESTDIR=${udebdir} \
232 INSTALL_PROGRAM="${INSTALL_PROGRAM}" LDCONFIG=true
233 make -C ${bfbuilddir}/misc install DESTDIR=${udebdir} \
234 INSTALL_PROGRAM="${INSTALL_PROGRAM}" LDCONFIG=true
Theodore Ts'o79786212001-06-22 23:05:23 -0400235
Theodore Ts'o62775dc2003-05-08 10:39:50 -0400236 rm -rf ${udebdir}/usr
Theodore Ts'oe3075ae2003-07-12 16:28:09 -0400237 find ${udebdir}/sbin -type f -a ! -name e2fsck \
Theodore Ts'o080ee032004-03-02 11:18:05 -0500238 -a ! -name mke2fs -a ! -name tune2fs -print | xargs rm
Theodore Ts'oe3075ae2003-07-12 16:28:09 -0400239
240 (cd ${udebdir}/sbin; ln -s e2fsck fsck.ext2 ; \
241 ln -s e2fsck fsck.ext3 ; ln -s mke2fs mkfs.ext2 ; \
242 ln -s mke2fs mkfs.ext3)
Theodore Ts'o2a4c77b2002-09-24 01:30:00 -0400243
Theodore Ts'o417781a2003-04-10 00:18:56 -0400244 mkdir -p ${blkidudebdir}/lib
245 mv ${udebdir}/lib/libblkid.* ${blkidudebdir}/lib
Theodore Ts'o79786212001-06-22 23:05:23 -0400246
Theodore Ts'oe254d052003-12-07 01:57:04 -0500247 mkdir -p ${uuidudebdir}/lib
248 mv ${udebdir}/lib/libuuid.* ${uuidudebdir}/lib
249
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000250binary-indep:
251 # no arch-independant debs.
252
253binary-arch: DH_OPTIONS= -a
Theodore Ts'odd198d62002-10-31 03:44:35 -0500254binary-arch: install install-udeb
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000255 dh_testdir
256 dh_testroot
257
Theodore Ts'o541d1732002-02-23 21:23:26 -0500258 # lintian overrides
259 for i in $$(cd debian && echo *.lintian-overrides); do \
260 pkg=$${i%.lintian-overrides} ;\
261 install -m644 -D -p debian/$$i ${debdir}/$${pkg}/usr/share/lintian/overrides/$${pkg} ;\
262 done
Theodore Ts'o79786212001-06-22 23:05:23 -0400263
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400264 # mkinitrd script
Theodore Ts'o1d658a12003-08-21 01:53:07 -0400265 mkdir -p debian/e2fsprogs/usr/share/initrd-tools/scripts
Theodore Ts'odd198d62002-10-31 03:44:35 -0500266 install -m755 debian/e2fsprogs.mkinitrd \
Theodore Ts'o1d658a12003-08-21 01:53:07 -0400267 debian/e2fsprogs/usr/share/initrd-tools/scripts
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400268
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000269 # symlinks to prepare dh_installdocs run
270 mkdir -p ${debdir}/e2fsck-static/usr/share/doc/
271 ln -sf e2fsprogs ${debdir}/e2fsck-static/usr/share/doc/e2fsck-static
272
Theodore Ts'o6fe7d112003-03-16 19:58:25 -0500273 mkdir -p ${debdir}/libblkid${BLKID_SOVERSION}/usr/share/doc/libblkid${BLKID_SOVERSION}
274 mkdir -p ${debdir}/libblkid-dev/usr/share/doc
275 ln -sf libblkid${BLKID_SOVERSION} ${debdir}/libblkid-dev/usr/share/doc/libblkid-dev
276
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400277 mkdir -p ${debdir}/libss${SS_SOVERSION}/usr/share/doc/libss${SS_SOVERSION}
278 mkdir -p ${debdir}/ss-dev/usr/share/doc
279 ln -sf libss${SS_SOVERSION} ${debdir}/ss-dev/usr/share/doc/ss-dev
280
281 mkdir -p ${debdir}/libcomerr${COMERR_SOVERSION}/usr/share/doc/libcomerr${COMERR_SOVERSION}
282 mkdir -p ${debdir}/comerr-dev/usr/share/doc
283 ln -sf libcomerr${COMERR_SOVERSION} ${debdir}/comerr-dev/usr/share/doc/comerr-dev
284
285 mkdir -p ${debdir}/libuuid${UUID_SOVERSION}/usr/share/doc/libuuid${UUID_SOVERSION}
286 mkdir -p ${debdir}/uuid-dev/usr/share/doc
287 ln -sf libuuid${UUID_SOVERSION} ${debdir}/uuid-dev/usr/share/doc/uuid-dev
288
289 mkdir -p ${debdir}/e2fslibs/usr/share/doc/e2fslibs
290 mkdir -p ${debdir}/e2fslibs-dev/usr/share/doc
291 ln -sf e2fslibs ${debdir}/e2fslibs-dev/usr/share/doc/e2fslibs-dev
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000292
Theodore Ts'o6fe7d112003-03-16 19:58:25 -0500293 install -m 644 debian/libblkid.copyright \
294 ${debdir}/libblkid${BLKID_SOVERSION}/usr/share/doc/libblkid${BLKID_SOVERSION}/copyright
295
Theodore Ts'oe254d052003-12-07 01:57:04 -0500296 dh_installdocs -Ne2fsprogs-udeb -Nlibblkid1-udeb -Nlibuuid1-udeb
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000297
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000298 # HTML docs
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400299 install -d ${debdir}/e2fslibs-dev/usr/share/doc/e2fslibs/html-info/
Theodore Ts'o79786212001-06-22 23:05:23 -0400300 install -p ${stdbuilddir}/doc/libext2fs_*.html \
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400301 ${debdir}/e2fslibs-dev/usr/share/doc/e2fslibs/html-info/
302 install -d ${debdir}/comerr-dev/usr/share/doc/libcomerr${COMERR_SOVERSION}/html-info/
Theodore Ts'o79786212001-06-22 23:05:23 -0400303 install -p ${stdbuilddir}/lib/et/com_err_*.html \
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400304 ${debdir}/comerr-dev/usr/share/doc/libcomerr${COMERR_SOVERSION}/html-info/
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000305
306 # texinfo docs
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400307 mkdir -p ${debdir}/comerr-dev/usr/share/doc/libcomerr${COMERR_SOVERSION}
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000308 install -p ${topdir}/doc/libext2fs.texinfo \
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400309 ${debdir}/e2fslibs-dev/usr/share/doc/e2fslibs/libext2fs.texi
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000310 install -p ${topdir}/lib/et/com_err.texinfo \
Theodore Ts'oe5b16432002-08-17 21:11:29 -0400311 ${debdir}/comerr-dev/usr/share/doc/libcomerr${COMERR_SOVERSION}/com_err.texi
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000312
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400313 install -d ${debdir}/comerr-dev/usr/share/doc/libcomerr${COMERR_SOVERSION}/examples
314 install -p -m 0644 lib/ss/ss_err.et \
315 ${stdbuilddir}/lib/ext2fs/ext2_err.et \
316 ${debdir}/comerr-dev/usr/share/doc/libcomerr${COMERR_SOVERSION}/examples
317 install -d ${debdir}/ss-dev/usr/share/doc/libss${SS_SOVERSION}/examples
318 install -p -m 0644 debugfs/debug_cmds.ct \
319 ${debdir}/ss-dev/usr/share/doc/libss${SS_SOVERSION}/examples
320
321 install -d ${debdir}/uuid-dev/usr/share/doc/libuuid${UUID_SOVERSION}
322 install -p -m 0644 doc/draft-leach-uuids-guids-01.txt \
323 ${debdir}/uuid-dev/usr/share/doc/libuuid${UUID_SOVERSION}
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000324
Theodore Ts'o541d1732002-02-23 21:23:26 -0500325 dh_installinfo -pcomerr-dev ${stdbuilddir}/lib/et/com_err.info
Theodore Ts'o79786212001-06-22 23:05:23 -0400326 dh_installinfo -pe2fslibs-dev ${stdbuilddir}/doc/libext2fs.info
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000327
Theodore Ts'o9bf19712003-07-23 09:55:39 -0400328 DH_OPTIONS= dh_installchangelogs -pe2fsprogs -plibblkid${BLKID_SOVERSION}
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400329 DH_OPTIONS= dh_installchangelogs -pe2fsprogs -plibcomerr${COMERR_SOVERSION}
330 DH_OPTIONS= dh_installchangelogs -pe2fsprogs -plibss${SS_SOVERSION}
331 DH_OPTIONS= dh_installchangelogs -pe2fsprogs -plibuuid${UUID_SOVERSION}
332 DH_OPTIONS= dh_installchangelogs -pe2fsprogs -pe2fslibs
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000333
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000334 dh_strip
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000335
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000336 dh_compress
337 dh_fixperms
338
Theodore Ts'oe254d052003-12-07 01:57:04 -0500339 dh_makeshlibs -Ne2fsprogs-udeb -Nlibblkid1-udeb -Nlibuuid1-udeb
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400340 dh_makeshlibs -plibcomerr${COMERR_SOVERSION} \
341 -V 'libcomerr2 (>= 1.33-3)'
Theodore Ts'o6fe7d112003-03-16 19:58:25 -0500342
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000343 dh_installdeb
Theodore Ts'o79786212001-06-22 23:05:23 -0400344 dh_shlibdeps -l${stdbuilddir}/lib
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400345 dh_shlibdeps -pe2fsprogs -l${stdbuilddir}/lib \
346 -u"-Ldebian/e2fsprogs.shlibs.local"
Theodore Ts'o7a15db22003-07-29 22:15:33 -0400347 dh_shlibdeps -pe2fsprogs-udeb -l${stdbuilddir}/lib \
348 -u"-Ldebian/e2fsprogs-udeb.shlibs.local"
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000349
Theodore Ts'o151c86a2003-07-25 07:03:00 -0400350 dh_gencontrol -Ncomerr-dev -Nss-dev -Nuuid-dev \
Theodore Ts'oe254d052003-12-07 01:57:04 -0500351 -Ne2fsprogs-udeb -Nlibblkid1-udeb -Nlibuuid1-udeb
Theodore Ts'ob90b8262001-06-15 22:54:34 +0000352 DH_OPTIONS= dh_gencontrol -pcomerr-dev \
353 -u '-v${COMERR_VERSION}-${MAIN_VERSION}'
354 DH_OPTIONS= dh_gencontrol -pss-dev \
355 -u '-v${SS_VERSION}-${MAIN_VERSION}'
356 DH_OPTIONS= dh_gencontrol -puuid-dev \
357 -u '-v${UUID_VERSION}-${MAIN_VERSION}'
358
Theodore Ts'oe254d052003-12-07 01:57:04 -0500359 dh_md5sums -Ne2fsprogs-udeb -Nlibblkid1-udeb -Nlibuuid1-udeb
360 dh_builddeb -Ne2fsprogs-udeb -Nlibblkid1-udeb -Nlibuuid1-udeb
Theodore Ts'odd198d62002-10-31 03:44:35 -0500361
362 # udeb stuff
363 dh_gencontrol -pe2fsprogs-udeb -- -fdebian/files~
364 dpkg-distaddfile $(UDEB_NAME) debian-installer $(UDEB_PRIORITY)
365 dh_builddeb -pe2fsprogs-udeb --filename=$(UDEB_NAME)
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000366
Theodore Ts'o417781a2003-04-10 00:18:56 -0400367 dh_gencontrol -plibblkid1-udeb -- -fdebian/files~
368 dpkg-distaddfile $(BLKID_UDEB_NAME) debian-installer $(BLKID_UDEB_PRIORITY)
369 dh_builddeb -plibblkid1-udeb --filename=$(BLKID_UDEB_NAME)
370
Theodore Ts'oe254d052003-12-07 01:57:04 -0500371 dh_gencontrol -plibuuid1-udeb -- -fdebian/files~
372 dpkg-distaddfile $(UUID_UDEB_NAME) debian-installer $(UUID_UDEB_PRIORITY)
373 dh_builddeb -plibuuid1-udeb --filename=$(UUID_UDEB_NAME)
374
Theodore Ts'o4d8f08f2001-05-09 04:51:07 +0000375binary: binary-indep binary-arch
376
377.PHONY: binary binary-arch binary-indep clean checkroot