Presently "kfreebsd-source-8.1" is disjoint from the code I need to build the quota tools. How should I go about getting the source package to expand? Would a bug report suffice?
The "kfreebsd-source-8.2" is source of kernel only.
Iff you need other sources, take a look at
freebsd-libs/freebsd-utils debian/rules,
target get-orig-source
VERSION=$(shell dpkg-parsechangelog | sed -e '/^Version:/!d' -e 's/^Version: //g' -e 's/-.*//g')
SVN=http://svn.freebsd.org/base/release/$(VERSION).0
ORIGDIR=freebsd-utils-$(VERSION)
get-orig-source:
rm -rf $(ORIGDIR)
mkdir -p $(ORIGDIR)/sys/kern $(ORIGDIR)/etc
for i in sbin/dmesg sbin/sysctl usr.bin/kdump usr.bin/ktrace \
....
sbin/savecore sbin/dumpon \
sys/kern/syscalls.c etc/pf.os ; do \
svn export $(SVN)/$$i $(ORIGDIR)/$$i ; \
done
tar --numeric-owner --owner 0 --group 0 -czf ../freebsd-utils_$(VERSION).orig.tar.gz $(ORIGDIR)
rm -rf $(ORIGDIR)
Petr