Hi,
I just solved this problem yesterday. I'm running Debian squeeze on my eSATA Sheevaplug, but that shouldn't make a difference for you.
Netatalk 2.2beta4 is present in current Debian unstable/sid repository. So you'd have to install netatalk from there as explained below.
After installing netatalk, just follow this guide about configuring netatalk on using Debian/Ubuntu as a TimeMachine server:
http://www.kremalicious.com/2008/06/ubuntu-as-mac-file-server-and-time-machine-volume/ (Skip section 1 about installing netatalk...)
(1) Add the Debian unstable repository to your sources.list (choose your preferred Debian mirror, I chose the German one):
echo deb http://ftp.de.debian.org/debian unstable main non-free contrib >> /etc/apt/sources.list
(2) I use apt pinning to prevent other packages than netatalk from being updated...
cat << EOF >> /etc/apt/preferences
Package: *
Pin: release a=unstable
Pin-Priority: 200
EOF
(3) verify the lower pinning priority of unstable vs. lenny
apt-cache policy
expected result is the pinning priority specified above (=200). This priority must be lower than the other priorities of lenny.
...
200 http://ftp.de.debian.org/debian/ unstable/contrib armel Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=contrib
origin ftp.de.debian.org
200 http://ftp.de.debian.org/debian/ unstable/non-free armel Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=non-free
origin ftp.de.debian.org
200 http://ftp.de.debian.org/debian/ unstable/main armel Packages
release o=Debian,a=unstable,n=sid,l=Debian,c=main
origin ftp.de.debian.org
...
(4) update the apt database and explicitly install netatalk from unstable
aptitude update
aptitude -t unstable install netatalk
(5) check installed version of netatalk
apt-cache show netatalk
expected result is
netatalk 2.2beta4...
Package: netatalk
Version: 2.2~beta4-1
...
Hope this helps...
Seems that the netatalk developers have released the final version 2.2 source on 27th July. So most probably this will be updated in Debian unstable during the next days/weeks/months... ;-)
Best regards,
Andreas