1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/net/libunp/Makefile
Sergey Matveychuk a53938d6ea - Fix unfechable URL
PR:		ports/77620
Submitted by:	Simon Barner <barner(at)gmx.de>
2005-02-17 07:02:22 +00:00

44 lines
1.1 KiB
Makefile

# Ports collection makefile for: libunp
# Date created: Sept 28, 1999
# Whom: james@targetnet.com
#
# $FreeBSD$
#
PORTNAME= libunp
PORTVERSION= 1.0
PORTREVISION= 1
CATEGORIES= net ipv6
MASTER_SITES= http://www.kohala.com/start/unpv12e/
DISTNAME= unpv12e
MAINTAINER= ports@FreeBSD.org
COMMENT= The networking library used in UNIX Network Programming Volume 1 2e
GNU_CONFIGURE= yes
USE_GMAKE= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "alpha" && ${OSVERSION} < 500000
BROKEN= "Does not compile on alpha 4.x"
.endif
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>