~ubuntu-branches/ubuntu/wily/calamaris/wily-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Echeverry
  • Date: 2011-06-25 14:27:07 UTC
  • Revision ID: james.westby@ubuntu.com-20110625142707-ptdmozw9jhmt0wce
Tags: 2.99.4.0-14
* New maintainer. Closes: #624120
* debian/control
  + Bumped standard versions 3.9.2 (no changes)
  + Set myself as Maintainer
  + Changed debhelper to 7.0.50 in B-D
  + Added Homepage field
* debian/compat
  + Switch compat level 6 to 7
* debian/patches
  + Renamed debian-changes-2.99.4.0-12 to cachelogfile.diff
  + Added fix_manpage.diff to fix manpage errors
* debian/rules
  + Use tiny rules
* Install files from .docs .examples files
* Install manpages from calamaris.manpages
* Removed Warning perl. Closes: #627467
  + Thanks to gregor herrmann for the patch     
* debian/po
  + Updated French debconf templates. Closes: #626242
  + Added Danish debconf templates. Closes: #627708
* Fixed lintian warnings
* Change /bin/sh -e by set -e
* Removed substvars file
* Updated copyright file to DEP5 format

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
#export DH_VERBOSE=1
7
7
 
8
 
build: build-stamp
9
 
 
10
 
build-stamp:
11
 
        dh_testdir
12
 
 
13
 
        touch build-stamp
14
 
 
15
 
clean:
16
 
        debconf-updatepo
17
 
        dh_testdir
18
 
        dh_testroot
19
 
        rm -f build-stamp
20
 
        rm -f substvars
21
 
 
22
 
        dh_clean
23
 
 
24
 
binary-indep: build
25
 
        dh_testdir
26
 
        dh_testroot
27
 
        dh_clean -k
28
 
        dh_installdirs
29
 
 
30
 
        make install DESTDIR=`pwd`/debian/calamaris
31
 
 
32
 
        dh_installdocs README TODO BUGS
33
 
        dh_installexamples EXAMPLES EXAMPLES.v3
34
 
        dh_installdebconf
35
 
 
36
 
#       dh_installmanpages
37
 
#       install man pages to /usr/share/man:
38
 
        install -p -m644 calamaris.1 `pwd`/debian/calamaris/usr/share/man/man1
39
 
 
 
8
%:
 
9
        dh $@
 
10
 
 
11
override_dh_auto_build:
 
12
 
 
13
override_dh_auto_install:
 
14
        dh_auto_install -- DESTDIR=$(CURDIR)/debian/calamaris
 
15
 
 
16
override_dh_installchangelogs:
40
17
        dh_installchangelogs CHANGES
41
 
        dh_compress
42
 
        dh_fixperms
43
 
        dh_installdeb
44
 
        dh_gencontrol
45
 
        dh_md5sums
46
 
        dh_builddeb
47
 
 
48
 
binary-arch: build
49
 
 
50
 
source diff:
51
 
        @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
52
 
 
53
 
binary: binary-indep binary-arch
54
 
 
55
 
.PHONY: binary binary-arch binary-indep clean build
 
18