# 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.3.ebuild,v 1.9 2004/10/01 12:36:21 pyrania 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=">=net-libs/libpcap-0.8.3-r1" KEYWORDS="x86 ~amd64" 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 }