freebsd-ports/devel/leaktracer/Makefile
Martin Wilke 3e4ed01146 - Remove unneeded dependency from gtk12/gtk20 [1]
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG
- Remove X11BASE support in favor of LOCALBASE or PREFIX
- Use USE_LDCONFIG instead of INSTALLS_SHLIB
- Remove unneeded USE_GCC 3.4+

Thanks to all Helpers:
	Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr,
	ehaupt, nox, itetcu, flz, pav

PR:		116263
Tested on:	pointyhat
Approved by:	portmgr (pav)
2008-04-19 17:56:05 +00:00

37 lines
994 B
Makefile

# New ports collection makefile for: LeakTracer
# Date created: 04 Feb 2004
# Whom: Alexey Dokuchaev <danfe@regency.nsu.ru>
#
# $FreeBSD$
#
PORTNAME= leaktracer
PORTVERSION= 2.4
CATEGORIES= devel
MASTER_SITES= http://www.andreasen.org/LeakTracer/ \
http://freebsd.nsu.ru/distfiles/
DISTNAME= LeakTracer
MAINTAINER= danfe@FreeBSD.org
COMMENT= Trace and analyze memory leaks in C++ programs
USE_LDCONFIG= yes
USE_GMAKE= yes
USE_PERL5_RUN= yes
MAKE_ENV= CXX="${CXX}" \
PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
PTHREAD_LIBS="${PTHREAD_LIBS}"
PLIST_FILES= bin/LeakCheck bin/leak-analyze lib/LeakTracer.so
PORTDOCS= README README.html
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/LeakCheck ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/leak-analyze ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/LeakTracer.so ${PREFIX}/lib
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.html ${DOCSDIR}
.endif
.include <bsd.port.mk>