~ubuntu-branches/debian/squeeze/bugzilla/squeeze

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Bossek
  • Date: 2010-09-02 09:48:42 UTC
  • Revision ID: james.westby@ubuntu.com-20100902094842-87c61jbwd4o1d292
Tags: 3.6.2.0-3
* [Debconf translation updates]
  - Spanish (Francisco Javier Cuadrado). Closes: #594766, #595230
  - German (Helge Kreutzmann). Closes: #595186
  - French (Christian Perrier). Closes: #594929
  - Russian (Yuri Kozlov). Closes: #595261
  - Czeck (Michal Simunek). Closes: #595277
  - Swedish (Martin Bagge). Closes: #595350
  - Italian (Vincenzo Campanella).
  - Danish (Joe Dalton). Closes: #595383
  - Basque (Iñaki Larrañaga Murgoitio).
  - Brazilian Portuguese (Adriano Rafael Gomes). Closes: #596436
  - Portuguese (Miguel Figueiredo). Closes: #596279

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
        chmod a-x $(CURDIR)/debian/maintenance/*.sh
42
42
        $(MAKE) -f debian/Makefile clean
43
43
        debconf-updatepo
 
44
        set -e; LANG=C; for f in $(CURDIR)/debian/po/*.po; do \
 
45
                msgfmt -o /dev/null --statistics $$f 2>&1 | grep -q "fuzzy\|untrans" || continue; \
 
46
                echo "Incompleate translation in $$f"; \
 
47
        done
44
48
 
45
49
override_dh_auto_install:
46
50
        # Work in progress
81
85
        # Additional tools
82
86
        $(INSTALL)    -m 755 -o root -g root $(CURDIR)/debian/maintenance/bugzparam $(CURDIR)/debian/bugzilla3/usr/share/bugzilla3/contrib/bugzparam
83
87
 
 
88
# http://www.debian.org/doc/developers-reference/best-pkging-practices.html#s6.5.2
 
89
maintainer_translate:
 
90
        debconf-updatepo
 
91
        cd debian/po && podebconf-report-po --call --languageteam --withtranslators --deadline="+10 days"
 
92