~ubuntu-branches/ubuntu/wily/kbibtex/wily

« back to all changes in this revision

Viewing changes to po/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Michael Hanke
  • Date: 2009-06-15 12:41:19 UTC
  • mfrom: (1.1.3 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090615124119-eoojhlvkmw3o9tkm
Tags: 0.2.2-1
* New upstream version (Closes: #487301, #507837, #518959, #520392).
* Bumped Standards-Version to 3.8.1. No changes necessary.
* Added 'DM-Upload-Allowed: yes'.
* Added missing '${misc:Depends}'.
* Support for per-file encoding settings (Closes: #514356)
* Upgrade debhelper compatibility to version 5.
* Update debian/copyright for 2009 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
LIBXML_LIBS = @LIBXML_LIBS@
142
142
LIBXSLT_CFLAGS = @LIBXSLT_CFLAGS@
143
143
LIBXSLT_LIBS = @LIBXSLT_LIBS@
 
144
LIBYAZ_CFLAGS = @LIBYAZ_CFLAGS@
 
145
LIBYAZ_LIBS = @LIBYAZ_LIBS@
 
146
LIBYAZ_RPATH = @LIBYAZ_RPATH@
144
147
LIBZ = @LIBZ@
145
148
LIB_KAB = @LIB_KAB@
146
149
LIB_KABC = @LIB_KABC@
188
191
PACKAGE_VERSION = @PACKAGE_VERSION@
189
192
PATH_SEPARATOR = @PATH_SEPARATOR@
190
193
PERL = @PERL@
 
194
PKG_CONFIG = @PKG_CONFIG@
191
195
QTE_NORTTI = @QTE_NORTTI@
192
196
QT_INCLUDES = @QT_INCLUDES@
193
197
QT_LDFLAGS = @QT_LDFLAGS@
304
308
xdg_menudir = @xdg_menudir@
305
309
#>- POFILES = AUTO
306
310
#>+ 2
307
 
POFILES = de.po ru.po
308
 
GMOFILES = de.gmo ru.gmo
 
311
POFILES = de.po it.po fr.po pl.po ru.po
 
312
GMOFILES = de.gmo it.gmo fr.gmo pl.gmo ru.gmo
309
313
EXTRA_DIST = kbibtex.pot
310
314
#>- all: all-am
311
315
#>+ 1
499
503
.NOEXPORT:
500
504
 
501
505
#>+ 2
502
 
KDE_DIST=Makefile.in ru.po messages.sh de.po Makefile.am 
 
506
KDE_DIST=Makefile.in ru.po messages.sh pl.po de.po fr.po it.po Makefile.am 
503
507
 
504
 
#>+ 7
 
508
#>+ 16
505
509
de.gmo: de.po
506
510
        rm -f de.gmo; $(GMSGFMT) -o de.gmo $(srcdir)/de.po
507
511
        test ! -f de.gmo || touch de.gmo
 
512
it.gmo: it.po
 
513
        rm -f it.gmo; $(GMSGFMT) -o it.gmo $(srcdir)/it.po
 
514
        test ! -f it.gmo || touch it.gmo
 
515
fr.gmo: fr.po
 
516
        rm -f fr.gmo; $(GMSGFMT) -o fr.gmo $(srcdir)/fr.po
 
517
        test ! -f fr.gmo || touch fr.gmo
 
518
pl.gmo: pl.po
 
519
        rm -f pl.gmo; $(GMSGFMT) -o pl.gmo $(srcdir)/pl.po
 
520
        test ! -f pl.gmo || touch pl.gmo
508
521
ru.gmo: ru.po
509
522
        rm -f ru.gmo; $(GMSGFMT) -o ru.gmo $(srcdir)/ru.po
510
523
        test ! -f ru.gmo || touch ru.gmo
511
524
 
512
525
#>+ 3
513
526
clean-nls:
514
 
        -rm -f  de.gmo ru.gmo
 
527
        -rm -f  de.gmo it.gmo fr.gmo pl.gmo ru.gmo
515
528
 
516
529
#>+ 10
517
530
install-nls:
518
 
        @for base in de ru ; do \
 
531
        @for base in de it fr pl ru ; do \
519
532
          echo $(INSTALL_DATA) $$base.gmo $(DESTDIR)$(kde_locale)/$$base/LC_MESSAGES/$(PACKAGE).mo ;\
520
533
          $(mkinstalldirs) $(DESTDIR)$(kde_locale)/$$base/LC_MESSAGES ; \
521
534
          if test -f $$base.gmo; then $(INSTALL_DATA) $$base.gmo $(DESTDIR)$(kde_locale)/$$base/LC_MESSAGES/$(PACKAGE).mo ;\
524
537
        done
525
538
 
526
539
 
527
 
#>+ 4
 
540
#>+ 7
528
541
uninstall-nls:
529
542
        rm -f $(DESTDIR)$(kde_locale)/de/LC_MESSAGES/$(PACKAGE).mo
 
543
        rm -f $(DESTDIR)$(kde_locale)/it/LC_MESSAGES/$(PACKAGE).mo
 
544
        rm -f $(DESTDIR)$(kde_locale)/fr/LC_MESSAGES/$(PACKAGE).mo
 
545
        rm -f $(DESTDIR)$(kde_locale)/pl/LC_MESSAGES/$(PACKAGE).mo
530
546
        rm -f $(DESTDIR)$(kde_locale)/ru/LC_MESSAGES/$(PACKAGE).mo
531
547
 
532
548
#>+ 2