diff options
author | mharo <mharo@FreeBSD.org> | 1999-06-27 14:40:24 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-06-27 14:40:24 +0800 |
commit | 8de461eacac4f18fba4c043be2530282c1abd098 (patch) | |
tree | ab3e54d9341671e5191b60df00e3f48d73de8468 | |
parent | 17dc925e09c71e7c4d8762dc7600255f2424e36e (diff) | |
download | freebsd-ports-gnome-8de461eacac4f18fba4c043be2530282c1abd098.tar.gz freebsd-ports-gnome-8de461eacac4f18fba4c043be2530282c1abd098.tar.zst freebsd-ports-gnome-8de461eacac4f18fba4c043be2530282c1abd098.zip |
Support ${PREFIX} better and also only depend on tcp_wrappers if it
doesn't exist in the base system.
-rw-r--r-- | net-mgmt/argus/Makefile | 8 | ||||
-rw-r--r-- | net/argus/Makefile | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/net-mgmt/argus/Makefile b/net-mgmt/argus/Makefile index c04f3a444f39..31b47989bb29 100644 --- a/net-mgmt/argus/Makefile +++ b/net-mgmt/argus/Makefile @@ -3,19 +3,21 @@ # Date created: 26 November 1998 # Whom: Jonathan Hanna <jhanna@home.com> # -# $Id: Makefile,v 1.2 1998/12/05 17:58:00 flathill Exp $ +# $Id: Makefile,v 1.3 1999/02/12 02:55:21 asami Exp $ # DISTNAME= argus-1.7.beta.1e PKGNAME= argus-1.7.b.1e CATEGORIES= net security -MASTER_SITES= ftp://ftp.sei.cmu.edu/pub/argus-1.5/argus-1.7/ +MASTER_SITES= ftp://ftp.sei.cmu.edu/pub/argus/argus-1.7/ MAINTAINER= jhanna@home.com +.if !exists(/usr/include/tcpd.h) LIB_DEPENDS= wrap.7:${PORTSDIR}/security/tcp_wrapper +.endif -HAS_CONFIGURE= true +GNU_CONFIGURE= true CONFIGURE_ARGS= --with-pcap=bpf MAN1= connections.1 ra.1 rasort.1 services.1 diff --git a/net/argus/Makefile b/net/argus/Makefile index c04f3a444f39..31b47989bb29 100644 --- a/net/argus/Makefile +++ b/net/argus/Makefile @@ -3,19 +3,21 @@ # Date created: 26 November 1998 # Whom: Jonathan Hanna <jhanna@home.com> # -# $Id: Makefile,v 1.2 1998/12/05 17:58:00 flathill Exp $ +# $Id: Makefile,v 1.3 1999/02/12 02:55:21 asami Exp $ # DISTNAME= argus-1.7.beta.1e PKGNAME= argus-1.7.b.1e CATEGORIES= net security -MASTER_SITES= ftp://ftp.sei.cmu.edu/pub/argus-1.5/argus-1.7/ +MASTER_SITES= ftp://ftp.sei.cmu.edu/pub/argus/argus-1.7/ MAINTAINER= jhanna@home.com +.if !exists(/usr/include/tcpd.h) LIB_DEPENDS= wrap.7:${PORTSDIR}/security/tcp_wrapper +.endif -HAS_CONFIGURE= true +GNU_CONFIGURE= true CONFIGURE_ARGS= --with-pcap=bpf MAN1= connections.1 ra.1 rasort.1 services.1 |