freebsd-ports/net/libunp/Makefile
Dan Moschuk a759fd52db libunp is the library used in W. Richard Steven's book "UNIX Network
Programming Volume 1, 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.

PR: ports/14057
Submitted by: James FitzGibbon <james@targetnet.com>
1999-10-02 19:13:06 +00:00

39 lines
985 B
Makefile

# Ports collection makefile for: libunp
# Version required: 1.0
# Date created: Sept 28, 1999
# Whom: james@targetnet.com
#
# $FreeBSD$
#
DISTNAME= unpv12e
PKGNAME= libunp-1.0
CATEGORIES= net
MASTER_SITES= ftp://ftp.kohala.com/pub/rstevens/ \
http://www.cs.columbia.edu/networks98/stevens/
MAINTAINER= james@targetnet.com
GNU_CONFIGURE= yes
USE_GMAKE= yes
.include <bsd.port.pre.mk>
pre-patch:
@ ${CP} ${WRKSRC}/lib/wrapsock.c ${WRKSRC}/lib/wrapsock_r.c
post-configure:
@ ${MKDIR} ${WRKSRC}/unp
@ ${LN} -s ${WRKSRC}/config.h ${WRKSRC}/unp/config.h
@ ${LN} -s ${WRKSRC}/lib/addrinfo.h ${WRKSRC}/unp/addrinfo.h
do-install:
${INSTALL_DATA} ${WRKSRC}/libunp.a ${PREFIX}/lib
${INSTALL_DATA} ${WRKSRC}/libunp_r.a ${PREFIX}/lib
${MKDIR} ${PREFIX}/include/unp
${INSTALL_DATA} ${WRKSRC}/lib/unp.h ${PREFIX}/include
${INSTALL_DATA} ${WRKSRC}/lib/addrinfo.h ${PREFIX}/include/unp
${INSTALL_DATA} ${WRKSRC}/config.h ${PREFIX}/include/unp
.include <bsd.port.post.mk>