~ubuntu-branches/debian/experimental/backintime/experimental

« back to all changes in this revision

Viewing changes to kde4/debian_specific/rules

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Wiltshire
  • Date: 2010-12-03 21:56:53 UTC
  • mfrom: (1.2.1 upstream) (3.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20101203215653-scx9roloq4m0dqns
Tags: 1.0.4-1
* New upstream release
    Closes: #555293
    LP: #409130 #507246 #528518 #534829 #522618
* Update debian/copyright
* The following patches are either integrated or fixed properly
  upstream: no-chmod-777.patch allow-root-backup.patch
* Refactor remaining patches and make the headers DEP-3 compliant
* Convert to source format 3.0 (quilt) and drop quilt dependency and
  logic
* Don't depend on a specific version of Python; let dh_python choose
  the best option
* Remove the "earlier-than" restriction for the Conflicts on
  backintime-kde4
* Standards version 3.9.1 (no changes required)
* Update my email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
package = backintime-gnome
 
4
 
 
5
clean:
 
6
        dh_testdir
 
7
        dh_clean
 
8
        rm -f build
 
9
 
 
10
install: build
 
11
        #install python
 
12
        #dh_installdirs /usr/share/backintime/kde4
 
13
        dh_install *.py /usr/share/backintime/kde4
 
14
        
 
15
        #install plugin
 
16
        #dh_installdirs /usr/share/backintime/plugins
 
17
        dh_install plugins/*.py /usr/share/backintime/plugins
 
18
        
 
19
        #install application
 
20
        #dh_installdirs /usr/bin
 
21
        dh_install backintime-kde4 /usr/bin
 
22
        
 
23
        #install copyright file
 
24
        #dh_installdirs /usr/share/doc/backintime-kde4
 
25
        dh_install debian/copyright /usr/share/doc/backintime-kde4
 
26
        
 
27
        #install .desktop file(s)
 
28
        #dh_installdirs /usr/share/applications/kde4
 
29
        dh_install *.desktop /usr/share/applications/kde4
 
30
        
 
31
        #install docbook
 
32
        #dh_installdirs /usr/share/doc/kde4/HTML/en/backintime/figures
 
33
        dh_install docbook/en/*.docbook /usr/share/doc/kde4/HTML/en/backintime
 
34
        dh_install docbook/en/figures/*.png /usr/share/doc/kde4/HTML/en/backintime/figures
 
35
 
 
36
build:
 
37
        touch build
 
38
 
 
39
binary-indep: install
 
40
        dh_testdir -i
 
41
        dh_testroot -i
 
42
        #dh_installdocs -i NEWS
 
43
        #dh_installchangelogs -i ChangeLog
 
44
        #dh_strip -i
 
45
        #dh_compress -i
 
46
        dh_fixperms -i
 
47
        dh_installdeb -i
 
48
        #dh_shlibdeps -i
 
49
        dh_gencontrol -i
 
50
        dh_md5sums -i
 
51
        dh_builddeb -i
 
52
 
 
53
binary-arch: install
 
54
 
 
55
binary: binary-indep
 
56
 
 
57
.PHONY: binary binary-arch binary-indep clean
 
58