spack/var/spack/repos/builtin/packages/tcptrace/package.py
Todd Gamblin 24c01d57cf
imports: sort imports everywhere in Spack (#24695)
* fix remaining flake8 errors

* imports: sort imports everywhere in Spack

We enabled import order checking in #23947, but fixing things manually drives
people crazy. This used `spack style --fix --all` from #24071 to automatically
sort everything in Spack so PR submitters won't have to deal with it.

This should go in after #24071, as it assumes we're using `isort`, not
`flake8-import-order` to order things. `isort` seems to be more flexible and
allows `llnl` mports to be in their own group before `spack` ones, so this
seems like a good switch.
2021-07-08 22:12:30 +00:00

42 lines
1.5 KiB
Python

# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from os.path import join
from spack import *
class Tcptrace(AutotoolsPackage):
"""tcptrace is a tool written by Shawn Ostermann at Ohio University for
analysis of TCP dump files. It can take as input the files produced by
several popular packet-capture programs, including tcpdump, snoop,
etherpeek, HP Net Metrix, and WinDump."""
homepage = "http://www.tcptrace.org/"
url = "http://www.tcptrace.org/download/tcptrace-6.6.7.tar.gz"
version('6.6.7', sha256='63380a4051933ca08979476a9dfc6f959308bc9f60d45255202e388eb56910bd')
depends_on('bison', type='build')
depends_on('flex', type='build')
depends_on('libpcap')
# Fixes incorrect API access in libpcap.
# See https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=545595
patch('tcpdump.patch')
@run_after('configure')
def patch_makefile(self):
# see https://github.com/blitz/tcptrace/blob/master/README.linux
makefile = FileFilter('Makefile')
makefile.filter(
"PCAP_LDLIBS = -lpcap",
"DEFINES += -D_BSD_SOURCE\nPCAP_LDLIBS = -lpcap")
def install(self, spec, prefix):
# The build system has trouble creating directories
mkdirp(prefix.bin)
install('tcptrace', join(prefix.bin, 'tcptrace'))