1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00
freebsd-ports/devel/papi/Makefile
Thomas Zander 41b357a0c5 - Update to upstream release 5.3.0
- Add LICENSE
- Simplify OPTIONS handling

Approved by:	mentors (implicit)
2014-07-12 11:25:04 +00:00

63 lines
1.8 KiB
Makefile

# Created by: redcrash@gmail.com
# $FreeBSD$
PORTNAME= papi
PORTVERSION= 5.3.0
CATEGORIES= devel
MASTER_SITES= http://icl.cs.utk.edu/projects/papi/downloads/
MAINTAINER= ports@FreeBSD.org
COMMENT= API to access the performance counter hw in the microprocessor
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/LICENSE.txt
ONLY_FOR_ARCHS= i386 amd64
ONLY_FOR_ARCHS_REASON= HWPMC kernel module is only available for I386 and \
AMD64 machines
NO_PACKAGE= Needs to be compiled for specific CPU
STRIP= # empty
USE_LDCONFIG= yes
USES= gmake
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
WRKMAN= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/man
INSTALL_TARGET= install-all
OPTIONS_DEFINE= CORETEMP DEBUGINFO
CORETEMP_DESC= Add Intel Core thermal sensor (need coretemp.ko)
DEBUGINFO_DESC= Add debug information (increased verbosity)
DEBUGINFO_CONFIGURE_WITH= debug
.include <bsd.port.options.mk>
HAS_HWPMC!= ${SYSCTL} kern.hwpmc.nsamples >/dev/null 2>&1 && echo yes || ${ECHO_CMD}
.if ${HAS_HWPMC} != yes
IGNORE= needs hwpmc module loaded or compiled into the kernel. \
Please consult hwpmc(4) on how to do it (or cat pkg-message)
.endif
CONFIGURE_ARGS+= --with-tests=ctests
.if ${PORT_OPTIONS:MCORETEMP}
CONFIGURE_ARGS+= --with-components=coretemp_freebsd
.endif
post-patch:
${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|g' \
${WRKSRC}/components/appio/tests/appio_test_pthreads.c \
${WRKSRC}/components/appio/tests/iozone/iozone.c \
${WRKSRC}/components/appio/tests/iozone/libasync.c \
${WRKSRC}/components/perfctr_ppc/linux-ppc64.h \
${WRKSRC}/ctests/omptough.c \
${WRKSRC}/ctests/pernode.c \
${WRKSRC}/ctests/zero_shmem.c \
${WRKSRC}/libpfm-3.y/lib/pfmlib_sicortex.c \
${WRKSRC}/libpfm4/lib/pfmlib_sicortex.c \
${WRKSRC}/testlib/papi_test.h
.include <bsd.port.mk>