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

« back to all changes in this revision

Viewing changes to tests/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
AUTOMAKE_OPTIONS = 1.6
 
2
INCLUDES = -I $(top_srcdir)/include
 
3
LDADD = $(top_builddir)/lib/libsword.la
 
4
 
 
5
SUBDIRS = cppunit
 
6
 
 
7
noinst_PROGRAMS = ciphertest keytest mgrtest parsekey versekeytest vtreekeytest versemgrtest listtest casttest \
 
8
modtest compnone complzss localetest introtest indextest configtest keycast \
 
9
romantest testblocks filtertest rawldidxtest lextest swaptest \
 
10
 swbuftest xmltest webiftest
 
11
 
 
12
if ICU
 
13
ICUPROG = icutest translittest tlitmgrtest
 
14
else
 
15
ICUPROG =
 
16
endif
 
17
 
 
18
noinst_PROGRAMS += $(ICUPROG)
 
19
 
 
20
if ICU
 
21
icutest_SOURCES = icutest.cpp
 
22
translittest_SOURCES = translittest.cpp
 
23
tlitmgrtest_SOURCES = tlitmgrtest.cpp
 
24
#tlitmgrtest_LDADD = -lustdio
 
25
endif
 
26
 
 
27
if ZLIB
 
28
ZLIBPROG = compzip
 
29
else
 
30
ZLIBPROG =
 
31
endif
 
32
 
 
33
noinst_PROGRAMS += $(ZLIBPROG)
 
34
 
 
35
if ZLIB
 
36
compzip_SOURCES = compzip.cpp
 
37
endif
 
38
 
 
39
keytest_SOURCES = keytest.cpp
 
40
mgrtest_SOURCES = mgrtest.cpp
 
41
ciphertest_SOURCES = ciphertest.cpp
 
42
parsekey_SOURCES = parsekey.cpp
 
43
versekeytest_SOURCES = versekeytest.cpp
 
44
vtreekeytest_SOURCES = vtreekeytest.cpp
 
45
versemgrtest_SOURCES = versemgrtest.cpp
 
46
listtest_SOURCES = listtest.cpp
 
47
casttest_SOURCES = casttest.cpp
 
48
modtest_SOURCES = modtest.cpp
 
49
compnone_SOURCES = compnone.cpp
 
50
complzss_SOURCES = complzss.cpp
 
51
localetest_SOURCES = localetest.cpp
 
52
keycast_SOURCES = keycast.cpp
 
53
introtest_SOURCES = introtest.cpp
 
54
indextest_SOURCES = indextest.cpp
 
55
configtest_SOURCES = configtest.cpp
 
56
romantest_SOURCES = romantest.cpp
 
57
testblocks_SOURCES = testblocks.cpp
 
58
filtertest_SOURCES = filtertest.cpp
 
59
lextest_SOURCES = lextest.cpp
 
60
rawldidxtest_SOURCES = rawldidxtest.cpp
 
61
swaptest_SOURCES = swaptest.cpp
 
62
swbuftest_SOURCES = swbuftest.cpp
 
63
webiftest_SOURCES = webiftest.cpp
 
64
xmltest_SOURCES = xmltest.cpp
 
65
 
 
66
 
 
67
EXTRA_DIST = 
 
68
include bcppmake/Makefile.am
 
69
include testsuite/Makefile.am
 
70
include tmp/Makefile.am