ports/devel/google-perftools/Makefile
Mathieu Arnold cb9a2b582c Cleanup after removal of libexecinfo from ports.
PR:		220271
Submitted by:	mat (review), Yasuhiro KIMURA (PR)
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D11488
2017-09-22 10:48:57 +00:00

86 lines
2.6 KiB
Makefile

# Created by: Yuri Victorovich <yuri@rawbw.com>
# $FreeBSD$
PORTNAME= google-perftools
PORTVERSION= 2.6.1
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= https://github.com/gperftools/gperftools/releases/download/gperftools-${PORTVERSION}/
DISTNAME= gperftools-${PORTVERSION}
MAINTAINER= yuri@rawbw.com
COMMENT= Fast, multi-threaded malloc() and nifty performance analysis tools
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_powerpc= fails to build: assembly not supported, see PR#94: http://code.google.com/p/google-perftools/issues/detail?id=94&can=1
BROKEN_powerpc64= fails to build: assembly not supported, see PR#94: http://code.google.com/p/google-perftools/issues/detail?id=94&can=1
BROKEN_sparc64= fails to build: assembly not supported, see PR#94: http://code.google.com/p/google-perftools/issues/detail?id=94&can=1
LIB_DEPENDS= libunwind.so:devel/libunwind
WRKSRC= ${WRKDIR}/gperftools-${PORTVERSION}
DOCSDIR= ${PREFIX}/share/doc/gperftools
GNU_CONFIGURE= yes
USES= compiler gmake libtool
USE_LDCONFIG= yes
TEST_TARGET= check
LIBS+= -lexecinfo
OPTIONS_DEFINE= DOCS
OPTIONS_DEFAULT=PAGE8K ALIGN16
OPTIONS_SINGLE= PAGESIZE ALIGN
OPTIONS_SINGLE_ALIGN= ALIGN8 ALIGN16
OPTIONS_SINGLE_PAGESIZE=PAGE8K PAGE32K PAGE64K
ALIGN_DESC= The tcmalloc allocation alignment
ALIGN8_DESC= 8 bytes allocation alignment
ALIGN16_DESC= 16 bytes allocation alignment
PAGESIZE_DESC= The tcmalloc internal page size
PAGE8K_DESC= 8K page size
PAGE32K_DESC= 32K page size
PAGE64K_DESC= 64K page size
ALIGN8_CONFIGURE_ON= --with-tcmalloc-alignment=8
ALIGN16_CONFIGURE_ON= --with-tcmalloc-alignment=16
PAGE8K_CONFIGURE_ON= --with-tcmalloc-pagesize=8
PAGE32K_CONFIGURE_ON= --with-tcmalloc-pagesize=32
PAGE64K_CONFIGURE_ON= --with-tcmalloc-pagesize=64
.include <bsd.port.pre.mk>
.if ${COMPILER_TYPE} == "clang" && !defined(USE_GCC)
# clang cannot disable builtins individually
CXXFLAGS+= -fno-builtin
.endif
.if ${ARCH} == "amd64"
CONFIGURE_ARGS+=--enable-frame-pointers
.endif
post-patch:
.if ${COMPILER_TYPE} == "clang" && !defined(USE_GCC)
@${REINPLACE_CMD} -Ee \
's|-fno-builtin-[a-z_]+||g' \
${WRKSRC}/Makefile.in
.endif
post-patch-DOCS-off:
@${REINPLACE_CMD} -e \
'/^install-data-am:/ s|install-dist_docDATA||' \
${WRKSRC}/Makefile.in
post-build:
@${ECHO}
@${ECHO} "Please run 'make check' (requires bash)."
@${ECHO} "Two testcases are known to fail. Testsuite is known to be"
@${ECHO} "unreliable and give false positives and negatives (PR#661)."
@${ECHO}
post-install:
${MV} ${STAGEDIR}${PREFIX}/bin/pprof ${STAGEDIR}${PREFIX}/bin/perftools-pprof
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*.so.*
.include <bsd.port.post.mk>