mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
fd4dfa8b54
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.
34 lines
759 B
Makefile
34 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>
|