ndn-tlv-ping: Updating to the latest version
diff --git a/ndn-tlv-ping/Makefile b/ndn-tlv-ping/Makefile
index 5ddd964..1a153bf 100644
--- a/ndn-tlv-ping/Makefile
+++ b/ndn-tlv-ping/Makefile
@@ -2,15 +2,15 @@
 GIT_URL=https://github.com/named-data/ndn-tlv-ping
 
 # Tag name or commit hash for checkout
-GIT_VERSION=38f1ea7698108bdd1cdbdd621316f020b8d0e4dc
+GIT_VERSION=1283684bacb2352de38c8f0ad21a069875583d91
 
 # Package name
 NAME=ndn-tlv-ping
 
 # Package version
-VERSION=0.1.3
+VERSION=0.1.4
 
 # PPA version
-PPA_VERSION=1
+PPA_VERSION=3
 
 include ../packaging.mk
diff --git a/ndn-tlv-ping/debian/changelog b/ndn-tlv-ping/debian/changelog
index 49a79de..433076a 100644
--- a/ndn-tlv-ping/debian/changelog
+++ b/ndn-tlv-ping/debian/changelog
@@ -1,3 +1,17 @@
+ndn-tlv-ping (0.1.4-ppa3~DISTRO) DISTRO; urgency=low
+
+  * New version based on 1283684bacb2352de38c8f0ad21a069875583d91
+    (https://github.com/named-data/ndn-tlv-ping)
+
+ -- Alexander Afanasyev <alexander.afanasyev@ucla.edu>  Thu, 18 Dec 2014 23:22:56 -0800
+
+ndn-tlv-ping (0.1.4-ppa2~DISTRO) DISTRO; urgency=low
+
+  * New version based on 1283684bacb2352de38c8f0ad21a069875583d91
+    (https://github.com/named-data/ndn-tlv-ping)
+
+ -- Alexander Afanasyev <alexander.afanasyev@ucla.edu>  Thu, 18 Dec 2014 23:16:46 -0800
+
 ndn-tlv-ping (0.1.3-ppa1~DISTRO) DISTRO; urgency=low
 
   * New version based on 38f1ea7698108bdd1cdbdd621316f020b8d0e4dc
diff --git a/ndn-tlv-ping/debian/control b/ndn-tlv-ping/debian/control
index b0c9367..8c2f0ed 100644
--- a/ndn-tlv-ping/debian/control
+++ b/ndn-tlv-ping/debian/control
@@ -4,7 +4,7 @@
 Build-Depends: debhelper (>= 8.0.0),
  python (>= 2.7.0),
  pkg-config (>= 0.26),
- ndn-cxx-dev (>= 0.3.0~rc0.0)
+ ndn-cxx-dev (>= 0.3.0~rc0.2)
 Standards-Version: 3.9.2
 Section: net
 Homepage: http://github.com/named-data/ndn-tlv-ping
diff --git a/ndn-tlv-ping/debian/rules b/ndn-tlv-ping/debian/rules
index 4f6bbef..0d3817e 100755
--- a/ndn-tlv-ping/debian/rules
+++ b/ndn-tlv-ping/debian/rules
@@ -10,15 +10,17 @@
 # export DH_VERBOSE=1
 
 LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)
+CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
+CXXFLAGS += -std=c++11
 
 %:
 	dh $@ --parallel
 
 override_dh_auto_configure:
-	./waf --nocache configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+	CXXFLAGS="$(CXXFLAGS)" LINKFLAGS="$(LDFLAGS)" ./waf configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
 
 override_dh_auto_build:
-	./waf --nocache build
+	./waf build
 
 override_dh_auto_install:
 	./waf install --destdir=debian/tmp
@@ -30,6 +32,7 @@
 	dh_clean
 	./waf distclean
 	rm -rf .waf-1*
+	rm -rf .waf3-1*
 	rm -f .waf-tools/*.pyc
 
 override_dh_auto_test:
diff --git a/ndn-tlv-ping/debian/rules.precise b/ndn-tlv-ping/debian/rules.precise
new file mode 100755
index 0000000..5fa0a0c
--- /dev/null
+++ b/ndn-tlv-ping/debian/rules.precise
@@ -0,0 +1,38 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+# export DH_VERBOSE=1
+
+LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS)
+CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS)
+CXXFLAGS += -std=c++0x
+
+%:
+	dh $@ --parallel
+
+override_dh_auto_configure:
+	CXXFLAGS="$(CXXFLAGS)" LINKFLAGS="$(LDFLAGS)" ./waf configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+
+override_dh_auto_build:
+	./waf build
+
+override_dh_auto_install:
+	./waf install --destdir=debian/tmp
+
+override_dh_auto_clean:
+	./waf distclean
+
+override_dh_clean:
+	dh_clean
+	./waf distclean
+	rm -rf .waf-1*
+	rm -rf .waf3-1*
+	rm -f .waf-tools/*.pyc
+
+override_dh_auto_test: