Index: server/fedora/Makefile
===================================================================
--- server/fedora/Makefile	(revision 34)
+++ server/fedora/Makefile	(revision 36)
@@ -84,7 +84,6 @@
 	for i in $$list; do \
 		pushd $$i; \
+		./mrproper; \
 		autoconf; \
-		./configure; \
-		make ready; \
 		popd; \
 		tar -czf $(tmp_src)/$$i.tar.gz $$i; \
@@ -129,2 +128,15 @@
 install-suexec:
 	install -m 4510 -o 0 -g apache ${PWD}/sbin/suexec /usr/sbin/;
+
+# The following packages are needed for *building* all of our packages
+# basic deps: rpm-build through autoconf
+# oursrc: hesinfo
+# httpd: xmlto through distcache-devel
+# krb5: bison through texinfo
+# openafs: pam-devel through automake
+install-build-deps:
+	yum -y install rpm-build gcc autoconf hesinfo xmlto db4-devel expat-devel zlib-devel libselinux-devel apr-devel apr-util-devel pcre-devel openssl-devel distcache-devel bison ncurses-devel texinfo pam-devel automake
+
+# The following packages are needed for *installing* all of our packages
+install-deps:
+	yum -y krb5-workstation
Index: server/fedora/specs/lockeradm.spec
===================================================================
--- server/fedora/specs/lockeradm.spec	(revision 34)
+++ server/fedora/specs/lockeradm.spec	(revision 36)
@@ -10,4 +10,5 @@
 BuildRoot: %{_tmppath}/%(%{__id_u} -n)-%{name}-%{version}-root
 %define debug_package %{nil}
+Prereq: /usr/bin/fs, /usr/bin/pts
 
 %description 
@@ -24,5 +25,5 @@
 
 %build
-./configure
+./configure --with-fs=/usr/bin/fs --with-pts=/usr/bin/pts
 make
 
Index: server/fedora/specs/tokensys.spec
===================================================================
--- server/fedora/specs/tokensys.spec	(revision 34)
+++ server/fedora/specs/tokensys.spec	(revision 36)
@@ -10,4 +10,5 @@
 BuildRoot: %{_tmppath}/%(%{__id_u} -n)-%{name}-%{version}-root
 %define debug_package %{nil}
+Prereq: /usr/kerberos/bin/kinit, /usr/bin/aklog
 
 %description 
@@ -23,5 +24,5 @@
 
 %build
-./configure
+./configure --with-kinit=/usr/kerberos/bin/kinit --with-aklog=/usr/bin/aklog
 
 %install
