blob: 319c6da6c47621fe313d83e648d20684dfa4e6fd (
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
35
36
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/knock/knock-0.1.ebuild,v 1.11 2005/01/29 21:22:33 dragonheart Exp $
inherit eutils
DESCRIPTION="A simple port-knocking daemon"
HOMEPAGE="http://www.zeroflux.org/knock/"
SRC_URI="http://www.zeroflux.org/knock/${P}.tar.gz"
DEPEND="virtual/libpcap"
KEYWORDS="x86"
SLOT="0"
LICENSE="GPL-2"
IUSE=""
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/nonblock.patch
epatch ${FILESDIR}/knockd.conf.patch
}
src_compile() {
econf || die "could not configure"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc README
dohtml doc/index.html
insinto /etc/conf.d; newins ${FILESDIR}/knockd.confd knock
exeinto /etc/init.d; newexe ${FILESDIR}/knockd.initd knock
}
|