#!/usr/bin/make -f # Uncomment this to turn on verbose mode. # export DH_VERBOSE=1 package:=flex SRCTOP:= $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi) INSTALL = install ifeq (,$(filter nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif install_file = $(INSTALL) -p -o root -g root -m 644 install_program = $(INSTALL) -p -o root -g root -m 755 install_script = $(INSTALL) -p -o root -g root -m 755 make_directory = $(INSTALL) -p -d -o root -g root -m 755 DPKG_ARCH := dpkg-architecture export DEB_HOST_MULTIARCH := $(shell $(DPKG_ARCH) $(ha) -qDEB_HOST_MULTIARCH) export DEB_BUILD_MULTIARCH := $(shell $(DPKG_ARCH) $(ha) -qDEB_BUILD_MULTIARCH) # Common useful variables DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' $(SRCTOP)/debian/control | \ cut -f 2 -d ':')) DEB_VERSION := $(strip $(shell LC_ALL=C dpkg-parsechangelog | \ egrep '^Version:' | cut -f 2 -d ' ')) DEB_NOEPOCH_VERSION := $(shell echo $(DEB_VERSION) | cut -d: -f2-) DEB_REVISION := $(strip $(shell echo $(DEB_NOEPOCH_VERSION) | \ perl -ple 's/.+\-(.+)$$/$$1/msxg')) DEB_UPSTREAM_VERSION := $(shell echo $(DEB_NOEPOCH_VERSION) | sed 's/-[^-]*$$//') confflags = ac_cv_lib_util_getloadavg=no ifneq ($(DEB_BUILD_MULTIARCH),$(DEB_HOST_MULTIARCH)) confflags += ac_cv_func_malloc_0_nonnull=yes ac_cv_func_realloc_0_nonnull=yes endif %: dh $@ --with autoreconf override_dh_auto_configure: if ! which flex >/dev/null 2>&1; then \ if [ -e debian/scan.l.md5sum ] && \ [ "`md5sum scan.l`" = "`cat debian/scan.l.md5sum`" ]; then \ if [ scan.l -nt scan.c ]; then \ echo "scan.l newer than scan.c"; \ fi; \ touch scan.c; \ fi; \ fi dh_auto_configure -- --prefix=$(PREFIX) $(confflags) sed -i -e 's/^dist_doc_DATA[[:space:]]*=.*/dist_doc_DATA=/' doc/Makefile override_dh_install: dh_install rm -f debian/flex/usr/share/doc/flex/flex.pdf ifneq (,$(filter flex, $(shell dh_listpackages))) test ! -f debian/flex/usr/share/doc/flex/COPYING || rm -f debian/flex/usr/share/doc/flex/COPYING endif dh_link override_dh_installdocs: dh_installdocs ifneq (,$(filter flex-doc, $(shell dh_listpackages))) mv debian/flex-doc/usr/share/doc/flex-doc/flex.html debian/flex-doc/usr/share/doc/flex-doc/html endif override_dh_auto_build: dh_auto_build ifneq (,$(filter flex-doc, $(shell dh_listpackages))) $(MAKE) -C doc flex.html flex.pdf endif bash -n debian/flex-doc.postinst bash -n debian/flex-doc.prerm bash -n debian/flex.postinst bash -n debian/flex.prerm .PHONY: get-orig-source ## http://wiki.debian.org/onlyjob/get-orig-source get-orig-source: $(info I: $(package)_$(DEB_UPSTREAM_VERSION)) @echo "Downloading $(package) $(DEB_UPSTREAM_VERSION)" uscan --noconf --verbose --rename --destdir=$(CURDIR) \ --check-dirname-level=0 --force-download \ --download-version $(DEB_UPSTREAM_VERSION) $(SRCTOP) #Local variables: #mode: makefile #End: