1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/devel/dmalloc/Makefile
Bryan Drewery fe14973310 - Use GNU_CONFIGURE so CONFIG_SITE is used for quicker build due to caching.
The included Makefile.in does not support DESTDIR, so the --prefix hack
  is still needed.
2015-01-28 17:41:19 +00:00

52 lines
1.3 KiB
Makefile

# Created by: Jeremy Shaffner <jeremy@external.org>
# $FreeBSD$
PORTNAME= dmalloc
PORTVERSION= 5.5.2
PORTREVISION= 1
CATEGORIES= devel
# Version 5.5.2 is only available at this URL
MASTER_SITES= http://dmalloc.com/releases/
EXTRACT_SUFX= .tgz
MAINTAINER= mjl@luckie.org.nz
COMMENT= Portable debug memory allocation library
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-threads --enable-shlib
GNU_CONFIGURE_PREFIX= "${STAGEDIR}${PREFIX}"
CONFIGURE_ENV= INSTALL_PROGRAM="${INSTALL_DATA}"
CFLAGS= -fPIC
USE_LDCONFIG= yes
MAKE_JOBS_UNSAFE= yes
ALL_TARGET= all heavy
INSTALL_TARGET= install
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
INSTALL_TARGET+=installdocs
.endif
post-install:
${CHMOD} 755 ${STAGEDIR}${PREFIX}/bin/dmalloc
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/dmalloc
@(cd ${STAGEDIR}${PREFIX}/lib; \
${CHMOD} 644 libdmalloc.so.1; \
${STRIP_CMD} libdmalloc.so.1; \
${LN} -sf libdmalloc.so.1 libdmalloc.so; \
${CHMOD} 644 libdmallocxx.so.1; \
${STRIP_CMD} libdmallocxx.so.1; \
${LN} -sf libdmallocxx.so.1 libdmallocxx.so; \
${CHMOD} 644 libdmallocth.so.1; \
${STRIP_CMD} libdmallocth.so.1; \
${LN} -sf libdmallocth.so.1 libdmallocth.so; \
${CHMOD} 644 libdmallocthcxx.so.1; \
${STRIP_CMD} libdmallocthcxx.so.1; \
${LN} -sf libdmallocthcxx.so.1 libdmallocthcxx.so)
.include <bsd.port.mk>