mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
46 lines
1016 B
Makefile
46 lines
1016 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= kcov
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 36
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= asomers@FreeBSD.org
|
|
COMMENT= Coverage checker for ELF, Bash, and Python programs
|
|
|
|
LICENSE= GPLv2 MIT # MIT for bundled handlebars, jquery, tablesorter
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING
|
|
|
|
ONLY_FOR_ARCHS= amd64
|
|
ONLY_FOR_ARCHS_REASON= ptrace code is only implemented for amd64
|
|
|
|
BUILD_DEPENDS= binutils>=2.30:devel/binutils
|
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
|
libdw.so:devel/elfutils \
|
|
libelf.so:devel/elfutils
|
|
|
|
USES= cmake shebangfix python:build gettext-runtime
|
|
|
|
# Remove -DPORTVERSION (and associated patch) when basing the port on an
|
|
# official release
|
|
CMAKE_ARGS= -DKCOV_INSTALL_MANDIR=${PREFIX}/man -DPORTVERSION=${PORTVERSION}
|
|
|
|
SHEBANG_GLOB= *.py
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= SimonKagstrom
|
|
|
|
PLIST_FILES= bin/kcov \
|
|
man/man1/kcov.1.gz
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
PORTDOCS= COPYING.externals \
|
|
ChangeLog
|
|
|
|
post-stage:
|
|
${RM} ${STAGEDIR}${DOCSDIR}/COPYING
|
|
|
|
.include <bsd.port.mk>
|