while setting up Decapod recently I noticed a few (blocking) issues
(Ubuntu 11.10 64 bit):
1. SConstruct of iulib contains a bad check and aborts the installation process:
assert conf.CheckLibWithHeader('tiff', 'tiff.h', 'C', 'inflate();',
1), "please install: libtiff4-dev"
You can apply this patch to iulib's SConstruct to perform the right checks:
--- a/SConstruct Sun May 16 03:57:22 2010 +0200
+++ b/SConstruct Thu Jun 24 14:07:26 2010 +0200
@@ -61,29 +61,30 @@
assert conf.CheckLibWithHeader('png', 'png.h', 'C', 'png_byte;',
1),"please install: libpng12-dev"
assert conf.CheckLibWithHeader('jpeg', 'jconfig.h', 'C',
'jpeg_std_error();', 1),"please install: libjpeg62-dev"
-assert conf.CheckLibWithHeader('tiff', 'tiff.h', 'C', 'inflate();',
1), "please install: libtiff4-dev"
+assert conf.CheckLibWithHeader('z', 'zlib.h', 'C', 'inflate;', 1),
"please install: zlib"
+assert conf.CheckLibWithHeader('tiff', 'tiff.h', 'C', 'TIFFOpen();',
1), "please install: libtiff4-dev"
2. The repository for ocropus 0.4.4 has changed:
hg clone -r ocropus-0.4.4 https://code,google.com/p/ocropus.ocroold
Checking out from another repository, e.g. using the install script,
will NOT install ocropus 0.4.4 at the moment and Decapod won't work.
We will switch to the new version of ocropus in the coming weeks and
fix these issues in the process.
Cheers
Martin
--
You received this message because you are subscribed to the Google Groups "Decapod" group.
To post to this group, send email to dec...@googlegroups.com.
To unsubscribe from this group, send email to decapod+u...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/decapod?hl=en.
Yes, this issue didn't occur on all installations. I encountered it
first time on the latest setup of Ubuntu 11.10 64-bit a few days ago.
I wouldn't directly patch the repository before making sure that it
doesn't break anything on other setups.
Martin