summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-03-17 18:33:05 +0100
committerSam James <sam@gentoo.org>2021-03-18 00:16:45 +0000
commita87b0b257a4ab67db6f6b325a8b6f0a4e236695c (patch)
treeba3f33369b1d6be8abe1a1cf2d83adb313be66f5 /net-analyzer/arpon
parentmedia-libs/glew: remove unused patch (diff)
downloadgentoo-a87b0b257a4ab67db6f6b325a8b6f0a4e236695c.tar.gz
gentoo-a87b0b257a4ab67db6f6b325a8b6f0a4e236695c.tar.bz2
gentoo-a87b0b257a4ab67db6f6b325a8b6f0a4e236695c.zip
net-analyzer/arpon: remove unused patches
Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/19979 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/arpon')
-rw-r--r--net-analyzer/arpon/files/arpon-2.7.2-CFLAGS.patch14
-rw-r--r--net-analyzer/arpon/files/arpon-2.7.2-etc.patch11
-rw-r--r--net-analyzer/arpon/files/arpon.confd5
-rw-r--r--net-analyzer/arpon/files/arpon.initd19
4 files changed, 0 insertions, 49 deletions
diff --git a/net-analyzer/arpon/files/arpon-2.7.2-CFLAGS.patch b/net-analyzer/arpon/files/arpon-2.7.2-CFLAGS.patch
deleted file mode 100644
index 525f03740dd9..000000000000
--- a/net-analyzer/arpon/files/arpon-2.7.2-CFLAGS.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -51,11 +51,9 @@
- if(cmake_build_type_tolower STREQUAL "debug")
- message(STATUS "Build Type: Debug")
- set(CMAKE_BUILD_TYPE "Debug")
-- set(CMAKE_C_FLAGS "-Wall -Werror -pedantic -O0 -g")
- else()
- message(STATUS "Build Type: Release")
- set(CMAKE_BUILD_TYPE "Release")
-- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror")
- endif()
-
- include_directories(
diff --git a/net-analyzer/arpon/files/arpon-2.7.2-etc.patch b/net-analyzer/arpon/files/arpon-2.7.2-etc.patch
deleted file mode 100644
index 03e80f9d5955..000000000000
--- a/net-analyzer/arpon/files/arpon-2.7.2-etc.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/etc/CMakeLists.txt
-+++ b/etc/CMakeLists.txt
-@@ -14,7 +14,7 @@
- COMPONENT Etcfile)
- else(${CMAKE_INSTALL_PREFIX} STREQUAL "/")
- install(FILES ${arpon_etc_src}
-- DESTINATION ${CMAKE_INSTALL_PREFIX}/etc
-+ DESTINATION /etc
- PERMISSIONS OWNER_READ GROUP_READ WORLD_READ
- COMPONENT Etcfile)
- endif(${CMAKE_INSTALL_PREFIX} STREQUAL "/")
diff --git a/net-analyzer/arpon/files/arpon.confd b/net-analyzer/arpon/files/arpon.confd
deleted file mode 100644
index d1ce050fa4cb..000000000000
--- a/net-analyzer/arpon/files/arpon.confd
+++ /dev/null
@@ -1,5 +0,0 @@
-METHOD="--darpi"
-IFACE="eth0"
-LOGFILE="/var/log/arpon.log"
-
-ARPON_OPTS="${METHOD} --iface ${IFACE} --log-file ${LOGFILE} --log"
diff --git a/net-analyzer/arpon/files/arpon.initd b/net-analyzer/arpon/files/arpon.initd
deleted file mode 100644
index dc69135c26e3..000000000000
--- a/net-analyzer/arpon/files/arpon.initd
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/sbin/openrc-run
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting arpon"
- start-stop-daemon --start --background --make-pidfile --pidfile "/var/run/arpon.pid" \
- --exec /usr/sbin/arpon -- ${ARPON_OPTS} >/dev/null 2>&1
- eend $?
-}
-
-stop() {
- ebegin "Stopping arpon"
- start-stop-daemon --stop --pidfile "/var/run/arpon.pid"
- eend $?
-}