freebsd-ports/devel/libmalloc/Makefile
Ade Lovett fd4dfa8b54 Mark BROKEN. This port installs a malloc.h into ${PREFIX}/include,
which is getting picked up first by a bunch of other ports.

In addition, the PLIST is unsorted, and the shared library is still
using a.out major/minor numbers, and is generally otherwise a mess.

Submitted by:	A bunch of people on -stable, -ports and elsewhere
		complaining that other ports break in mysterious ways
		with this port installed.
2000-10-19 15:09:44 +00:00

33 lines
759 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
BROKEN= "Installs malloc.h, masking system version"
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>