I do not claim to be a package maintainer by any means but while installing v2.0.3 using make under ubuntu it would not install the init script for 2 reasons. The make file was missing spaces after the [ in the if statements. The initd file was not supplied. Here is what I have done to fix this. Hope it helps.
Make file changes as shown by diff
diff Makefile.dist Makefile.new
166c166
< elif [-f /etc/debian_version ]; then \
---
> elif [ -f /etc/debian_version ]; then \
168c168
< elif [-f /etc/redhat_version ]; then \
---
> elif [ -f /etc/redhat_version ]; then \
init.d script I used is attached. start-stop-daemon is used for checking existing processes. It likely needs more work.
initd file for debian