~ubuntu-branches/ubuntu/precise/iproute/precise

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt, Andreas Henriksson, Justin B Rye, Alexander Wirt
  • Date: 2008-05-11 11:18:29 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20080511111829-rfewew7s6kiev0bh
Tags: 20080417-1
[ Andreas Henriksson ]
* New upstream release, v2.6.25 a.k.a. snapshot 20080417.
  - Initial documentation for xfrm (Partially fixes #451337)
  - Fixes manpage error caught by lintian!
* Fix typos (syntax error) in ip(8) manpage.
  - Introduced by upstream, caught by lintian yet again!
* Don't ship useless headers in iproute-dev (Closes: #467557)
* Cherry-pick "Fix bad hash calculation because of signed address" from
  upstream. (Closes: #480173)

[ Justin B Rye ]
* Update package description (Closes: #464521)

[ Alexander Wirt ]
* Fix typo in short package description.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
clean: clean-patched unpatch
10
10
clean-patched:
11
11
        -rm stamp-build
 
12
        -rm stamp-doc
12
13
        dh_testdir
13
14
        dh_testroot
14
15
        dh_clean
16
17
 
17
18
binary: binary-indep binary-arch
18
19
 
19
 
binary-indep build-indep:
 
20
binary-indep: build-indep
 
21
        dh_testdir
 
22
        dh_testroot
 
23
        dh_install -i --fail-missing
 
24
        dh_link -i
 
25
        dh_installexamples -i -p iproute-doc examples/*
 
26
        dh_installman -i
 
27
        dh_installdocs -i 
 
28
        dh_installchangelogs -i
 
29
        dh_compress -i
 
30
        dh_strip -i
 
31
        dh_fixperms -i
 
32
        dh_installdeb -i
 
33
        dh_gencontrol -i
 
34
        dh_md5sums -i
 
35
        dh_builddeb -i
 
36
 
 
37
 
 
38
build-indep: stamp-doc
 
39
stamp-doc:
 
40
        $(MAKE) -C doc all txt
 
41
        touch stamp-doc
 
42
 
 
43
 
20
44
 
21
45
binary-arch: build-arch
22
46
        dh_testdir
23
47
        dh_testroot
24
 
        dh_install --fail-missing
25
 
        dh_link
26
 
        dh_installexamples -p iproute-doc examples/*
27
 
        dh_installman
28
 
        dh_installdocs
29
 
        dh_installchangelogs
30
 
        dh_compress
31
 
        dh_strip
32
 
        dh_fixperms
33
 
        dh_installdeb
34
 
        dh_shlibdeps
35
 
        dh_gencontrol
36
 
        dh_md5sums
37
 
        dh_builddeb
 
48
        dh_install -a --fail-missing
 
49
        dh_link -a
 
50
        dh_installman -a
 
51
        dh_installdocs -a
 
52
        dh_installchangelogs -a
 
53
        dh_compress -a
 
54
        dh_strip -a
 
55
        dh_fixperms -a
 
56
        dh_installdeb -a
 
57
        dh_shlibdeps -a -Xq_atm.so
 
58
        dh_gencontrol -a
 
59
        dh_md5sums -a
 
60
        dh_builddeb -a
38
61
 
39
62
build-arch: stamp-build
40
63
stamp-build: patch
41
64
        $(MAKE) KERNEL_INCLUDE=./include
42
 
        $(MAKE) -C doc all txt
43
65
        touch stamp-build
44
66
 
45
67
.PHONY: build binary binary-arch binary-indep clean