From 1f4049bf91d91e81d996502b6d252f05811e0d7f Mon Sep 17 00:00:00 2001 From: Dan Moschuk Date: Sat, 2 Oct 1999 19:17:58 +0000 Subject: libunp is the library used in W. Richard Steven's book "UNIX Network Programming Volume 2, 2nd Edition". It contains the library and headers used in the examples as well as all programs from the text that compile on FreeBSD systems. For more information on the book, see http://www.phptr.com/ptrbooks/ptr_013490012X.html For more info on W. Richard Stevens, see http://www.kohala.com/~rstevens/ PR: ports/14058 Submitted by: James FitzGibbon --- net/libunpipc/Makefile | 30 ++++++++++++++++++++++++++++++ net/libunpipc/distinfo | 1 + net/libunpipc/files/patch-aa | 18 ++++++++++++++++++ net/libunpipc/files/patch-ab | 13 +++++++++++++ net/libunpipc/files/patch-ac | 11 +++++++++++ net/libunpipc/files/patch-ad | 11 +++++++++++ net/libunpipc/files/patch-ae | 38 ++++++++++++++++++++++++++++++++++++++ net/libunpipc/pkg-comment | 1 + net/libunpipc/pkg-descr | 12 ++++++++++++ net/libunpipc/pkg-plist | 3 +++ 10 files changed, 138 insertions(+) create mode 100644 net/libunpipc/Makefile create mode 100644 net/libunpipc/distinfo create mode 100644 net/libunpipc/files/patch-aa create mode 100644 net/libunpipc/files/patch-ab create mode 100644 net/libunpipc/files/patch-ac create mode 100644 net/libunpipc/files/patch-ad create mode 100644 net/libunpipc/files/patch-ae create mode 100644 net/libunpipc/pkg-comment create mode 100644 net/libunpipc/pkg-descr create mode 100644 net/libunpipc/pkg-plist (limited to 'net') diff --git a/net/libunpipc/Makefile b/net/libunpipc/Makefile new file mode 100644 index 000000000000..024ca5b74992 --- /dev/null +++ b/net/libunpipc/Makefile @@ -0,0 +1,30 @@ +# Ports collection makefile for: libunpipc +# Version required: 1.0 +# Date created: Sept 28, 1999 +# Whom: james@targetnet.com +# +# $FreeBSD$ +# + +DISTNAME= unpv22e +PKGNAME= libunpipc-1.0 +CATEGORIES= net +MASTER_SITES= ftp://ftp.kohala.com/pub/rstevens/ \ + http://compass.net.edu.cn:8000/programming/ + +MAINTAINER= james@targetnet.com + +GNU_CONFIGURE= yes +USE_GMAKE= yes + +.include + +post-configure: + ln -s ${WRKSRC}/config.h ${WRKSRC}/unpipc_config.h + +do-install: + ${INSTALL_DATA} ${WRKSRC}/libunpipc.a ${PREFIX}/lib + ${INSTALL_DATA} ${WRKSRC}/lib/unpipc.h ${PREFIX}/include + ${INSTALL_DATA} ${WRKSRC}/config.h ${PREFIX}/include/unpipc_config.h + +.include diff --git a/net/libunpipc/distinfo b/net/libunpipc/distinfo new file mode 100644 index 000000000000..2c839bdba141 --- /dev/null +++ b/net/libunpipc/distinfo @@ -0,0 +1 @@ +MD5 (unpv22e.tar.gz) = 668fdb55452859c13b44a7049a40071a diff --git a/net/libunpipc/files/patch-aa b/net/libunpipc/files/patch-aa new file mode 100644 index 000000000000..e69a3263797c --- /dev/null +++ b/net/libunpipc/files/patch-aa @@ -0,0 +1,18 @@ +--- Makefile.in.orig Fri Apr 11 18:42:26 1997 ++++ Makefile.in Thu Sep 30 10:24:12 1999 +@@ -1,8 +1,13 @@ + include ./Make.defines + ++SUBDIRS = lib ++ + all: +- @echo "Nothing to make in this directory" +- @echo "Please read the README file" ++ PWD=`pwd`; \ ++ for dir in $(SUBDIRS) ; \ ++ do \ ++ cd $$PWD/$$dir && $(MAKE) && cd .. ;\ ++ done + + clean: + rm -f $(CLEANFILES) diff --git a/net/libunpipc/files/patch-ab b/net/libunpipc/files/patch-ab new file mode 100644 index 000000000000..f9dacef263a0 --- /dev/null +++ b/net/libunpipc/files/patch-ab @@ -0,0 +1,13 @@ +--- configure.orig Tue Sep 28 11:52:17 1999 ++++ configure Tue Sep 28 11:52:24 1999 +@@ -2894,10 +2894,6 @@ + LIB_OBJS="$LIB_OBJS signal.o" + LIB_OBJS="$LIB_OBJS signal_intr.o" + LIB_OBJS="$LIB_OBJS sleep_us.o" +-if test $ac_cv_have_siginfo_t_struct = yes ; then +- LIB_OBJS="$LIB_OBJS signal_rt.o" +- LIB_OBJS="$LIB_OBJS signal_rt_intr.o" +-fi + if test "$ac_cv_func_snprintf" = no ; then + LIB_OBJS="$LIB_OBJS snprintf.o" + fi diff --git a/net/libunpipc/files/patch-ac b/net/libunpipc/files/patch-ac new file mode 100644 index 000000000000..50453b6f7b72 --- /dev/null +++ b/net/libunpipc/files/patch-ac @@ -0,0 +1,11 @@ +--- lib/unpipc.h.orig Wed Aug 5 14:20:32 1998 ++++ lib/unpipc.h Thu Sep 30 10:23:56 1999 +@@ -4,7 +4,7 @@ + #ifndef __unpipc_h + #define __unpipc_h + +-#include "../config.h" /* configuration options for current OS */ ++#include /* configuration options for current OS */ + /* "../config.h" is generated by configure */ + + /* If anything changes in the following list of #includes, must change diff --git a/net/libunpipc/files/patch-ad b/net/libunpipc/files/patch-ad new file mode 100644 index 000000000000..9cbe815a923a --- /dev/null +++ b/net/libunpipc/files/patch-ad @@ -0,0 +1,11 @@ +--- lib/Makefile.orig Thu Sep 30 10:33:02 1999 ++++ lib/Makefile Thu Sep 30 10:33:09 1999 +@@ -1,7 +1,7 @@ + include ../Make.defines + + # Following required by Solaris 2.x for Posix version of sigwait(). +-CFLAGS += -D_POSIX_PTHREAD_SEMANTICS ++CFLAGS += -D_POSIX_PTHREAD_SEMANTICS -I.. + + all: ${LIB_OBJS} + ar rv ${LIBUNPIPC_NAME} $? diff --git a/net/libunpipc/files/patch-ae b/net/libunpipc/files/patch-ae new file mode 100644 index 000000000000..2368fc7b0665 --- /dev/null +++ b/net/libunpipc/files/patch-ae @@ -0,0 +1,38 @@ +--- lib/wrappthread.c.orig Thu Sep 30 11:03:00 1999 ++++ lib/wrappthread.c Thu Sep 30 11:04:50 1999 +@@ -83,17 +83,6 @@ + } + + void +-Pthread_kill(pthread_t tid, int signo) +-{ +- int n; +- +- if ( (n = pthread_kill(tid, signo)) == 0) +- return; +- errno = n; +- err_sys("pthread_kill error"); +-} +- +-void + Pthread_mutexattr_init(pthread_mutexattr_t *attr) + { + int n; +@@ -274,17 +263,6 @@ + return; + errno = n; + err_sys("pthread_key_create error"); +-} +- +-void +-Pthread_setcancelstate(int state, int *oldstate) +-{ +- int n; +- +- if ( (n = pthread_setcancelstate(state, oldstate)) == 0) +- return; +- errno = n; +- err_sys("pthread_setcancelstate error"); + } + + void diff --git a/net/libunpipc/pkg-comment b/net/libunpipc/pkg-comment new file mode 100644 index 000000000000..f7978b93cffb --- /dev/null +++ b/net/libunpipc/pkg-comment @@ -0,0 +1 @@ +The networking library used in UNIX Network Programming Volume 2 2e diff --git a/net/libunpipc/pkg-descr b/net/libunpipc/pkg-descr new file mode 100644 index 000000000000..a4515a02bb84 --- /dev/null +++ b/net/libunpipc/pkg-descr @@ -0,0 +1,12 @@ +libunp is the library used in W. Richard Steven's book "UNIX Network +Programming Volume 2, 2nd Edition". It contains the library and headers +used in the examples as well as all programs from the text that compile on +FreeBSD systems. + +For more information on the book, see + +http://www.phptr.com/ptrbooks/ptr_013490012X.html + +For more info on W. Richard Stevens, see + +http://www.kohala.com/~rstevens/ diff --git a/net/libunpipc/pkg-plist b/net/libunpipc/pkg-plist new file mode 100644 index 000000000000..784055b4a02e --- /dev/null +++ b/net/libunpipc/pkg-plist @@ -0,0 +1,3 @@ +include/unpipc.h +include/unpipc_config.h +lib/libunpipc.a -- cgit v1.2.3