blob: 8bf401b6ebe99f57902b8141742031a06c29f8a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# New ports collection makefile for: oaf
# Date created: 1st June 2000
# Whom: Ade Lovett <ade@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= ccmalloc
PORTVERSION= 0.3.9
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= http://www2.inf.ethz.ch/personal/biere/projects/ccmalloc/
MAINTAINER= ports@FreeBSD.org
COMMENT= C/C++ memory profiler and memory leak tracer
USE_PERL5= yes
USE_GMAKE= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --prefix=${PREFIX}
CC= gcc -g -Wall
CXX= g++
.include <bsd.port.pre.mk>
.if ${OSVERSION} > 500000
EXTRA_PATCHES= ${FILESDIR}/patch5-configure
.endif
post-install:
@${CAT} pkg-message
.include <bsd.port.post.mk>
|