blob: 0aff19575cf99667aca648ef47e32d50c958f717 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/knock/knock-0.5-r1.ebuild,v 1.2 2010/08/31 11:02:24 xmw Exp $
EAPI=2
inherit eutils
DESCRIPTION="A simple port-knocking daemon"
HOMEPAGE="http://www.zeroflux.org/projects/knock"
SRC_URI="http://www.zeroflux.org/proj/knock/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="+server"
DEPEND="server? ( net-libs/libpcap )"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-gcc-4.3.patch
sed -i -e "s:/usr/sbin/iptables:/sbin/iptables:g" knockd.conf || die
if ! use server ; then
sed -i -e '/^all:/s:knockd::' \
-e '/$(INSTALL).*knockd/d' Makefile.in || die
fi
}
src_install() {
make DESTDIR="${D}" install || die
dodoc ChangeLog README TODO || die
if use server ; then
newinitd "${FILESDIR}"/knockd.initd knock || die
newconfd "${FILESDIR}"/knockd.confd knock || die
fi
}
pkg_postinst() {
if use server && ! has_version net-firewall/iptables ; then
einfo
elog "You're really encouraged to install net-firewall/iptables to"
elog "actually modify your firewall and use the example configuration."
einfo
fi
}
|