2020-02-12 18:18:42 +03:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2014-07-17 18:03:26 +04:00
|
|
|
|
|
|
|
EAPI=5
|
2011-11-09 11:33:19 +04:00
|
|
|
|
2014-08-12 12:57:09 +04:00
|
|
|
DESCRIPTION="Portmon is a network service monitoring daemon"
|
2011-11-09 11:33:19 +04:00
|
|
|
HOMEPAGE="http://aboleo.net/software/portmon/"
|
2020-01-13 16:39:37 +03:00
|
|
|
SRC_URI="http://aboleo.net/software/portmon/downloads/${P}.tar.gz"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
KEYWORDS="~amd64 ~ppc x86"
|
|
|
|
SLOT="0"
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
|
2014-07-17 18:03:26 +04:00
|
|
|
src_configure() {
|
|
|
|
econf --sysconfdir=/etc/portmon
|
2011-11-09 11:33:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
into /usr
|
|
|
|
dosbin src/portmon
|
2014-07-17 18:03:26 +04:00
|
|
|
|
2011-11-09 11:33:19 +04:00
|
|
|
doman extras/portmon.8
|
|
|
|
|
|
|
|
insinto /etc/portmon
|
|
|
|
doins extras/portmon.hosts.sample
|
|
|
|
dodoc AUTHORS BUGS README
|
|
|
|
|
|
|
|
newinitd "${FILESDIR}"/portmon.init portmon
|
|
|
|
}
|