1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
#!/usr/bin/make -f
export DH_VERBOSE = 1
include /usr/share/dpkg/architecture.mk
ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
CONFARGS = --host=$(DEB_HOST_GNU_TYPE)
endif
LIB_DIR = usr/lib/$(DEB_HOST_MULTIARCH)
%:
dh $@
dhar-stamp:
dh_autoreconf
ifeq (,$(findstring nodoc,$(DEB_BUILD_PROFILES)))
(cd doc && po4a -k 0 --rm-backups --variable "srcdir=../doc/" po4a/po4a.cfg) || exit 1
endif
touch $@
obj-sysv/config.status: dhar-stamp
dh_testdir
mkdir obj-sysv
cd obj-sysv && CFLAGS="$(CFLAGS)" ../configure --prefix=/usr --mandir=/usr/share/man --libdir=/$(LIB_DIR)/libfakeroot --program-suffix=-sysv $(CONFARGS)
obj-tcp/config.status: dhar-stamp
dh_testdir
mkdir obj-tcp
cd obj-tcp && CFLAGS="$(CFLAGS)" ../configure --prefix=/usr --mandir=/usr/share/man --libdir=/$(LIB_DIR)/libfakeroot --with-ipc=tcp --program-suffix=-tcp $(CONFARGS)
override_dh_auto_configure: obj-sysv/config.status obj-tcp/config.status
override_dh_auto_build:
cd obj-sysv && $(MAKE)
cd obj-tcp && $(MAKE)
ifneq ($(DEB_HOST_GNU_SYSTEM),gnu)
sed 's/@FAKEROOT_SYSV_ALTPRIO@/50/;s/@FAKEROOT_TCP_ALTPRIO@/30/;' \
debian/fakeroot.postinst.in > debian/fakeroot.postinst
else
sed 's/@FAKEROOT_SYSV_ALTPRIO@/30/;s/@FAKEROOT_TCP_ALTPRIO@/50/;' \
debian/fakeroot.postinst.in > debian/fakeroot.postinst
endif
sed 's,@LIBDIR@,/$(LIB_DIR),g' \
debian/libfakeroot.links.in > debian/libfakeroot.links
override_dh_auto_test:
ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
ifeq (,$(findstring hurd, $(DEB_HOST_ARCH_OS)))
cd obj-sysv && $(MAKE) check
endif
cd obj-tcp && $(MAKE) check
endif
endif
override_dh_auto_install:
cd obj-tcp && $(MAKE) DESTDIR="$(CURDIR)/debian/tmp" install
mv debian/tmp/$(LIB_DIR)/libfakeroot/libfakeroot-0.so debian/tmp/$(LIB_DIR)/libfakeroot/libfakeroot-tcp.so
cd obj-sysv && $(MAKE) DESTDIR="$(CURDIR)/debian/tmp" install
mv debian/tmp/$(LIB_DIR)/libfakeroot/libfakeroot-0.so debian/tmp/$(LIB_DIR)/libfakeroot/libfakeroot-sysv.so
mkdir -p debian/tmp/etc/ld.so.conf.d
echo /$(LIB_DIR)/libfakeroot > debian/tmp/etc/ld.so.conf.d/fakeroot-$(DEB_HOST_MULTIARCH).conf
override_dh_auto_clean:
rm -rf obj-sysv obj-tcp wrapdef.h wrapstruct.h
dh_autoreconf_clean
rm -f dhar-stamp
$(RM) debian/fakeroot.postinst
$(RM) debian/libfakeroot.links
|