diff options
author | wxs <wxs@FreeBSD.org> | 2008-04-17 22:27:45 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2008-04-17 22:27:45 +0800 |
commit | cd2f3ee2fae8cc8bae25cfb6ef9e7cacf4668fe6 (patch) | |
tree | bde6f4335da0987d9cc18d8cd6a6056491a00085 /net/tcludp | |
parent | 9dd63c4d29463a222971f293f6ebd34d58ae7ba4 (diff) | |
download | freebsd-ports-gnome-cd2f3ee2fae8cc8bae25cfb6ef9e7cacf4668fe6.tar.gz freebsd-ports-gnome-cd2f3ee2fae8cc8bae25cfb6ef9e7cacf4668fe6.tar.zst freebsd-ports-gnome-cd2f3ee2fae8cc8bae25cfb6ef9e7cacf4668fe6.zip |
This package provides support for using UDP through Tcl. The package
provides a new channel type and attempts to permit the use of packet
oriented UDP over stream oriented Tcl channels.
PR: ports/122315
Submitted by: Frank Fenor <frank@fenor.de>
Approved by: garga (mentor)
Diffstat (limited to 'net/tcludp')
-rw-r--r-- | net/tcludp/Makefile | 28 | ||||
-rw-r--r-- | net/tcludp/distinfo | 3 | ||||
-rw-r--r-- | net/tcludp/pkg-descr | 7 |
3 files changed, 38 insertions, 0 deletions
diff --git a/net/tcludp/Makefile b/net/tcludp/Makefile new file mode 100644 index 000000000000..a70cccf35931 --- /dev/null +++ b/net/tcludp/Makefile @@ -0,0 +1,28 @@ +# New ports collection makefile for: tcludp +# Date created: 24 March 2008 +# Whom: Frank Fenor <frank@fenor.de> +# +# $FreeBSD$ +# + +PORTNAME= tcludp +PORTVERSION= 1.0.8 +CATEGORIES= net tcl +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR=tcludp + +MAINTAINER= frank@fenor.de +COMMENT= UDP extension for TCL + +USE_TCL= 80+ +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-tcl=${TCL_LIBDIR} +USE_LDCONFIG= ${PREFIX}/lib/udp${PORTVERSION} +MANN= udp.n +MANCOMPRESSED= no + +PLIST_FILES= lib/udp1.0.8/libudp1.0.8.so \ + lib/udp1.0.8/pkgIndex.tcl +PLIST_DIRS= lib/udp1.0.8 + +.include <bsd.port.mk> diff --git a/net/tcludp/distinfo b/net/tcludp/distinfo new file mode 100644 index 000000000000..00f64c9200c1 --- /dev/null +++ b/net/tcludp/distinfo @@ -0,0 +1,3 @@ +MD5 (tcludp-1.0.8.tar.gz) = 60dd3a553fc8e579ecfd6622252da2d2 +SHA256 (tcludp-1.0.8.tar.gz) = 8ba802aebb6ca2bd88e05c312827ff5f16b77ee94d9355f77e287011ade2c819 +SIZE (tcludp-1.0.8.tar.gz) = 129410 diff --git a/net/tcludp/pkg-descr b/net/tcludp/pkg-descr new file mode 100644 index 000000000000..8fd163ac985c --- /dev/null +++ b/net/tcludp/pkg-descr @@ -0,0 +1,7 @@ +From the website: + + This package provides support for using UDP through Tcl. The package + provides a new channel type and attempts to permit the use of packet + oriented UDP over stream oriented Tcl channels. + +WWW: http://tcludp.sourceforge.net/ |