Changes in / [857729e:4819d75]
- Files:
-
- 2 added
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
debian/compat
r78fe0d2 rdd48bb5 1 5 1 9 -
debian/control
rffe93e5 rffe93e5 40 40 and multiple input formats. 41 41 . 42 libtrace is developed by the WAND Network Research Group at Waikato 42 libtrace is developed by the WAND Network Research Group at Waikato 43 43 University in New Zealand. 44 44 … … 55 55 the libpacketdump library. 56 56 . 57 libpacketdump provides a library which can parse packets and display the 57 libpacketdump provides a library which can parse packets and display the 58 58 packet contents in a nice human-readable form. The output is similar to that 59 59 produced by tcpdump, although the formatting is somewhat more verbose. … … 74 74 produced by tcpdump, although the formatting is somewhat more verbose. 75 75 . 76 libpacketdump is developed by the WAND Network Research Group at Waikato 76 libpacketdump is developed by the WAND Network Research Group at Waikato 77 77 University in New Zealand. 78 78 … … 87 87 tasks that are required when analysing and manipulating network traces. 88 88 . 89 Multiple input methods and formats are supported including device capture, 89 Multiple input methods and formats are supported including device capture, 90 90 raw and gz-compressed traces, and sockets. 91 . 92 libtrace is developed by the WAND Network Research Group at Waikato 91 . 92 libtrace is developed by the WAND Network Research Group at Waikato 93 93 University in New Zealand. -
debian/copyright
r78fe0d2 rdd48bb5 1 This package was debianized by Matt Brown <debian@mattb.net.nz> on 2 Thu, 13 Oct 2005 00:28:25 +1300. 1 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ 2 Upstream-Name: Libtrace 3 Source: http://research.wand.net.nz/software/libtrace.php 3 4 4 It was downloaded from http://research.wand.net.nz/software/libtrace.php 5 6 Copyright Holder: 7 8 Copyright (c) 2007-2016 The University of Waikato, Hamilton, New Zealand. 9 10 License: 11 12 This program is free software: you can redistribute it and/or modify 13 it under the terms of the GNU Lesser General Public License as published by 14 the Free Software Foundation, either version 3 of the License, or 15 (at your option) any later version. 16 17 This program is distributed in the hope that it will be useful, 18 but WITHOUT ANY WARRANTY; without even the implied warranty of 19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 GNU Lesser General Public License for more details. 21 22 You should have received a copy of the GNU Lesser General Public License 23 along with this program. If not, see <http://www.gnu.org/licenses/>. 24 25 On Debian systems, the complete text of the GNU Lesser General 26 Public License can be found in `/usr/share/common-licenses/LGPL'. 5 Files: * 6 Copyright: 2018 The University of Waikato, Hamilton, New Zealand. 7 License: LGPL-3 8 This package is free software; you can redistribute it and/or 9 modify it under the terms of the GNU Lesser General Public 10 License as published by the Free Software Foundation; either 11 version 3 of the License, or (at your option) 12 any later version. 13 . 14 This package is distributed in the hope that it will be useful, 15 but WITHOUT ANY WARRANTY; without even the implied warranty of 16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 Lesser General Public License for more details. 18 . 19 You should have received a copy of the GNU Lesser General Public 20 License along with this package; if not, write to the Free Software 21 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 22 . 23 On Debian systems, the complete text of the GNU Lesser General 24 Public License can be found in `/usr/share/common-licenses/LGPL-3'. -
debian/libpacketdump4-dev.install
r78fe0d2 rdd48bb5 1 1 usr/include/libpacketdump* 2 2 usr/lib/libpacketdump*.so 3 usr/lib/libpacketdump/*.so -
debian/libpacketdump4.install
r78fe0d2 rdd48bb5 1 1 usr/lib/libpacketdump*.so.* 2 2 usr/lib/libpacketdump/*.protocol 3 usr/lib/libpacketdump/*.so -
debian/libtrace4-dev.dirs
r78fe0d2 rdd48bb5 1 1 usr/lib 2 2 usr/include 3 usr/include/libtrace 3 4 usr/share/man/man3 -
debian/libtrace4-dev.install
r78fe0d2 rdd48bb5 1 usr/include/libtrace* 2 usr/include/ rt_protocol.h1 usr/include/libtrace*.h 2 usr/include/libtrace/*.h 3 3 usr/lib/libtrace*.so 4 4 usr/lib/libtrace*.a -
debian/rules
rffe93e5 rffe93e5 21 21 22 22 23 libtrace_backup.h:24 # libtrace.h is modified by the build, so back it up so it can be restored25 # by the clean target26 cp lib/libtrace.h libtrace_backup.h27 28 23 configure: 29 24 30 configure-stamp: configure libtrace_backup.h25 configure-stamp: configure 31 26 dh_testdir 32 27 33 28 dh_autoreconf 34 29 35 30 ./configure $(CONFFLAGS) \ 36 31 --prefix=/usr \ … … 38 33 --mandir=\$${prefix}/share/man \ 39 34 --infodir=\$${prefix}/share/info 40 35 41 36 touch configure-stamp 42 37 … … 59 54 [ ! -f Makefile ] || $(MAKE) clean 60 55 [ ! -f Makefile ] || $(MAKE) distclean 61 [ ! -f libtrace_backup.h ] || mv libtrace_backup.h lib/libtrace.h62 56 rm -rf docs/doxygen 63 57 64 58 dh_autoreconf_clean 65 dh_clean 59 dh_clean 66 60 67 61 install: build 68 62 dh_testdir 69 63 dh_testroot 70 dh_clean -k 64 dh_clean -k 71 65 dh_installdirs 72 66 73 67 # Add here commands to install the package into debian/tmp 74 68 $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp 75 76 69 77 70 # Build architecture-independent files here. … … 101 94 102 95 binary: binary-indep binary-arch 103 .PHONY: build clean binary-indep binary-arch binary install 96 .PHONY: build clean binary-indep binary-arch binary install
Note: See TracChangeset
for help on using the changeset viewer.