On Mon, Jul 04, 2005 at 10:56:06PM +0200, viq wrote: > /usr/ports/net/snort$ FLAVOR="flexresp" make print-build-depends > This port requires package(s) "make: don't know how to make > _recurse-all-dir-depends. Stop in /usr/ports/net/libnet. > >> Broken dependency: 2497 non existent > *** Error code 1 Stop in /usr/ports/net/snort (line 2330 > of /usr/ports/infrastructure/mk/bsd.port.mk)." to build. > > Found an error like that and i thought i'll point it out.
Looks like I missed part of the path when updating libnet. Can you let me know if this diff fixes the issue. Index: Makefile =================================================================== RCS file: /cvs/ports/net/snort/Makefile,v retrieving revision 1.35 diff -u -u -r1.35 Makefile --- Makefile 29 Jun 2005 06:01:38 -0000 1.35 +++ Makefile 4 Jul 2005 21:30:07 -0000 @@ -3,6 +3,7 @@ COMMENT= "highly flexible sniffer/NIDS" DISTNAME= snort-2.3.3 +PKGNAME= ${DISTNAME}p0 CATEGORIES= net security MASTER_SITES= ${HOMEPAGE}/dl/current/ @@ -26,7 +27,7 @@ FLAVOR?= .if ${FLAVOR:L:Mflexresp} -LIB_DEPENDS+= lib/libnet-1.0/net.=0:libnet-1.0*:net/libnet +LIB_DEPENDS+= lib/libnet-1.0/net.=0:libnet-1.0*:net/libnet/1.0 CONFIGURE_ENV+= LDFLAGS="-L${LOCALBASE}/lib" CONFIGURE_ARGS+= --enable-flexresp \ --with-libnet-includes=${LOCALBASE}/include/libnet-1.0 \