diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2003-07-14 02:53:03 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2003-07-14 02:53:03 +0000 |
commit | b185046be2ec03555daaf4f26d38542c403a9955 (patch) | |
tree | 0274ce607614533de66837fc1f70d4c35770d9e1 /net/ntop | |
parent | Update to 0.2.3 (diff) |
get rid of libgnugetopt dependency for -CURRENT,
use USE_GETOPT_LONG instead.
Diffstat (limited to 'net/ntop')
-rw-r--r-- | net/ntop/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ntop/Makefile b/net/ntop/Makefile index 738934c3f02e..4024b30bd63e 100644 --- a/net/ntop/Makefile +++ b/net/ntop/Makefile @@ -7,7 +7,7 @@ PORTNAME= ntop PORTVERSION= 2.2 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -17,8 +17,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Network monitoring tool with command line and web interfaces BUILD_DEPENDS= ${LOCALBASE}/lib/libgdc.a:${PORTSDIR}/graphics/gdchart -LIB_DEPENDS= gnugetopt:${PORTSDIR}/devel/libgnugetopt \ - gdbm:${PORTSDIR}/databases/gdbm +LIB_DEPENDS= gdbm:${PORTSDIR}/databases/gdbm .if !defined(BATCH) && !defined(PACKAGE_BUILDING) IS_INTERACTIVE= yes @@ -27,13 +26,14 @@ IS_INTERACTIVE= yes DBDIR?= /var/db WRKSRC= ${WRKDIR}/${DISTNAME}/${PORTNAME} +USE_GETOPT_LONG=yes USE_GMAKE= yes USE_REINPLACE= yes USE_OPENSSL= yes USE_LIBTOOL= yes INSTALLS_SHLIB= yes PLIST_SUB+= DBDIR=${DBDIR} -CONFIGURE_ENV= LIBS="-lcrypto -L${LOCALBASE}/lib -lgnugetopt" +CONFIGURE_ENV= LIBS="-lcrypto -L${LOCALBASE}/lib" CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --localstatedir=${DBDIR} \ --with-ossl-root=${OPENSSLBASE} \ |