summaryrefslogtreecommitdiff
path: root/net/libunpipc/Makefile
diff options
context:
space:
mode:
authorDan Moschuk <dan@FreeBSD.org>1999-10-02 19:17:58 +0000
committerDan Moschuk <dan@FreeBSD.org>1999-10-02 19:17:58 +0000
commit1f4049bf91d91e81d996502b6d252f05811e0d7f (patch)
tree473cfd56b2e9d5cb35179bf162426350f7904cdd /net/libunpipc/Makefile
parentActivate libunp (diff)
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 <james@targetnet.com>
Notes
Notes: svn path=/head/; revision=22130
Diffstat (limited to 'net/libunpipc/Makefile')
-rw-r--r--net/libunpipc/Makefile30
1 files changed, 30 insertions, 0 deletions
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 <bsd.port.pre.mk>
+
+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 <bsd.port.post.mk>