mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
b2506bb1f0
PR: ports/63019 Submitted by: Matthew D.Fuller <fullermd@over-yonder.net> Approved by: maintainer
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# New ports collection makefile for: dmalloc
|
|
# Date created: 7 December 2000
|
|
# Whom: Jeremy Shaffner <jeremy@external.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dmalloc
|
|
PORTVERSION= 5.3.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= dmalloc
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= jeremy@external.org
|
|
COMMENT= Portable debug memory allocation library
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --enable-threads --enable-shlib
|
|
CFLAGS+= -fPIC
|
|
USE_REINPLACE= yes
|
|
INSTALLS_SHLIB= yes
|
|
|
|
ALL_TARGET= all heavy
|
|
INSTALL_TARGET= install
|
|
|
|
INFO= dmalloc
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
INSTALL_TARGET+=installdocs installinfo
|
|
.endif
|
|
|
|
pre-patch:
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|\.so|\.so.1|' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@(cd ${PREFIX}/lib; \
|
|
${LN} -sf ${PREFIX}/lib/libdmalloc.so.1 ${PREFIX}/lib/libdmalloc.so; \
|
|
${LN} -sf ${PREFIX}/lib/libdmallocxx.so.1 ${PREFIX}/lib/libdmallocxx.so; \
|
|
${LN} -sf ${PREFIX}/lib/libdmallocth.so.1 ${PREFIX}/lib/libdmallocth.so; \
|
|
${LN} -sf ${PREFIX}/lib/libdmallocthcxx.so.1 ${PREFIX}/lib/libdmallocthcxx.so)
|
|
.if !defined(NOPORTDOCS)
|
|
@install-info ${PREFIX}/info/dmalloc.info ${PREFIX}/info/dir
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|