diff options
author | jylefort <jylefort@FreeBSD.org> | 2005-10-24 17:53:40 +0800 |
---|---|---|
committer | jylefort <jylefort@FreeBSD.org> | 2005-10-24 17:53:40 +0800 |
commit | 1085644f9e7785d771e9c622401571a270d1fdee (patch) | |
tree | 455cd2100167f657415fc1e132a417b8ad816bf8 | |
parent | 0d2cfd3737c00edfc9bc5ae88e96a7fee48843fc (diff) | |
download | freebsd-ports-gnome-1085644f9e7785d771e9c622401571a270d1fdee.tar.gz freebsd-ports-gnome-1085644f9e7785d771e9c622401571a270d1fdee.tar.zst freebsd-ports-gnome-1085644f9e7785d771e9c622401571a270d1fdee.zip |
Add net6.
net6 is a library which eases the development of network-based applications
as it provides a TCP protocol abstraction for C++. It is portable to both
the Windows and Unix-like platforms.
WWW: http://gobby.0x539.de
PR: ports/87685
Submitted by: Andreas Kohn <andreas@syndrom23.de>
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/net6/Makefile | 37 | ||||
-rw-r--r-- | net/net6/distinfo | 2 | ||||
-rw-r--r-- | net/net6/pkg-descr | 5 | ||||
-rw-r--r-- | net/net6/pkg-plist | 20 |
5 files changed, 65 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index c3b5bd02c904..754c51733240 100644 --- a/net/Makefile +++ b/net/Makefile @@ -427,6 +427,7 @@ SUBDIR += nemesis SUBDIR += nepim SUBDIR += net-http + SUBDIR += net6 SUBDIR += netatalk SUBDIR += netboot SUBDIR += netcat diff --git a/net/net6/Makefile b/net/net6/Makefile new file mode 100644 index 000000000000..06a30d69dc00 --- /dev/null +++ b/net/net6/Makefile @@ -0,0 +1,37 @@ +# Ports collection makefile for: net6 +# Date created: 2005-10-14 +# Whom: Andreas Kohn <andreas@syndrom23.de> +# +# $FreeBSD$ +# + +PORTNAME= net6 +PORTVERSION= 1.1.0 +CATEGORIES= net devel +MASTER_SITES= http://releases.0x539.de/net6/ + +MAINTAINER= andreas@syndrom23.de +COMMENT= Network access framework for IPv4/IPv6 + +LIB_DEPENDS= sigc++-2.0.0:${PORTSDIR}/devel/libsigc++20 + +INSTALLS_SHLIB= yes +USE_LIBTOOL_VER=15 +USE_GNOME= gnomehack + +.if !defined(WITHOUT_NLS) +USE_GETTEXT= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib" +PLIST_SUB= NLS="" +.else +CONFIGURE_ARGS= --disable-nls +PLIST_SUB= NLS="@comment " +.endif + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +IGNORE= does not build on FreeBSD 4.x +.endif + +.include <bsd.port.post.mk> diff --git a/net/net6/distinfo b/net/net6/distinfo new file mode 100644 index 000000000000..1900b8abfc67 --- /dev/null +++ b/net/net6/distinfo @@ -0,0 +1,2 @@ +MD5 (net6-1.1.0.tar.gz) = 522229474ff554a4ce883002011d0fbb +SIZE (net6-1.1.0.tar.gz) = 369898 diff --git a/net/net6/pkg-descr b/net/net6/pkg-descr new file mode 100644 index 000000000000..798c713c1d6d --- /dev/null +++ b/net/net6/pkg-descr @@ -0,0 +1,5 @@ +net6 is a library which eases the development of network-based applications +as it provides a TCP protocol abstraction for C++. It is portable to both +the Windows and Unix-like platforms. + +WWW: http://gobby.0x539.de diff --git a/net/net6/pkg-plist b/net/net6/pkg-plist new file mode 100644 index 000000000000..b7d81b4c6212 --- /dev/null +++ b/net/net6/pkg-plist @@ -0,0 +1,20 @@ +include/net6/address.hpp +include/net6/client.hpp +include/net6/connection.hpp +include/net6/default_accumulator.hpp +include/net6/error.hpp +include/net6/host.hpp +include/net6/main.hpp +include/net6/non_copyable.hpp +include/net6/packet.hpp +include/net6/peer.hpp +include/net6/select.hpp +include/net6/server.hpp +include/net6/socket.hpp +lib/libnet6-1.1.so +lib/libnet6-1.1.so.0 +lib/libnet6.a +lib/libnet6.so +libdata/pkgconfig/net6-1.1.pc +%%NLS%%share/locale/de/LC_MESSAGES/net6.mo +@dirrm include/net6 |