diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2007-06-30 11:41:01 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2007-06-30 11:41:01 +0000 |
commit | 6186b888c2a23318e03b6eae952eef518df7ce7e (patch) | |
tree | bad7e38d78c95a39a38e792f037f639829fb1fa0 /devel/papi | |
parent | - Update to 2.7 (diff) |
1: add BUILD_DEPENDS to gfortran when FTESTS enable.
2: IGNORE FreeBSD < 6.
Submitted by: maintainer
Diffstat (limited to 'devel/papi')
-rw-r--r-- | devel/papi/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/devel/papi/Makefile b/devel/papi/Makefile index 3b77df487484..35897edfe7dd 100644 --- a/devel/papi/Makefile +++ b/devel/papi/Makefile @@ -39,6 +39,7 @@ PLIST_SUB+= CTESTS="" PLIST_SUB+= FTESTS="@comment " .else PLIST_SUB+= FTESTS="" +BUILD_DEPENDS= gfortran:${PORTSDIR}/lang/gcc42 .endif .if defined(WITHOUT_DEBUG) @@ -47,6 +48,10 @@ CONFIGURE_ARGS+= --without-debug CONFIGURE_ARGS+= --with-debug .endif +.if ${OSVERSION} < 600000 +IGNORE= requires FreeBSD 6 or later +.endif + MAN1= papi_avail.1 \ papi_clockres.1 \ papi_command_line.1 \ |