forked from I2P_Developers/i2p.i2p

All are from the "delta-pack" with the following exceptions: * binaries for FreeBSD have been compiled in FreeBSD 7.4 to eliminate the dependency on FBSD v6 compatibility libs. They've also been stripped. * Tanuki doesn't offer win64 binaries. Since the x64 binaries had to be compiled anyway, I've added an itoopie icon to the binary and both x86 and x64 binaries are compiled by me. * Linux PPC binaries have been compiled by me since upstream mistakenly ships a 64bit PPC binary as a 32bit binary. * Linux ARMv5 have been compiled by me. * The Linux x64 and x86 binaries have been stripped.
Basic instructions for BSD -------------------------- Prerequisites for compiling the wrapper can be installed with: pkg_add -r apache-ant gmake openjdk6 One the prereqs are installed, cd into the wrapper source and run For 32bit: ant -Dbits=32 compile-c-unix For 64bit: ant -Dbits=64 compile-c-unix Omit "compile-c-unix" from the command-lines if you want to compile wrapper.jar too. Then strip the binaries: strip --strip-unneeded bin/wrapper lib/libwrapper.so ...and turn off the executable bit: chmod 644 bin/wrapper lib/libwrapper.so Don't forget to rename the binary "wrapper" to "i2psvc".