diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-06-04 22:43:38 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-06-04 22:43:38 +0000 |
commit | 93872f18cc0a948ab9c010bbe5694579bd59f8c4 (patch) | |
tree | 918c0e1660ed837a4087b57670a1b1c181c285e0 /net/ntop | |
parent | Remove some local changes that crept in with the previous commit. (diff) |
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
Notes
Notes:
svn path=/head/; revision=82300
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: |