diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-02-20 08:00:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-02-20 08:00:14 +0000 |
commit | f4ab6652bbfb416586131c5c10951a5f350053bb (patch) | |
tree | b0a0eed93b5e785c649f6679a55c6d4fa88bf631 /net-misc/arpd | |
parent | old (diff) | |
download | historical-f4ab6652bbfb416586131c5c10951a5f350053bb.tar.gz historical-f4ab6652bbfb416586131c5c10951a5f350053bb.tar.bz2 historical-f4ab6652bbfb416586131c5c10951a5f350053bb.zip |
DEPEND fix
Diffstat (limited to 'net-misc/arpd')
-rw-r--r-- | net-misc/arpd/arpd-0.2.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/net-misc/arpd/arpd-0.2.ebuild b/net-misc/arpd/arpd-0.2.ebuild index fb378d53f778..b25dd079c5b5 100644 --- a/net-misc/arpd/arpd-0.2.ebuild +++ b/net-misc/arpd/arpd-0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/arpd/arpd-0.2.ebuild,v 1.3 2004/02/20 07:59:18 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/arpd/arpd-0.2.ebuild,v 1.4 2004/02/20 08:00:14 vapier Exp $ DESCRIPTION="ARP reply daemon enables a single host to claim all unassigned addresses on a LAN for network monitoring or simulation" HOMEPAGE="http://www.citi.umich.edu/u/provos/honeyd/" @@ -10,9 +10,9 @@ LICENSE="BSD" SLOT="0" KEYWORDS="x86 ~sparc ~ppc hppa ~amd64" -DEPEND=">=libdnet-1.4 - >=libevent-0.6 - >=libpcap-0.7.1" +DEPEND=">=dev-libs/libdnet-1.4 + >=dev-libs/libevent-0.6 + >=net-libs/libpcap-0.7.1" S=${WORKDIR}/${PN} @@ -20,11 +20,10 @@ src_unpack() { unpack ${A} cd ${S} - mv configure configure.orig || die - sed -e 's|$withval/lib/libevent.a; then||' \ + sed -i \ + -e 's|$withval/lib/libevent.a; then||' \ -e 's|if test -f $withval/include/event.h -a -f|if test -f $withval/include/event.h -a -f $withval/lib/libevent.a; then|' \ - configure.orig > configure || die - chmod +x configure + configure || die } src_compile() { @@ -33,6 +32,6 @@ src_compile() { } src_install() { - dosbin arpd + dosbin arpd || die doman arpd.8 } |