blob: 301147dfc8cef52dd587a558fa53c2d75aaefaac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/knock/knock-0.4.ebuild,v 1.2 2006/02/20 21:17:24 jokey Exp $
inherit eutils
MY_PV="${PV/%.0}"
S="${WORKDIR}/${PN}-${MY_PV}"
DESCRIPTION="A simple port-knocking daemon"
HOMEPAGE="http://www.zeroflux.org/knock/"
SRC_URI="http://www.zeroflux.org/knock/files/${PN}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="net-libs/libpcap
>=sys-apps/portage-2.0.51"
RDEPEND="net-firewall/iptables
${DEPEND}"
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc README
dodoc ChangeLog
dodoc TODO
dosed "s:/usr/sbin/iptables:/sbin/iptables:g" /etc/knockd.conf
newinitd ${FILESDIR}/knockd.initd knock
newconfd ${FILESDIR}/knockd.confd knock
}
|