File: rules

package info (click to toggle)
iaxmodem 1.2.0~dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 16,452 kB
  • sloc: ansic: 127,038; sh: 18,974; xml: 11,738; cpp: 1,457; makefile: 1,021
file content (99 lines) | stat: -rwxr-xr-x 3,514 bytes parent folder | download | duplicates (2)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/make -f
# -*- makefile -*-
# Sample debian/rules that uses debhelper.
# This file was originally written by Joey Hess and Craig Small.
# As a special exception, when this file is copied by dh-make into a
# dh-make output file, you may use that output file without restriction.
# This special exception was added by Craig Small in version 0.37 of dh-make.

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)

ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
  confflags += --build $(DEB_HOST_GNU_TYPE)
else
  confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
endif


CFLAGS = -Wall -g

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	CFLAGS += -O0
else
	CFLAGS += -O2
endif

DEBVERSION:=$(shell head -n 1 debian/changelog \
		    | sed -e 's/^[^(]*(\([^)]*\)).*/\1/')
UPVERSION:=$(shell echo $(DEBVERSION) | sed -e 's/^.*://' -e 's/-[0-9.]*$$//' -e 's/~dfsg[0-9]*$$//')

FILENAME := iaxmodem_$(UPVERSION)~dfsg.orig.tar.gz
UPFILENAME := iaxmodem_$(UPVERSION).orig.tar.gz
URL := http://heanet.dl.sourceforge.net/iaxmodem/iaxmodem-$(UPVERSION).tar.gz

%:
	dh $@ --with-autotools_dev

# The build target must not be empty.  Sadly because of how make
# works, we have do duplicate the target in this case. (#888601)
build:
	dh $@ --with-autotools_dev

override_dh_auto_configure:
	# Check that problematic files have been removed prior to packaging
	( [ ! -e lib/spandsp/src/spandsp/mmx.h ] && \
		[ ! -d lib/spandsp/src/msvc ] && [ ! -f lib/spandsp/libspandsp.vcproj ] && \
		[ ! -d lib/spandsp/autom4te.cache ] && [ ! -d lib/libiax2/autom4te.cache ] ) || \
		(echo "WARNING: sources are not clean!"; false)

	# Add here commands to configure the package.
	(cd lib/libiax2 && ./configure $(confflags) --disable-shared)
	(cd lib/spandsp && ./configure $(confflags) --disable-shared)

override_dh_auto_build:
	# Add here commands to compile the package.
	$(MAKE) -C ./lib/libiax2
	$(MAKE) -C ./lib/spandsp

	./build static

override_dh_auto_clean:
	[ ! -f lib/libiax2/Makefile ] || $(MAKE) -C ./lib/libiax2 distclean

	[ ! -f lib/spandsp/Makefile ] || $(MAKE) -C ./lib/spandsp distclean
	rm -rf ./lib/spandsp/autom4te.cache

override_dh_installchangelogs:
	dh_installchangelogs CHANGES

overridedh_installinit:
	# start before hylafax (20), stop after hylafax (20) and before asterisk (21)
	dh_installinit -- defaults 19 20

print-version:
	@@echo "Debian version:          $(DEBVERSION)"
	@@echo "Upstream version:        $(UPVERSION)"

get-orig-source:
	@@dh_testdir
	@@[ -d ../tarballs/. ]||mkdir -p ../tarballs
	@@echo Downloading $(UPFILENAME) from $(URL) ...
	@@wget -nv -T10 -t3 -O ../tarballs/$(UPFILENAME) $(URL)
	@@echo Repacking as DFSG-free...
	@@rm -rf ../tarballs/iaxmodem-$(UPVERSION).tmp
	@@mkdir -p ../tarballs/iaxmodem-$(UPVERSION).tmp/;cd ../tarballs/iaxmodem-$(UPVERSION).tmp && \
	tar xfz ../$(UPFILENAME) && \
	for file in lib/spandsp/src/spandsp/mmx.h lib/spandsp/src/msvc/\
	  lib/spandsp/libspandsp.vcproj lib/libiax2/autom4te.cache/ \
	  lib/spandsp/autom4te.cache/ lib/libiax2/CVS lib/libiax2/src/CVS; \
	do rm -rf iaxmodem-$(UPVERSION)/$$file; done && tar cfz ../$(FILENAME) *
	@@echo Cleaning up...
	@@$(RM) -rf ../tarballs/iaxmodem-$(UPVERSION).tmp

.PHONY: build