summaryrefslogtreecommitdiffstats
path: root/net-analyzer
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-09-12 19:44:44 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2016-09-12 19:46:32 +0200
commit58835f95de2522008ff01d3f51455696e737ab2e (patch)
tree6dea182508ee74d2eb6f504a401d57784113e29c /net-analyzer
parentNewer gtk (diff)
downloadportage-58835f95de2522008ff01d3f51455696e737ab2e.tar.xz
portage-58835f95de2522008ff01d3f51455696e737ab2e.zip
Modernize
Diffstat (limited to 'net-analyzer')
-rw-r--r--net-analyzer/medusa/Manifest2
-rw-r--r--net-analyzer/medusa/medusa-2.0.ebuild38
2 files changed, 0 insertions, 40 deletions
diff --git a/net-analyzer/medusa/Manifest b/net-analyzer/medusa/Manifest
deleted file mode 100644
index 7f809bb..0000000
--- a/net-analyzer/medusa/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST medusa-2.0.tar.gz 371478 RMD160 28e27525d704621c1d897c368a58080dac12be45 SHA1 bdea5e5c81d588af35e564a54d9eb2b77eb92371 SHA256 ba7d1ded937f976bbd7448c59e628698657ea06e4869243066cae503fa8142cd
-EBUILD medusa-2.0.ebuild 889 RMD160 2b187951b42a626a036ec97e3da7fe2564e463d5 SHA1 ce343eb9eeb28c4087846b9f99ec7c09b752fd0d SHA256 6385e0b5076312159b1fb40642de4721a58fcd0b85b1115330f8424262410e67
diff --git a/net-analyzer/medusa/medusa-2.0.ebuild b/net-analyzer/medusa/medusa-2.0.ebuild
deleted file mode 100644
index 3b63fa1..0000000
--- a/net-analyzer/medusa/medusa-2.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-DESCRIPTION="Parallel Network Login Auditor"
-HOMEPAGE="http://www.foofus.net/jmk/medusa.html"
-SRC_URI="http://www.foofus.net/jmk/tools/${P}.tar.gz"
-RESTRICT="nomirror"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="nostrip"
-IUSE="ssl ssh2 ncp postgres svn"
-
-DEPEND="
- dev-libs/libpcre
- ssl? ( dev-libs/openssl )
- ssh2? ( net-libs/libssh2 )
- ncp? ( net-fs/ncpfs )
- postgres? ( dev-db/libpq )
- svn? ( dev-util/subversion )
-"
-
-src_compile() {
- export LDFLAGS="${LDFLAGS//-Wl,--as-needed}"
- export LIBS="$LIBS -lssl -lm"
- econf \
- --with-default-mod-path="/usr/lib/medusa/modules" \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "Install failed!"
- dodoc README TODO ChangeLog
- dohtml doc/*.html
-}