diff options
author | jwise <jwise@pkgsrc.org> | 2000-09-07 17:44:11 +0000 |
---|---|---|
committer | jwise <jwise@pkgsrc.org> | 2000-09-07 17:44:11 +0000 |
commit | bdfde0cfa88ad043c1ec0119c99255e660b29be4 (patch) | |
tree | 67481d119dc7ebab829a2f25bd2651fe707f972e /net/tkined/Makefile | |
parent | 6cbe1f4fa017cdcd211539f1533f63f3edf46fde (diff) | |
download | pkgsrc-bdfde0cfa88ad043c1ec0119c99255e660b29be4.tar.gz |
Initial import of tkined, a graphical network monitoring tool distributed
with scotty. This package and ../tcl-scotty supplant the old scotty package.
Changes to tkined since version 1.4.8 (the version installed by the
previous scotty package):
16/9/98 (bug fix) Added calls to Tcl_RegisterChannel and
Tcl_UnregisterChannel in order to protect the channels used to
communicate with scotty scripts.
29/6/98 (bug fix) Fixed the snmp_monitor.tcl script to handle
Unsigned32 and Integer32 data types.
12/6/98 (bug fix) Fixed some error handling and cleanup code in
the ip_discover.tcl script.
Diffstat (limited to 'net/tkined/Makefile')
-rw-r--r-- | net/tkined/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net/tkined/Makefile b/net/tkined/Makefile new file mode 100644 index 00000000000..4acdf0bf49a --- /dev/null +++ b/net/tkined/Makefile @@ -0,0 +1,34 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/09/07 17:44:11 jwise Exp $ +# + +DISTNAME= scotty-2.1.10 +PKGNAME= tkined-1.4.10 +CATEGORIES= net tcl tk +MASTER_SITES= ftp://ftp.ibr.cs.tu-bs.de/pub/local/tkined/ + +MAINTAINER= jwise@netbsd.org +HOMEPAGE= http://wwwhome.cs.utwente.nl/~schoenw/scotty/ + +DEPENDS+= tk-8.3.2:../../x11/tk +DEPENDS+= tcl-scotty-2.1.10:../../net/tcl-scotty + +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-tcl-config=${PREFIX}/lib --enable-multicast \ + --enable-gdmo --with-tk-config=${PREFIX}/lib +CONFIGURE_ENV+= TARGET=tkined + +USE_LIBTOOL= yes + +WRKSRC= ${WRKDIR}/${DISTNAME}/unix + +FILESDIR= ${.CURDIR}/../../net/tcl-scotty/files +PATCHDIR= ${.CURDIR}/../../net/tcl-scotty/patches + +do-install: + @cd ${WRKSRC} && ${MAKE_ENV} ${MAKE} tki-install + ${INSTALL_DATA} ${WRKSRC}/../doc/tkined.1 ${PREFIX}/man/man1 + +post-install: + cd ${PREFIX}/bin && ${LN} -f -s tkined1.4.10 tkined + +.include "../../mk/bsd.pkg.mk" |