freebsd-ports/devel/libmalloc/Makefile
Satoshi Asami ffb21b5654 Rename INSTALLS_SHLIBS to INSTALLS_SHLIB. (There was a typo in the
previous commit message to bsd.port.mk, which said INSTALL_SHLIBS.  Boo.)

Line up the rhs of variable assignments nicely.  Remove a couple of extra
whitespaces while I'm here.

Suggested by:	 sobomax
2000-06-16 21:52:40 +00:00

31 lines
705 B
Makefile

# ex:ts=8
# Ports collection makefile for: Mark Moraes malloc library
# Date created: 11 January 1995
# Whom: jkh
#
# $FreeBSD$
#
PORTNAME= libmalloc
PORTVERSION= 1.18
CATEGORIES= devel
MASTER_SITES= ftp://ftp.cs.toronto.edu/pub/moraes/
DISTNAME= malloc-${PORTVERSION}
MAINTAINER= obrien@FreeBSD.org
INSTALLS_SHLIB= yes
.include <bsd.port.pre.mk>
MANUAL_PACKAGE_BUILD= installs malloc.h
post-install:
@cd ${PREFIX}/include ; ${LN} -sf malloc.h libmalloc.h
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/libmalloc
${INSTALL_DATA} ${WRKSRC}/malloc.doc ${PREFIX}/share/doc/libmalloc
${INSTALL_DATA} ${WRKSRC}/NOTE ${PREFIX}/share/doc/libmalloc
.endif
.include <bsd.port.post.mk>