blob: 62b49268e20cf92730e2e5bd854118f46b549c9d (
plain)
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
35
36
37
38
39
40
|
# $NetBSD: Makefile,v 1.4 2015/06/12 10:48:49 wiz Exp $
DISTNAME= gperftools-2.4
PKGREVISION= 1
CATEGORIES= devel
MASTER_SITES= https://googledrive.com/host/0B6NtGsLhIcf7MWxMMF9JdTN3UVk/
MAINTAINER= cheusov@NetBSD.org
HOMEPAGE= https://code.google.com/p/gperftools/
COMMENT= Fast, multi-threaded malloc() and nifty performance analysis tools
LICENSE= modified-bsd
USE_TOOLS+= perl:run
REPLACE_PERL= src/pprof
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_LANGUAGES= c c++
CONFIGURE_ARGS+= --enable-frame-pointers # per README
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Darwin"
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/heap_checker.html ${DESTDIR}${PREFIX}/share/doc/${PKGNAME}/heap_checker.html
.endif
# http://code.google.com/p/gperftools/issues/detail?id=609
PKGCONFIG_OVERRIDE= libprofiler.pc
PKGCONFIG_OVERRIDE+= libtcmalloc.pc
PKGCONFIG_OVERRIDE+= libtcmalloc_debug.pc
PKGCONFIG_OVERRIDE+= libtcmalloc_minimal.pc
PKGCONFIG_OVERRIDE+= libtcmalloc_minimal_debug.pc
PKGCONFIG_OVERRIDE_STAGE= post-build
TEST_TARGET= check
.include "../../mk/bsd.pkg.mk"
|