Rev 105 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 105 | Rev 120 | ||
|---|---|---|---|
| 1 | #!/usr/bin/make -f |
1 | #!/usr/bin/make -f |
| 2 | # -*- makefile -*- |
2 | # -*- makefile -*- |
| 3 | # Sample debian/rules that uses debhelper. |
3 | # Sample debian/rules that uses debhelper. |
| 4 | # GNU copyright 1997 to 1999 by Joey Hess. |
4 | # GNU copyright 1997 to 1999 by Joey Hess. |
| 5 | 5 | ||
| 6 | # Uncomment this to turn on verbose mode. |
6 | # Uncomment this to turn on verbose mode. |
| 7 | #export DH_VERBOSE=1 |
7 | #export DH_VERBOSE=1 |
| 8 | 8 | ||
| 9 | # These are used for cross-compiling and for saving the configure script |
9 | # These are used for cross-compiling and for saving the configure script |
| 10 | # from having to guess our platform (since we know it already) |
10 | # from having to guess our platform (since we know it already) |
| 11 | DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
11 | DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) |
| 12 | DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) |
12 | DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) |
| 13 | 13 | ||
| 14 | ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) |
14 | ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) |
| 15 | buildflags = --build=$(DEB_BUILD_GNU_TYPE) |
15 | buildflags = --build=$(DEB_BUILD_GNU_TYPE) |
| 16 | else |
16 | else |
| 17 | buildflags = --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) |
17 | buildflags = --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) |
| 18 | endif |
18 | endif |
| 19 | 19 | ||
| 20 | parallel = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) |
20 | parallel = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) |
| 21 | ifneq (,$(parallel)) |
21 | ifneq (,$(parallel)) |
| 22 | jobsflag = -j$(parallel) |
22 | jobsflag = -j$(parallel) |
| 23 | endif |
23 | endif |
| 24 | 24 | ||
| 25 | config.status: configure.ac |
25 | config.status: configure.ac |
| 26 | dh_testdir |
26 | dh_testdir |
| 27 | # Add here commands to configure the package. |
27 | # Add here commands to configure the package. |
| 28 | dh_autoreconf |
28 | dh_autoreconf |
| 29 | ./configure $(buildflags) \ |
29 | ./configure $(buildflags) \ |
| 30 | --prefix=/usr \ |
30 | --prefix=/usr \ |
| 31 | --disable-dependency-tracking \ |
31 | --disable-dependency-tracking \ |
| 32 | --enable-pam --enable-kerberos --enable-srp \ |
32 | --enable-pam --enable-kerberos --enable-srp \ |
| 33 | --with-pty --enable-tcp-forward --enable-x11-forward \ |
33 | --with-pty --enable-tcp-forward --enable-x11-forward \ |
| 34 | --enable-agent-forward --enable-ipv6 --enable-utmp \ |
34 | --enable-agent-forward --enable-ipv6 --enable-utmp \ |
| 35 | --with-zlib --with-tcpwrappers --with-sshd1=/usr/sbin/sshd \ |
35 | --with-zlib --with-tcpwrappers --with-sshd1=/usr/sbin/sshd \ |
| 36 | --with-x XAUTH_PROGRAM=/usr/bin/xauth \ |
36 | --with-x XAUTH_PROGRAM=/usr/bin/xauth \ |
| 37 | $(shell DEB_LDFLAGS_MAINT_PREPEND="-Wl,-z,defs -Wl,--as-needed" dpkg-buildflags --export=configure) |
37 | $(shell DEB_LDFLAGS_MAINT_PREPEND="-Wl,-z,defs -Wl,--as-needed" dpkg-buildflags --export=configure) |
| 38 | 38 | ||
| 39 | build: build-stamp |
39 | build: build-stamp |
| 40 | build-stamp: config.status |
40 | build-stamp: config.status |
| 41 | dh_testdir |
41 | dh_testdir |
| 42 | 42 | ||
| 43 | # Add here commands to compile the package. |
43 | # Add here commands to compile the package. |
| 44 | $(MAKE) $(jobsflag) MAKEINFO='makeinfo --enable-encoding' |
44 | $(MAKE) $(jobsflag) MAKEINFO='makeinfo --enable-encoding' |
| 45 | ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) |
45 | ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) |
| 46 | $(MAKE) check |
46 | $(MAKE) check |
| 47 | endif |
47 | endif |
| 48 | 48 | ||
| 49 | touch build-stamp |
49 | touch build-stamp |
| 50 | 50 | ||
| 51 | clean: |
51 | clean: |
| 52 | dh_testdir |
52 | dh_testdir |
| 53 | dh_testroot |
53 | dh_testroot |
| 54 | rm -f build-stamp |
54 | rm -f build-stamp |
| 55 | 55 | ||
| 56 | # Add here commands to clean up after the build process. |
56 | # Add here commands to clean up after the build process. |
| 57 | [ ! -f Makefile ] || $(MAKE) distclean |
57 | [ ! -f Makefile ] || $(MAKE) distclean |
| 58 | dh_autoreconf_clean |
58 | dh_autoreconf_clean |
| 59 | dh_clean |
59 | dh_clean |
| 60 | 60 | ||
| 61 | install: build |
61 | install: build |
| 62 | dh_testdir |
62 | dh_testdir |
| 63 | dh_testroot |
63 | dh_testroot |
| 64 | dh_prep |
64 | dh_prep |
| 65 | dh_installdirs |
65 | dh_installdirs |
| 66 | 66 | ||
| 67 | # Add here commands to install the package into debian/tmp |
67 | # Add here commands to install the package into debian/tmp |
| 68 | $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp |
68 | $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp |
| 69 | 69 | ||
| 70 | build-indep build-arch: build |
70 | build-indep build-arch: build |
| 71 | 71 | ||
| 72 | # Build architecture-independent files here. |
72 | # Build architecture-independent files here. |
| 73 | binary-indep: build-indep install |
73 | binary-indep: build-indep install |
| 74 | dh_testdir |
74 | dh_testdir |
| 75 | dh_testroot |
75 | dh_testroot |
| 76 | dh_install -i --sourcedir=debian/tmp |
76 | dh_install -i --sourcedir=debian/tmp |
| 77 | dh_link -i |
77 | dh_link -i |
| 78 | dh_installchangelogs -i ChangeLog |
78 | dh_installchangelogs -i ChangeLog |
| 79 | dh_installdocs -i -A README |
79 | dh_installdocs -i -A README |
| 80 | dh_installinfo -i |
80 | dh_installinfo -i |
| 81 | dh_installman -i |
81 | dh_installman -i |
| 82 | dh_installdebconf -i |
82 | dh_installdebconf -i |
| 83 | dh_compress -i |
83 | dh_compress -i |
| 84 | dh_fixperms -i |
84 | dh_fixperms -i |
| 85 | dh_makeshlibs -i |
85 | dh_makeshlibs -i |
| 86 | dh_installdeb -i |
86 | dh_installdeb -i |
| 87 | dh_shlibdeps -i |
87 | dh_shlibdeps -i |
| 88 | dh_gencontrol -i |
88 | dh_gencontrol -i |
| 89 | dh_md5sums -i |
89 | dh_md5sums -i |
| 90 | dh_builddeb -i |
90 | dh_builddeb -i |
| 91 | 91 | ||
| 92 | # Build architecture-dependent files here. |
92 | # Build architecture-dependent files here. |
| 93 | binary-arch: build-arch install |
93 | binary-arch: build-arch install |
| 94 | dh_testdir |
94 | dh_testdir |
| 95 | dh_testroot |
95 | dh_testroot |
| 96 | dh_install -a --sourcedir=debian/tmp |
96 | dh_install -a --sourcedir=debian/tmp |
| 97 | dh_link -a |
97 | dh_link -a |
| 98 | dh_installchangelogs -a ChangeLog |
98 | dh_installchangelogs -a ChangeLog |
| 99 | dh_installdocs -a -A README |
99 | dh_installdocs -a -A README |
| 100 | dh_installexamples -a |
100 | dh_installexamples -a |
| 101 | dh_installman -a |
101 | dh_installman -a |
| - | 102 | dh_systemd_enable -a |
|
| 102 | dh_installinit -a |
103 | dh_installinit -a |
| - | 104 | dh_systemd_start -a |
|
| 103 | dh_installdebconf -a |
105 | dh_installdebconf -a |
| 104 | dh_strip -a |
106 | dh_strip -a |
| 105 | dh_compress -a |
107 | dh_compress -a |
| 106 | dh_fixperms -a |
108 | dh_fixperms -a |
| 107 | dh_makeshlibs -a |
109 | dh_makeshlibs -a |
| 108 | dh_installdeb -a |
110 | dh_installdeb -a |
| 109 | dh_shlibdeps -a |
111 | dh_shlibdeps -a |
| 110 | dh_gencontrol -a |
112 | dh_gencontrol -a |
| 111 | dh_md5sums -a |
113 | dh_md5sums -a |
| 112 | dh_builddeb -a |
114 | dh_builddeb -a |
| 113 | 115 | ||
| 114 | binary: binary-arch binary-indep |
116 | binary: binary-arch binary-indep |
| 115 | .PHONY: build-indep build-arch build clean clean-patched binary-indep binary-arch binary install |
117 | .PHONY: build-indep build-arch build clean clean-patched binary-indep binary-arch binary install |