diff options
author | jlam <jlam@pkgsrc.org> | 2000-08-11 08:29:39 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-08-11 08:29:39 +0000 |
commit | 548629285b24a711d481a660bdac800f865ba84a (patch) | |
tree | 167cba93d4096a8b7124e534f6da47fd7995b8d1 /security/dsniff | |
parent | d0e89c539623f7d26cf1d6ec29bc5a17ae05e8fe (diff) | |
download | pkgsrc-548629285b24a711d481a660bdac800f865ba84a.tar.gz |
BUILD_DEPENDS instead of DEPENDS since those libraries are static, and
aren't needed at run-time.
Diffstat (limited to 'security/dsniff')
-rw-r--r-- | security/dsniff/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/security/dsniff/Makefile b/security/dsniff/Makefile index 2189201aade..f73758d9447 100644 --- a/security/dsniff/Makefile +++ b/security/dsniff/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/08/11 08:14:16 itojun Exp $ +# $NetBSD: Makefile,v 1.3 2000/08/11 08:29:39 jlam Exp $ # $OpenBSD: Makefile,v 1.13 2000/06/19 18:38:55 dugsong Exp $ DISTNAME= dsniff-2.2 @@ -8,8 +8,11 @@ MASTER_SITES+= http://www.monkey.org/~dugsong/dsniff/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.monkey.org/~dugsong/dsniff/ -DEPENDS= libnet-*:../../net/libnet \ - libnids-*:../../net/libnids +# These libraries are static, thus they aren't necessary at run-time, +# only at compile-time. +# +BUILD_DEPENDS+= libnet-*:../../net/libnet +BUILD_DEPENDS+= libnids-*:../../net/libnids GNU_CONFIGURE= yes USE_X11= yes |