blob: df3d1be0976df06b0eb39a79aecdd27fa65c63bf (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Created by: redcrash@gmail.com
# $FreeBSD$
PORTNAME= papi
PORTVERSION= 5.4.3
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= http://icl.cs.utk.edu/projects/papi/downloads/
MAINTAINER= pizzamig@FreeBSD.org
COMMENT= API to access the performance counter hw in the microprocessor
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/LICENSE.txt
TEST_TARGET= fulltest
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
LIB_DEPENDS+= libopa.so:net/mpich2
USES= fortran gmake pathfix pkgconfig
PATHFIX_MAKEFILEIN= Makefile.inc
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src
WRKMAN= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/man
INSTALL_TARGET= install-all
CONFIGURE_ARGS+= --with-tests=ctests
OPTIONS_DEFINE= CORETEMP DEBUGINFO
CORETEMP_DESC= Add Intel Core thermal sensor (need coretemp.ko)
DEBUGINFO_DESC= Add debug information (increased verbosity)
CORETEMP_CONFIGURE_ON= --with-components=coretemp_freebsd
DEBUGINFO_CONFIGURE_WITH= debug
.include <bsd.port.options.mk>
HAS_HWPMC!= ${SYSCTL} kern.hwpmc.nsamples >/dev/null 2>&1 && ${ECHO_CMD} 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 read pkg-message)
.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>
|