summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-firewall/pftop/pftop-0.5.ebuild')
-rw-r--r--net-firewall/pftop/pftop-0.5.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/net-firewall/pftop/pftop-0.5.ebuild b/net-firewall/pftop/pftop-0.5.ebuild
deleted file mode 100644
index d3013e72d5cf..000000000000
--- a/net-firewall/pftop/pftop-0.5.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2006-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit bsdmk
-DESCRIPTION="Pftop: curses-based utility for real-time display of active states and rule statistics for pf"
-
-HOMEPAGE="http://www.eee.metu.edu.tr/~canacar/pftop/"
-
-SRC_URI="http://www.eee.metu.edu.tr/~canacar/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~x86-fbsd"
-IUSE=""
-
-RDEPEND="sys-libs/ncurses"
-
-src_compile() {
- # OS_LEVEL variable refers to the version of pf shipped with OpenBSD.
- # On FreeBSD we have to know it.
- local OSLEVEL
-
- case ${CHOST} in
- *-openbsd*)
- local obsdver=${CHOST/*-openbsd/}
- OSLEVEL=${obsdver//.}
- ;;
- *-freebsd5.[34]) OSLEVEL=35 ;;
- *-freebsd6.[012]) OSLEVEL=37 ;;
- *)
- die "Your OS/Version is not supported (${CHOST}), please report."
- ;;
- esac
-
- mkmake LOCALBASE="/usr" CFLAGS="${CFLAGS} -DOS_LEVEL=${OSLEVEL}" || die "pmake failed"
-}
-
-src_install() {
- mkinstall DESTDIR=${D} LOCALBASE="/usr" MANDIR="/usr/share/man/man" install || die
-}