You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/netwatch/netwatch-1.3.0.1-r1.ebuild

42 lines
1.0 KiB

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netwatch/netwatch-1.3.0.1-r1.ebuild,v 1.1 2010/10/05 18:01:58 hwoarang Exp $
EAPI="2"
inherit versionator eutils
MY_PV=$(replace_version_separator 3 '-')
DESCRIPTION="Ethernet/PPP IP Packet Monitor"
HOMEPAGE="http://www.slctech.org/~mackay/netwatch.html"
SRC_URI="http://www.slctech.org/~mackay/NETWATCH/${PN}-${MY_PV}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="sys-libs/ncurses"
DEPEND="${RDEPEND}
sys-kernel/linux-headers"
S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)
src_prepare() {
epatch "${FILESDIR}"/append_ldflags.patch
epatch "${FILESDIR}/${PN}.c.patch"
epatch "${FILESDIR}/${P}-fix-fortify.patch"
}
src_install() {
dosbin netresolv netwatch || die "dosbin failed"
doman netwatch.1 || die "doman failed"
dodoc BUGS CHANGES README* TODO || die "dodoc failed"
if use doc; then
dohtml NetwatchKeyCommands.html || die "dohtml failed"
fi
}