diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-08-18 06:47:28 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-08-18 06:47:28 +0000 |
commit | 78950e8f1056810543bc154aa9172fa952728864 (patch) | |
tree | 4a170aadae911846987d7771335eefb1ca3cfd11 /net/tvark/Makefile | |
parent | 6cee97c866785342da3215edd4d5a63f70366ac5 (diff) | |
download | FreeBSD-ports-78950e8f1056810543bc154aa9172fa952728864.zip FreeBSD-ports-78950e8f1056810543bc154aa9172fa952728864.tar.gz |
add tvark
GUI network monitoring tool, tied to a MySQL database
PR: 29082
Submitted by: Matthew West <mwest@uct.ac.za>
Diffstat (limited to 'net/tvark/Makefile')
-rw-r--r-- | net/tvark/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/net/tvark/Makefile b/net/tvark/Makefile new file mode 100644 index 0000000..ee629f6 --- /dev/null +++ b/net/tvark/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: tvark +# Date created: 19 July 2001 +# Whom: mwest@uct.ac.za +# +# $FreeBSD$ +# + +PORTNAME= tvark +PORTVERSION= 0.2 +CATEGORIES= net +MASTER_SITES= http://www.tvark.com/ + +MAINTAINER= mwest@uct.ac.za + +LIB_DEPENDS= mysqlclient.10:${PORTSDIR}/databases/mysql323-client + +USE_X_PREFIX= yes +USE_GTK= yes + +post-patch: + @${PERL} -pi -e "s|/usr/local/bin|${PREFIX}/bin|" ${WRKSRC}/Makefile + @${PERL} -pi -e "s|gtk-config|${GTK_CONFIG}|" ${WRKSRC}/Makefile + @${PERL} -pi -e "s|-ggdb|${CFLAGS}|" ${WRKSRC}/Makefile + +.include <bsd.port.mk> |