~ubuntu-branches/debian/squeeze/sword/squeeze

« back to all changes in this revision

Viewing changes to locales.d/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Marsden, Jonathan Marsden, Dmitrijs Ledkovs, Closed Bugs
  • Date: 2009-05-30 11:55:55 UTC
  • mfrom: (1.3.1 upstream) (6.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090530115555-r427zsn3amivdpfu
Tags: 1.6.0+dfsg-1
[ Jonathan Marsden ]
* New upstream release. (Closes: #507960) (LP: #320558)
* debian/patches/02_libver.diff:
  - Bump SONAME to 8 -- SWORD 1.6 is not backward compatible with 1.5.11.
* debian/patches/series:
  - Remove 10_diatheke.diff -- included in upstream source.
* debian/patches/:
  - Remove several old unused .diff files.
  - Add 11_regex_only_when_needed.diff to conditionally include regex lib.
  - Add 12_fix_compiler_warnings.diff to remove all compiler warnings.
  - Add 13_fix_osis2mod_compression_default.diff from upstream svn.
  - Add 14_closing_section_not_chapter.diff from upstream svn.
* debian/libsword7.*: 
  - Rename to libsword8.*
  - Change libsword7 to libsword8 within files.
* debian/rules: 
  - SONAME bump to 8.
  - Set library version check to >= 1.6
* debian/control:
  - Change libsword7 to libsword8.
  - Add libsword7 to Conflicts.
  - Fix case of sword to SWORD in package descriptions.
  - Bump Standards-Version to 3.8.1 (no changes needed).
  - Fix section for libsword-dbg to avoid lintian warning.
* debian/rules:
  - Add DFSG get-orig-source target.
* debian/copyright:
  - Fix various mistakes in initial attempt to document copyrights.

[ Dmitrijs Ledkovs ]
* debian/rules: Added utils.mk to use missing-files target and call it on
  each build.
* debian/libsword-dev.install: Added libsword.la, previously missing.
* debian/libsword7.install: Added missing libicu translit files.
* debian/control:
  - Updated all uses of SWORD version to 1.6
  - Added libsword-dbg package
* debian/watch: Fixed a small mistake which was resulting in extra "."
  in final version name.
* debian/rules: simplified manpage processing.
* debian/libsword8.lintian-overrides: added override for module
  installation directory.
* debian/copyright: Updated with information about everyfile.
  Closes: #513448 LP: #322638
* debian/diatheke.examples: moved examples here from the diatheke.install
* debian/rules:
  - enabled shell script based testsuite
  - added commented out cppunit testsuite
* debian/patches/40_missing_includes.diff: 
  - added several missing stdio.h includes to prevent FTBFS of testsuite.

[ Closed Bugs ]
* FTBFS on intrepid (LP: #305172)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
swlocaledir = $(top_srcdir)/locales.d
 
2
 
 
3
localeDATA = $(swlocaledir)/*.conf
 
4
 
 
5
# This is too messy, not sure if it really is necessary.
 
6
#
 
7
#localeDATA = $(swlocaledir)/abbr.conf
 
8
#localeDATA += $(swlocaledir)/af.conf
 
9
#localeDATA += $(swlocaledir)/bg_BG-cp1251.conf
 
10
#localeDATA += $(swlocaledir)/cs.conf
 
11
#localeDATA += $(swlocaledir)/da.conf
 
12
#localeDATA += $(swlocaledir)/de-utf8.conf
 
13
#localeDATA += $(swlocaledir)/de.conf
 
14
#localeDATA += $(swlocaledir)/de_abbrev.conf
 
15
#localeDATA += $(swlocaledir)/en_GB.conf
 
16
#localeDATA += $(swlocaledir)/es.conf
 
17
#localeDATA += $(swlocaledir)/et.conf
 
18
#localeDATA += $(swlocaledir)/et_abbr.conf
 
19
#localeDATA += $(swlocaledir)/fi.conf
 
20
#localeDATA += $(swlocaledir)/fr.conf
 
21
#localeDATA += $(swlocaledir)/hu.conf
 
22
#localeDATA += $(swlocaledir)/id.conf
 
23
#localeDATA += $(swlocaledir)/it.conf
 
24
#localeDATA += $(swlocaledir)/la.conf
 
25
#localeDATA += $(swlocaledir)/nl.conf
 
26
#localeDATA += $(swlocaledir)/no.conf
 
27
#localeDATA += $(swlocaledir)/pl.conf
 
28
#localeDATA += $(swlocaledir)/pt.conf
 
29
#localeDATA += $(swlocaledir)/pt_BR.conf
 
30
#localeDATA += $(swlocaledir)/ro.conf
 
31
#localeDATA += $(swlocaledir)/ru_RU-cp1251.conf
 
32
#localeDATA += $(swlocaledir)/ru_RU-koi8-r.conf
 
33
#localeDATA += $(swlocaledir)/sk.conf
 
34
#localeDATA += $(swlocaledir)/sl.conf
 
35
#localeDATA += $(swlocaledir)/uk_UA-cp1251.conf
 
36
#localeDATA += $(swlocaledir)/uk_UA-koi8-u.conf
 
37
 
 
38
EXTRA_DIST += $(localeDATA)
 
39
 
 
40
localedatadir = $(pkgdatadir)/locales.d
 
41
 
 
42
installlocaleDATA: $(localeDATA)
 
43
        @$(NORMAL_INSTALL)
 
44
        $(mkinstalldirs) $(DESTDIR)$(localedatadir)
 
45
        @list='$(localeDATA)'; for p in $$list; do \
 
46
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
 
47
          f="`echo $$p | sed -e 's|^.*/||'`"; \
 
48
          echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(localedatadir)/$$f"; \
 
49
          $(INSTALL_DATA) $$d$$p $(DESTDIR)$(localedatadir)/$$f; \
 
50
        done
 
51
 
 
52
uninstalllocaleDATA:
 
53
        @$(NORMAL_UNINSTALL)
 
54
        @list='$(localeDATA)'; for p in $$list; do \
 
55
          f="`echo $$p | sed -e 's|^.*/||'`"; \
 
56
          echo " rm -f $(DESTDIR)$(localedatadir)/$$f"; \
 
57
          rm -f $(DESTDIR)$(localedatadir)/$$f; \
 
58
        done
 
59