diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-05 23:20:17 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-05 23:20:17 +0100 |
commit | 5c4ba92ca6fabad7163b6ea2fbf49f55257aed25 (patch) | |
tree | 46c7dcb0a006534c3abac3e32818451281afb9b5 /net-proxy | |
parent | net-wireless/airsnort: Remove last-rited pkg (diff) | |
download | gentoo-5c4ba92ca6fabad7163b6ea2fbf49f55257aed25.tar.gz gentoo-5c4ba92ca6fabad7163b6ea2fbf49f55257aed25.tar.bz2 gentoo-5c4ba92ca6fabad7163b6ea2fbf49f55257aed25.zip |
net-proxy/ratproxy: Remove last-rited pkg
Bug: https://bugs.gentoo.org/696252
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/ratproxy/Manifest | 1 | ||||
-rw-r--r-- | net-proxy/ratproxy/files/ratproxy-Makefile.patch | 19 | ||||
-rw-r--r-- | net-proxy/ratproxy/metadata.xml | 17 | ||||
-rw-r--r-- | net-proxy/ratproxy/ratproxy-1.58.ebuild | 43 |
4 files changed, 0 insertions, 80 deletions
diff --git a/net-proxy/ratproxy/Manifest b/net-proxy/ratproxy/Manifest deleted file mode 100644 index 568de9c6699b..000000000000 --- a/net-proxy/ratproxy/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ratproxy-1.58.tar.gz 168700 BLAKE2B fdb4fad6581a96a4a7124db9ccc04c487d36afb5f2b6a3019a59d98f9bb31dc1beb7a352a634b7a33ba192fd8f6e3bcdc0c1a704a7c575529d318ddb219b609e SHA512 432189c5863e0937f4dea92087847e6af1563e7a49a6b91b3f610ceb5aa1e25ac24a3bd837298abccfece7b1ad088ffe20cbfcb540dee164a4264bcb10ce89a2 diff --git a/net-proxy/ratproxy/files/ratproxy-Makefile.patch b/net-proxy/ratproxy/files/ratproxy-Makefile.patch deleted file mode 100644 index 323b52d1ff13..000000000000 --- a/net-proxy/ratproxy/files/ratproxy-Makefile.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- Makefile.bak 2008-07-08 21:34:10.000000000 +0200 -+++ Makefile 2008-07-08 21:35:34.000000000 +0200 -@@ -20,13 +20,13 @@ - # - - PROGNAME = ratproxy --CFLAGS = -Wall -O3 -Wno-pointer-sign -D_GNU_SOURCE --LDFLAGS = -lcrypto -lssl -+CFLAGS += -Wall -Wno-pointer-sign -D_GNU_SOURCE -+LIBS = -lcrypto -lssl - - all: $(PROGNAME) flare-check - - $(PROGNAME): $(PROGNAME).c http.c mime.c ssl.c http.h mime.h ssl.h nlist.h config.h debug.h types.h string-inl.h -- $(CC) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS) http.c mime.c ssl.c $(LDFLAGS) -+ $(CC) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS) $(LDFLAGS) http.c mime.c ssl.c $(LIBS) - - flare-check: - @flare-dist/flare 2>&1 | grep -qF Igor || ( \ diff --git a/net-proxy/ratproxy/metadata.xml b/net-proxy/ratproxy/metadata.xml deleted file mode 100644 index 333a1ada7c45..000000000000 --- a/net-proxy/ratproxy/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-needed --> -<longdescription lang="en">A semi-automated, largely passive web application security audit tool, - optimized for an accurate and sensitive detection, and automatic - annotation, of potential problems and security-relevant design patterns - based on the observation of existing, user-initiated traffic in complex - web 2.0 environments. - Detects and prioritizes broad classes of security problems, such as - dynamic cross-site trust model considerations, script inclusion issues, - content serving problems, insufficient XSRF and XSS defenses, and much - more.</longdescription> - <upstream> - <remote-id type="google-code">ratproxy</remote-id> - </upstream> -</pkgmetadata> diff --git a/net-proxy/ratproxy/ratproxy-1.58.ebuild b/net-proxy/ratproxy/ratproxy-1.58.ebuild deleted file mode 100644 index dee8b368423c..000000000000 --- a/net-proxy/ratproxy/ratproxy-1.58.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils flag-o-matic - -DESCRIPTION="A semi-automated, largely passive web application security audit tool" -HOMEPAGE="https://code.google.com/p/ratproxy/" -SRC_URI="https://ratproxy.googlecode.com/files/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="dev-libs/openssl" -RDEPEND="${DEPEND}" - -S="${WORKDIR}"/${PN} - -src_unpack() { - unpack ${A} - cd "${S}" - - sed -i -e "s:keyfile\.pem:/usr/share/${PN}/&:" ssl.c - sed -r -i -e "s:(ratproxy-back\.png|messages\.list):/usr/share/${PN}/&:" ratproxy-report.sh - epatch "${FILESDIR}"/${PN}-Makefile.patch -} - -src_compile() { - tc-export CC - - emake || die "emake failed" -} - -src_install() { - dobin ${PN}-report.sh || die "install failed" - dobin ${PN} || die "install failed" - dodoc doc/{README,TODO} - insinto /usr/share/${PN} - doins keyfile.pem ratproxy-back.png messages.list -} |