I did all that last night, I think that went OK, I just get a libboost error that I can't sort out.
I had to add libboost 1.46.1 to my existing 1.49.1. The 1.46.1 source code did not produce a libboost_threads library, so had to symlink my existing (1.49.1) libboost_threads as 1.46.1.
Apparently the devs hard-coded it to accept 1.46.1 and no other boost.
So you have to fool the application into thinking 1.49 is 1.46 ?
Fu-u-u-ck.
I just tried installing from deb package and it warned me that 1.46 will break 1.53
Wondering if I need to break someone's head.
No, don't try installing from the .deb. What I did was, compiled boost from scratch. Here, I'll give you the three boost libs you need, if you'll create the symlink you need.
Start a terminal and enter (adjust version number to what you actually have)
# cd /usr/lib
# ln -s libboost_thread.so.1.53.0 libboost_thread.so.1.46.1
and make sure the symlink has been created
# ls -lah /usr/lib/libboost_thread.so.1.46.1
and then download this:
(***EDITED wait, I fucked up, let me put a fresh version up***)
(***OK, try this one. If you untar'ed the one I put up before, start a terminal and do this:
# cd /usr/lib
# rm -f libboost_filesystem.so.1.46.1
# rm -f libboost_system.so.1.46.1
# rm -f libboost_program_options.so.1.46.1
)
http://www.datafilehost.com/d/72275094(maxcoinboostlibs.tar)
# md5sum maxcoinboostlibs.tar
e1823576edba04b563044083835756fa maxcoinboostlibs.tar
and untar it in /usr/lib
# cd (wherever you downloaded it to)
# cp ./maxcoinboostlibs.tar /usr/lib
# cd /usr/lib
# tar -xvf ./maxcoinboostlibs.tar
# rm -f ./maxcoinboostlibs.tar
and joy should be yours.