diff options
author | kris <kris@FreeBSD.org> | 2003-06-05 06:43:38 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-06-05 06:43:38 +0800 |
commit | f6ac0b4935ea004895ab5cc2800059b8d12c82ba (patch) | |
tree | 91894094142566c88cf43e76bf56bd120a3c8119 /net/ntop | |
parent | a202830df7532e2bb404143c7bf5ee68b97df9bf (diff) | |
download | freebsd-ports-gnome-f6ac0b4935ea004895ab5cc2800059b8d12c82ba.tar.gz freebsd-ports-gnome-f6ac0b4935ea004895ab5cc2800059b8d12c82ba.tar.zst freebsd-ports-gnome-f6ac0b4935ea004895ab5cc2800059b8d12c82ba.zip |
Move inclusion of bsd.port.pre.mk later in the file for conditional BROKEN
tag. Early inclusion caused problems for some ports, so to be safe I'm
updating all of them.
Pointy hat to: kris
Diffstat (limited to 'net/ntop')
-rw-r--r-- | net/ntop/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/net/ntop/Makefile b/net/ntop/Makefile index 2db96ba3903d..844d9aa5a426 100644 --- a/net/ntop/Makefile +++ b/net/ntop/Makefile @@ -24,12 +24,6 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libgdc.a:${PORTSDIR}/graphics/gdchart RUN_DEPENDS= ${LOCALBASE}/lib/libgdc.a:${PORTSDIR}/graphics/gdchart LIB_DEPENDS= gdbm.3:${PORTSDIR}/databases/gdbm -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500113 -BROKEN= "Does not compile" -.endif - # ntop will store its runtime database files in ${DBDIR}/ntop/ DBDIR?= /var/db @@ -52,6 +46,7 @@ CONFIGURE_ARGS= --localstatedir=${DBDIR} \ CONFIGURE_ARGS+= --enable-tcpwrap .endif +.include <bsd.port.pre.mk> .if ${OSVERSION} < 400014 LIB_DEPENDS+= ssl.3:${PORTSDIR}/security/openssl CONFIGURE_ARGS+= --with-ossl-root=${LOCALBASE} @@ -60,6 +55,10 @@ CONFIGURE_ARGS+= --with-ossl-root=${LOCALBASE} MAN1= intop.1 MAN8= ntop.8 +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile" +.endif + # Remove included dependencies as a precaution against polluting the # configuration. Not strictly necessary. pre-configure: |