ndndump: New package
diff --git a/ndndump/Makefile b/ndndump/Makefile
new file mode 100644
index 0000000..5f8e61b
--- /dev/null
+++ b/ndndump/Makefile
@@ -0,0 +1,16 @@
+# URL for git clone
+GIT_URL=https://github.com/named-data/ndndump
+
+# Tag name or commit hash for checkout
+GIT_VERSION=22f77ef777d7201b3677b04e6b1e0e85c45f0238
+
+# Package name
+NAME=ndndump
+
+# Package version
+VERSION=0.0.0
+
+# PPA version
+PPA_VERSION=1
+
+include ../packaging.mk
diff --git a/ndndump/debian/changelog b/ndndump/debian/changelog
new file mode 100644
index 0000000..1a0afed
--- /dev/null
+++ b/ndndump/debian/changelog
@@ -0,0 +1,5 @@
+ndndump (0.0.0~ppa0~DISTRO) DISTRO; urgency=low
+
+  * Initial release
+
+ -- Alexander Afanasyev <alexander.afanasyev@ucla.edu>  Sat, 24 May 2014 16:58:30 -0800
diff --git a/ndndump/debian/compat b/ndndump/debian/compat
new file mode 100644
index 0000000..45a4fb7
--- /dev/null
+++ b/ndndump/debian/compat
@@ -0,0 +1 @@
+8
diff --git a/ndndump/debian/control b/ndndump/debian/control
new file mode 100644
index 0000000..34281a7
--- /dev/null
+++ b/ndndump/debian/control
@@ -0,0 +1,18 @@
+Source: ndndump
+Priority: extra
+Maintainer: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
+Build-Depends: debhelper (>= 8.0.0),
+ python (>= 2.7.0),
+ pkg-config (>= 0.26),
+ ndn-cxx-dev (>= 0.1.0~rc1)
+Standards-Version: 3.9.2
+Section: net
+Homepage: http://github.com/named-data/ndndump
+Vcs-Git: git://github.com/named-data/ndndump.git
+Vcs-Browser: http://github.com/named-data/ndndump
+
+Package: ndndump
+Architecture: i386 amd64
+Depends: ${shlibs:Depends}, ${misc:Depends}, ndn-cxx
+Description: Packet capture and analysis tool for NDN
+ ndndump was created to provide a tcpdump-like tool for Named Data Networking (NDN).
diff --git a/ndndump/debian/copyright b/ndndump/debian/copyright
new file mode 100644
index 0000000..a15e2de
--- /dev/null
+++ b/ndndump/debian/copyright
@@ -0,0 +1,43 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: ndndump
+Source: http://github.com/named-data/ndndump
+
+Files: *
+Copyright: Copyright (c) 2011-2014, Regents of the University of California.
+License: GPL-3+
+ ndndump is free software: you can redistribute it and/or modify it under the terms
+ of the GNU General Public License as published by the Free Software Foundation,
+ either version 3 of the License, or (at your option) any later version.
+ .
+ ndndump is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+ without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ PURPOSE.  See the GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License along with
+ ndndump, e.g., in COPYING file.  If not, see <http://www.gnu.org/licenses/>.
+
+Files: debian/*
+Copyright: Copyright (c) 2013-2014, Alexander Afanasyev <alexander.afanasyev@ucla.edu>
+License: BSD
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+     * Redistributions of source code must retain the above copyright
+       notice, this list of conditions and the following disclaimer.
+     * Redistributions in binary form must reproduce the above copyright
+       notice, this list of conditions and the following disclaimer in the
+       documentation and/or other materials provided with the distribution.
+     * Neither the name of the Regents of the University of California nor
+       the names of its contributors may be used to endorse or promote
+       products derived from this software without specific prior written
+       permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ ARE DISCLAIMED. IN NO EVENT SHALL REGENTS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
+ OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/ndndump/debian/repo-ng.dirs b/ndndump/debian/repo-ng.dirs
new file mode 100644
index 0000000..e772481
--- /dev/null
+++ b/ndndump/debian/repo-ng.dirs
@@ -0,0 +1 @@
+usr/bin
diff --git a/ndndump/debian/repo-ng.install b/ndndump/debian/repo-ng.install
new file mode 100644
index 0000000..1df36c6
--- /dev/null
+++ b/ndndump/debian/repo-ng.install
@@ -0,0 +1 @@
+usr/bin/*
diff --git a/ndndump/debian/rules b/ndndump/debian/rules
new file mode 100755
index 0000000..dfbc583
--- /dev/null
+++ b/ndndump/debian/rules
@@ -0,0 +1,36 @@
+#!/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)
+
+%:
+	dh $@ --parallel
+
+override_dh_auto_configure:
+	./waf --nocache configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
+
+override_dh_auto_build:
+	./waf --nocache 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:
diff --git a/ndndump/debian/source/format b/ndndump/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/ndndump/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)