summaryrefslogtreecommitdiff
path: root/net-misc/switzerland
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/switzerland')
-rw-r--r--net-misc/switzerland/Manifest4
-rw-r--r--net-misc/switzerland/files/Makefile12
-rw-r--r--net-misc/switzerland/metadata.xml17
-rw-r--r--net-misc/switzerland/switzerland-0.1.0.ebuild44
4 files changed, 0 insertions, 77 deletions
diff --git a/net-misc/switzerland/Manifest b/net-misc/switzerland/Manifest
deleted file mode 100644
index cfa9c9dcc54b..000000000000
--- a/net-misc/switzerland/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-AUX Makefile 178 BLAKE2B b046bcd4f4f10037ac183219f6d01ba15d02bb58abcc65d621f72a7623b22ee5452a3c0e9f9f923e4549a61be690703d7f82da822361758a219fe99f83ac767b SHA512 5fd441aa419dedef9eab6848a1a5c6bc9b4748a9e8a19680cb110833a9cae58db1f810d37e2e6c383edee3c1d439e7f3f208a8bfa3bd6d3b2fcc8c26d2aaff0a
-DIST switzerland-0.1.0.tgz 592922 BLAKE2B dc0a7557d48bb8004c07468b47d026048662a3b2c743eddc29e37ffe3c839e28d5b12957a6a50d0355be7e5f946556d9827652bf7899cfd40cda0c57db115cc1 SHA512 3a5474c005bf45cddf8eede7c1e2faa5855bf9017f5c732555cfe2c8b7b82381ea25c2ada000a9945a330ff3af19f1e861a11508ff057c81a78eab53de1d0cdb
-EBUILD switzerland-0.1.0.ebuild 802 BLAKE2B 85950f944167e1772977c2e5a3e532902a84263a0a306c57dd7f03df6a3cdfa1866170036ca8b021795dadfe3f1c955185de1faf08e1cbdff4e002d7c7d26aef SHA512 5d491f2712dea44c172a50694aecd8af720725092e7cb995976e2042a02a7598b4eb7659907c044438612bf62912d9495ea535638a0aeab332301aa585daf993
-MISC metadata.xml 673 BLAKE2B 7cea5ade1f69640d3c056cd312009c7b116788fc3945abc93f3f736c53e7d3929b8fba994bf73e1401e0ad6851990e0ea4835ec9eb0a9097349f82fa2c593aaf SHA512 295754b6dec585585511b93a004f0e9857466a94b7c34c903ee55aa2a8557648dd2fd93e6bbfc790459d0c19d592fbeb49f8b749528a488014c89a3ad96313e4
diff --git a/net-misc/switzerland/files/Makefile b/net-misc/switzerland/files/Makefile
deleted file mode 100644
index c1e582d56dc4..000000000000
--- a/net-misc/switzerland/files/Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-SRC = FastCollector.c
-OBJ = ${SRC:.c=.o}
-
-LIBS = -lpcap
-
-all: FastCollector
-
-.c.o:
- $(CC) -c $(CFLAGS) $<
-
-FastCollector: $(OBJ)
- $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(OBJ) $(LIBS)
diff --git a/net-misc/switzerland/metadata.xml b/net-misc/switzerland/metadata.xml
deleted file mode 100644
index e77e27bbace0..000000000000
--- a/net-misc/switzerland/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>netmon@gentoo.org</email>
- <name>Gentoo network monitoring and analysis project</name>
- </maintainer>
- <longdescription lang="en">
- Switzerland is an open source software tool for testing the integrity of
- data communications over networks, ISPs and firewalls. It will spot IP
- packets which are forged or modified between clients, inform you, and
- give you copies of the modified packets.
- </longdescription>
- <upstream>
- <remote-id type="sourceforge">switzerland</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-misc/switzerland/switzerland-0.1.0.ebuild b/net-misc/switzerland/switzerland-0.1.0.ebuild
deleted file mode 100644
index 10925c2dacf4..000000000000
--- a/net-misc/switzerland/switzerland-0.1.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 toolchain-funcs
-
-DESCRIPTION="Network Testing Tool"
-HOMEPAGE="http://www.eff.org/testyourisp/switzerland/"
-SRC_URI="mirror://sourceforge/switzerland/${P}.tgz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="net-libs/libpcap"
-RDEPEND=${DEPEND}
-
-src_prepare() {
- cp "${FILESDIR}"/Makefile switzerland/client
-
- sed -i \
- -e "s/= find_binary()/= dest/" \
- setup.py
- distutils-r1_src_prepare
-}
-
-src_compile() {
- cd switzerland/client
- emake CC=$(tc-getCC)
-
- cd "${S}"
- distutils-r1_src_compile
-}
-
-src_install() {
- distutils-r1_src_install
-
- dodoc BUGS.txt CREDITS
-
- keepdir /var/log/switzerland-pcaps
- keepdir /var/log/switzerland
-}