Wed, 29 Aug 2012 21:07:12 +0200
Back out libexec substitution now longer correct, remove manpages correspoding
to not installed binaries, and most importantly avoid linking to
cats_dummy which serves no other purpose than to sabotage runtime
operations of all binaries calling db_init_database(3) with a fatal
error message 'Please replace this dummy libbaccats library with a
proper one.' Disabling libtool use resolves this problem in the build
configuration (probably in src/cats/Makefile.in.)
1 Index: ndiff/setup.py
2 --- ndiff/setup.py.orig 2009-06-24 23:35:54 +0200
3 +++ ndiff/setup.py 2009-10-18 10:27:48 +0200
4 @@ -29,5 +29,5 @@
5 + "Installing your distribution's python-dev package may solve this problem.")
7 distutils.core.setup(name = u"ndiff", scripts = [u"ndiff"],
8 - data_files = [(u"share/man/man1", [u"docs/ndiff.1"])],
9 + data_files = [(u"man/man1", [u"docs/ndiff.1"])],
10 cmdclass = {"install_egg_info": null_command, "install": checked_install})