nfd: Created package with systemd scripts

This commit also removes unnecessary customization for 14.04

Change-Id: If72f8da534cd47361ca1ee1d768588ae3f2c787e
diff --git a/nfd/debian/changelog b/nfd/debian/changelog
index 8ee333d..000600f 100644
--- a/nfd/debian/changelog
+++ b/nfd/debian/changelog
@@ -1,3 +1,17 @@
+nfd (0.3.3-ppa3~DISTRO) DISTRO; urgency=low
+
+  * New version based on NFD-0.3.3 (https://github.com/named-
+    data/NFD.git)
+
+ -- Alexander Afanasyev <alexander.afanasyev@ucla.edu>  Wed, 22 Jul 2015 05:50:48 +0000
+
+nfd (0.3.3-ppa2~DISTRO) DISTRO; urgency=low
+
+  * New version based on NFD-0.3.3 (https://github.com/named-
+    data/NFD.git)
+
+ -- Alexander Afanasyev <alexander.afanasyev@ucla.edu>  Wed, 22 Jul 2015 05:09:21 +0000
+
 nfd (0.3.3-ppa1~DISTRO) DISTRO; urgency=low
 
   * New version based on NFD-0.3.3 (https://github.com/named-
diff --git a/nfd/debian/control.trusty b/nfd/debian/control.trusty
deleted file mode 100644
index ababa42..0000000
--- a/nfd/debian/control.trusty
+++ /dev/null
@@ -1,42 +0,0 @@
-Source: nfd
-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.3.0~rc0.2),
- python-sphinx,
- libpcap-dev,
- libboost-all-dev (>= 1.48.0)
-Standards-Version: 3.9.2
-Section: net
-Homepage: http://named-data.net/doc/NFD/
-Vcs-Git: git://github.com/named-data/NFD.git
-Vcs-Browser: http://github.com/named-data/NFD
-
-Package: nfd
-Architecture: i386 amd64
-Depends: ${shlibs:Depends}, ${misc:Depends}, ndn-cxx, sudo, procps
-Description: NFD - Named Data Networking Forwarding Daemon
- NFD is a network forwarder that implements and evolves together with the Named Data
- Networking (NDN) protocol.
-
-Package: nfd-status-http-server
-Architecture: i386 amd64
-Depends: nfd (= ${binary:Version}), ${misc:Depends}, python2.7-minimal
-Description: NFD HTTP status server
-
-Package: nfd-autoreg
-Architecture: i386 amd64
-Depends: nfd (= ${binary:Version}), ${misc:Depends}
-Description: NFD autoreg server
-
-Package: ndn-autoconfig-server
-Architecture: i386 amd64
-Depends: nfd (= ${binary:Version}), ${misc:Depends}
-Description: NDN autoconfig server
-
-Package: nfd-all
-Architecture: any
-Depends: ${misc:Depends}, nfd, nfd-status-http-server, nfd-autoreg, ndn-autoconfig-server
-Description: NFD and all related daemons
diff --git a/nfd/debian/rules.trusty b/nfd/debian/rules.trusty
deleted file mode 100755
index 5318c7e..0000000
--- a/nfd/debian/rules.trusty
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/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++11
-
-%:
-	dh $@ --parallel
-
-override_dh_auto_configure:
-	CXXFLAGS="$(CXXFLAGS)" ./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 -f .waf-tools/*.pyc
-	rm -f docs/*.pyc
-
-override_dh_auto_test: