summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-02-20 08:00:14 +0000
committerMike Frysinger <vapier@gentoo.org>2004-02-20 08:00:14 +0000
commitb02aa2741bf2d908efa644c206d69250cd413149 (patch)
tree2c68acec3c8abe600aa62bff3f4eb2995f90d3d1 /net-misc/arpd
parentold (diff)
downloadgentoo-2-b02aa2741bf2d908efa644c206d69250cd413149.tar.gz
gentoo-2-b02aa2741bf2d908efa644c206d69250cd413149.tar.bz2
gentoo-2-b02aa2741bf2d908efa644c206d69250cd413149.zip
DEPEND fix
Diffstat (limited to 'net-misc/arpd')
-rw-r--r--net-misc/arpd/arpd-0.2.ebuild17
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
}