Hi! As adviced by Romain, I have prepared a patch that fixes this bug, by simply removing the lines that include <net/bpf.h>, since now it's enough to include <pcap.h>, which was already there.
I'll be uploading to sid, following the 0-day NMU policy. Please see this as an effort to help keep the packages in a releasable state. I'm attaching the full interdiff output, which includes my changelog entry and the two removed lines. BTW, it seems the packit homepage has moved to: http://www.packetfactory.net/projects/packit/ -- Besitos, {o_ Marga. (')_
diff -u packit-1.0/debian/changelog packit-1.0/debian/changelog --- packit-1.0/debian/changelog +++ packit-1.0/debian/changelog @@ -1,3 +1,11 @@ +packit (1.0-1.1) unstable; urgency=low + + * Non-maintainer upload to fix Failure To Build From Source. + * Removed references to <net/bpf.h> since now it's sufficient to + include <pcap.h>, as adviced by Romain Francoise. (Closes: #439482) + + -- Margarita Manterola <[EMAIL PROTECTED]> Tue, 11 Sep 2007 14:50:02 -0300 + packit (1.0-1) unstable; urgency=low * New upstream only in patch2: unchanged: --- packit-1.0.orig/src/globals.h +++ packit-1.0/src/globals.h @@ -31,7 +31,6 @@ #include <libnet.h> #include <pcap.h> #include <sys/types.h> -#include <net/bpf.h> #include <signal.h> #include <time.h> #include <stdio.h> only in patch2: unchanged: --- packit-1.0.orig/src/main.h +++ packit-1.0/src/main.h @@ -26,7 +26,6 @@ #include <libnet.h> #include <pcap.h> #include <sys/types.h> -#include <net/bpf.h> #include <signal.h> #include <time.h> #include <stdio.h>

