diff options
author | daichi <daichi@FreeBSD.org> | 2003-07-02 20:04:18 +0800 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2003-07-02 20:04:18 +0800 |
commit | 69d1d7b773c5e2609b1ecdd12897d169df4e6a97 (patch) | |
tree | 1064f759a405e4624ff8a272bc3833d46c4c1742 /net | |
parent | a8bb42f23b52eb3e1a6657ee97b9be7abe3076b3 (diff) | |
download | freebsd-ports-gnome-69d1d7b773c5e2609b1ecdd12897d169df4e6a97.tar.gz freebsd-ports-gnome-69d1d7b773c5e2609b1ecdd12897d169df4e6a97.tar.zst freebsd-ports-gnome-69d1d7b773c5e2609b1ecdd12897d169df4e6a97.zip |
update net/pmacct: 0.4.1 --> 0.4.2
PR: 53637
Submitted by: Kirill Ponomarew <ponomarew@oberon.net> (maintainer)
Diffstat (limited to 'net')
-rw-r--r-- | net/pmacct/Makefile | 28 | ||||
-rw-r--r-- | net/pmacct/distinfo | 2 | ||||
-rw-r--r-- | net/pmacct/pkg-plist | 5 |
3 files changed, 24 insertions, 11 deletions
diff --git a/net/pmacct/Makefile b/net/pmacct/Makefile index 984d3376956f..cbf187eb5a6c 100644 --- a/net/pmacct/Makefile +++ b/net/pmacct/Makefile @@ -6,31 +6,39 @@ # PORTNAME= pmacct -PORTVERSION= 0.4.1 +PORTVERSION= 0.4.2 CATEGORIES= net MASTER_SITES= http://www.ba.cnr.it/~paolo/pmacct/ MAINTAINER= ponomarew@oberon.net COMMENT= Network tool to gather IP traffic information +.if defined(WITH_MYSQL) +LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client +CONFIGURE_ARGS+=--with-mysql-lib=${LOCALBASE}/lib/mysql \ + --with-mysql-includes=${LOCALBASE}/include/mysql \ + --enable-mysql +.else +CONFIGURE_ARGS+= --disable-mysql +.endif + GNU_CONFIGURE= yes USE_GETOPT_LONG=yes USE_REINPLACE= yes - CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ pre-patch: - @${REINPLACE_CMD} -e 's,<mysql/mysql.h>,<mysql.h>,' \ + @${REINPLACE_CMD} -e \ + 's,<mysql/mysql.h>,<mysql.h>,' \ ${WRKSRC}/mysql_plugin.h -.if defined(WITH_MYSQL) -LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client -CONFIGURE_ARGS+=--with-mysql-lib=${LOCALBASE}/lib/mysql \ - --with-mysql-includes=${LOCALBASE}/include/mysql \ - --enable-mysql -.else -CONFIGURE_ARGS+= --disable-mysql +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for i in README EXAMPLES INTERNALS PLUGINS + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor .endif .include <bsd.port.mk> diff --git a/net/pmacct/distinfo b/net/pmacct/distinfo index 14dd38bd545c..4fef1c5f2f53 100644 --- a/net/pmacct/distinfo +++ b/net/pmacct/distinfo @@ -1 +1 @@ -MD5 (pmacct-0.4.1.tar.gz) = 67c786bde193b027be6083348e43f901 +MD5 (pmacct-0.4.2.tar.gz) = fefad3dc7097b0b39965719af6e76683 diff --git a/net/pmacct/pkg-plist b/net/pmacct/pkg-plist index e7872b7a40ab..b7374de1e2dd 100644 --- a/net/pmacct/pkg-plist +++ b/net/pmacct/pkg-plist @@ -1,2 +1,7 @@ bin/pmacct bin/pmacctd +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/EXAMPLES +%%PORTDOCS%%%%DOCSDIR%%/INTERNALS +%%PORTDOCS%%%%DOCSDIR%%/PLUGINS +%%PORTDOCS%%@dirrm %%DOCSDIR%% |