mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add dmalloc 4.8.1, a version of the malloc(3) library that provides
powerful debugging facilities at runtime. Required for a forthcoming port. PR: 23792 Submitted by: Jeremy Shaffner <jeremy@external.org>
This commit is contained in:
parent
d23792c8aa
commit
e6f6ab9a54
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=36364
6 changed files with 78 additions and 0 deletions
|
@ -64,6 +64,7 @@
|
|||
SUBDIR += cxref
|
||||
SUBDIR += ddd
|
||||
SUBDIR += dmake
|
||||
SUBDIR += dmalloc
|
||||
SUBDIR += doc++
|
||||
SUBDIR += doxygen
|
||||
SUBDIR += dryad
|
||||
|
|
50
devel/dmalloc/Makefile
Normal file
50
devel/dmalloc/Makefile
Normal file
|
@ -0,0 +1,50 @@
|
|||
# New ports collection makefile for: dmalloc
|
||||
# Date created: 7 December 2000
|
||||
# Whom: Jeremy Shaffner <jeremy@external.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= dmalloc
|
||||
PORTVERSION= 4.8.1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= dmalloc
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
# Original from: Gray Watson http://256.com/gray/email.html
|
||||
MAINTAINER= jeremy@external.org
|
||||
|
||||
INSTALLS_SHLIB= YES
|
||||
GNU_CONFIGURE= YES
|
||||
CONFIGURE_ARGS+=--enable-threads --enable-shlib
|
||||
|
||||
# NOTE: we make the test program first because otherwise it screws up
|
||||
# and tried to use the .so instead of the .a for some stupid reason
|
||||
ALL_TARGET= dmalloc_t all light
|
||||
|
||||
pre-patch:
|
||||
@${PERL} -pi -e 's|-lpthread|-pthread|g' ${WRKSRC}/configure
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/dmalloc ${PREFIX}/bin
|
||||
${INSTALL_DATA} ${WRKSRC}/dmalloc.h ${PREFIX}/include
|
||||
${INSTALL_DATA} ${WRKSRC}/libdmallocthcxx.so ${PREFIX}/lib/libdmallocthcxx.so.1
|
||||
@${LN} -sf ${PREFIX}/lib/libdmallocthcxx.so.1 ${PREFIX}/lib/libdmallocthcxx.so
|
||||
${INSTALL_DATA} ${WRKSRC}/libdmallocthcxx.a ${PREFIX}/lib
|
||||
${INSTALL_DATA} ${WRKSRC}/libdmallocth.so ${PREFIX}/lib/libdmallocth.so.1
|
||||
@${LN} -sf ${PREFIX}/lib/libdmallocth.so.1 ${PREFIX}/lib/libdmallocth.so
|
||||
${INSTALL_DATA} ${WRKSRC}/libdmallocth.a ${PREFIX}/lib
|
||||
${INSTALL_DATA} ${WRKSRC}/libdmalloc.so ${PREFIX}/lib/libdmalloc.so.1
|
||||
@${LN} -sf ${PREFIX}/lib/libdmalloc.so.1 ${PREFIX}/lib/libdmalloc.so
|
||||
${INSTALL_DATA} ${WRKSRC}/libdmalloc.a ${PREFIX}/lib
|
||||
${INSTALL_DATA} ${WRKSRC}/libdmalloclp.a ${PREFIX}/lib
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${PREFIX}/share/doc/dmalloc
|
||||
${INSTALL_DATA} ${WRKSRC}/dmalloc.html ${PREFIX}/share/doc/dmalloc
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/dmalloc.info ${PREFIX}/info
|
||||
@install-info ${PREFIX}/info/dmalloc.info ${PREFIX}/info/dir
|
||||
|
||||
.include <bsd.port.mk>
|
1
devel/dmalloc/distinfo
Normal file
1
devel/dmalloc/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (dmalloc-4.8.1.tgz) = 730a802f991f4ca293a02bccaa3cf031
|
1
devel/dmalloc/pkg-comment
Normal file
1
devel/dmalloc/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Portable debug memory allocation library
|
8
devel/dmalloc/pkg-descr
Normal file
8
devel/dmalloc/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
The debug memory allocation or dmalloc library has been designed as a
|
||||
portable drop in replacement for the system's memory management
|
||||
routines while providing powerful debugging facilities configurable at
|
||||
runtime. These facilities include such things as memory-leak
|
||||
tracking, fence-post write detection, file/line number reporting, and
|
||||
general logging of statistics. Online documentation is available at:
|
||||
|
||||
WWW: http://dmalloc.com/
|
17
devel/dmalloc/pkg-plist
Normal file
17
devel/dmalloc/pkg-plist
Normal file
|
@ -0,0 +1,17 @@
|
|||
bin/dmalloc
|
||||
include/dmalloc.h
|
||||
@unexec install-info --delete %D/info/dmalloc.info %D/info/dir
|
||||
info/dmalloc.info
|
||||
@exec install-info %D/info/dmalloc.info %D/info/dir
|
||||
lib/libdmalloc.a
|
||||
lib/libdmalloc.so
|
||||
lib/libdmalloc.so.1
|
||||
lib/libdmalloclp.a
|
||||
lib/libdmallocth.a
|
||||
lib/libdmallocth.so
|
||||
lib/libdmallocth.so.1
|
||||
lib/libdmallocthcxx.a
|
||||
lib/libdmallocthcxx.so
|
||||
lib/libdmallocthcxx.so.1
|
||||
share/doc/dmalloc/dmalloc.html
|
||||
@dirrm share/doc/dmalloc
|
Loading…
Add table
Reference in a new issue