diff -pruN 2.0.0-4/.cvsignore 2.0.0-5/.cvsignore
--- 2.0.0-4/.cvsignore	2012-05-22 15:38:55.000000000 +0000
+++ 2.0.0-5/.cvsignore	1970-01-01 00:00:00.000000000 +0000
@@ -1,4 +0,0 @@
-cfg.tab.c
-cfg.tab.h
-lex.yy.c
-ser
diff -pruN 2.0.0-4/debian/changelog 2.0.0-5/debian/changelog
--- 2.0.0-4/debian/changelog	2012-05-22 15:38:55.000000000 +0000
+++ 2.0.0-5/debian/changelog	2012-05-22 15:38:56.000000000 +0000
@@ -1,3 +1,12 @@
+ser (2.0.0-5) unstable; urgency=low
+
+  * Fix "FTBFS: build-dependency not installable: libreadline5-dev"
+    Changed Build-Depends: libreadline-dev (Closes: #634436)
+  * Fix "Fails to start when /var/run/ser doesnt exist, as happens on
+    dists using temp /var/run dirs" Update ser.init (Closes: #596191)
+
+ -- Mark Purcell <msp@debian.org>  Sun, 13 Nov 2011 12:28:15 +1100
+
 ser (2.0.0-4) unstable; urgency=low
 
   * Rebuild for libc6 (2.10.2)
diff -pruN 2.0.0-4/debian/control 2.0.0-5/debian/control
--- 2.0.0-4/debian/control	2012-05-22 15:38:55.000000000 +0000
+++ 2.0.0-5/debian/control	2012-05-22 15:38:56.000000000 +0000
@@ -3,7 +3,7 @@ Section: net
 Priority: optional
 Maintainer: Debian VoIP Team <pkg-voip-maintainers@lists.alioth.debian.org>
 Uploaders: Mark Purcell <msp@debian.org>, Kilian Krause <kilian@debian.org>
-Build-Depends: hardening-wrapper, debhelper (>= 5), quilt, libmysqlclient-dev, libexpat1-dev, libradiusclient-ng-dev, libxml2-dev, libpq-dev, libcurl4-openssl-dev, libreadline5-dev, libosptk3-dev, uuid-dev, bison, flex
+Build-Depends: hardening-wrapper, debhelper (>= 5), quilt, libmysqlclient-dev, libexpat1-dev, libradiusclient-ng-dev, libxml2-dev, libpq-dev, libcurl4-openssl-dev, libreadline-dev, libosptk3-dev, uuid-dev, bison, flex
 Standards-Version: 3.8.1
 Homepage: http://www.iptel.org/ser/
 Vcs-Svn: svn://svn.debian.org/pkg-voip/ser/trunk/
diff -pruN 2.0.0-4/debian/ser.init 2.0.0-5/debian/ser.init
--- 2.0.0-4/debian/ser.init	2012-05-22 15:38:55.000000000 +0000
+++ 2.0.0-5/debian/ser.init	2012-05-22 15:38:56.000000000 +0000
@@ -36,6 +36,13 @@ test -f $DAEMON || exit 0
 
 set -e
 
+# Make sure /var/run/ subdirectories exists.
+if [ ! -e /var/run/$NAME ] ; then
+	mkdir -p /var/run/$NAME
+	chmod 755 /var/run/$NAME
+fi
+
+
 case "$1" in
   start)
 	echo -n "Starting $DESC: $NAME"
