diff options
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 25 | ||||
-rw-r--r-- | debian/copyright | 34 | ||||
-rwxr-xr-x | debian/rules | 9 | ||||
-rw-r--r-- | debian/source/format | 1 |
6 files changed, 75 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..1c645a9 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +snoop (1.0-0+dyson1) unstable; urgency=medium + + * Initial release. + + -- Igor Pashev <pashev.igor@gmail.com> Sat, 14 Jun 2014 22:22:56 +0400 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d0259a7 --- /dev/null +++ b/debian/control @@ -0,0 +1,25 @@ +Source: snoop +Section: net +Priority: optional +Maintainer: Igor Pashev <pashev.igor@gmail.com> +Build-Depends: debhelper (>= 9), + libdhcputil-dev, + libdlpi-dev, + libtsol-dev, +Standards-Version: 3.9.5 +Homepage: http://osdyson.org +Vcs-Git: http://cgit.osdyson.org/illumos/snoop.git +Vcs-Browser: http://cgit.osdyson.org/illumos/snoop.git + +Package: snoop +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: capture and inspect network packets + From a datalink or IP interface, snoop captures packets and displays their + contents. If the datalink or IP interface is not specified, snoop will pick + a datalink to use, giving priority to datalinks that have been plumbed + for IP traffic. + . + Captured packets can be displayed as they are received or saved to a file + (which is RFC 1761-compliant) for later inspection. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..fb1f319 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,34 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: snoop +Upstream-Contact: https://illumos.org +Source: https://github.com/illumos/illumos-gate/tree/master/usr/src/cmd/cmd-inet/usr.sbin/snoop + +Files: debian/* + configure.ac + Makefile.am +Copyright: 2014, Igor Pashev <pashev.igor@gmail.com> +License: WTFPL-2 + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + . + Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> + . + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + . + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + . + 0. You just DO WHAT THE FUCK YOU WANT TO. + + +Files: usr/* +Copyright: 1991-2010, Sun Microsystems, Inc. + 2011-2014, Nexenta Systems, Inc. + 2012, Delphix + 2012, Milan Jurik +License: CDDL-1.0 + On Dyson system, the full text of the CDDL license + can be found in the file `/usr/share/common-licenses/CDDL-1.0'. + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..49f0f4f --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +%: + dh $@ + +override_dh_auto_install: + dh_auto_install + rm debian/snoop/usr/share/doc/snoop/LICENSE + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) |