29 lines
607 B
Makefile
29 lines
607 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: libxalloc
|
|
# Date created: 12 April 1998
|
|
# Whom: Andrey Zakhvatov
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libxalloc
|
|
PORTVERSION= 1.0.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://shh.thathost.com/pub-unix/files/
|
|
DISTNAME= xalloc-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A memory allocation library with error checking
|
|
|
|
MAKEFILE= ${FILESDIR}/Makefile.lib
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/CREDITS ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|