View | Details | Raw Unified | Return to bug 228308 | Differences between
and this patch

Collapse All | Expand All

(-)devel/Makefile (+1 lines)
Lines 1256-1261 Link Here
1256
    SUBDIR += kaptain
1256
    SUBDIR += kaptain
1257
    SUBDIR += kcachegrind
1257
    SUBDIR += kcachegrind
1258
    SUBDIR += kcachegrind-kde4
1258
    SUBDIR += kcachegrind-kde4
1259
    SUBDIR += kcov
1259
    SUBDIR += kdbg
1260
    SUBDIR += kdbg
1260
    SUBDIR += kde-dev-scripts
1261
    SUBDIR += kde-dev-scripts
1261
    SUBDIR += kde-dev-scripts-kde4
1262
    SUBDIR += kde-dev-scripts-kde4
(-)devel/kcov/Makefile (+39 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	kcov
4
PORTVERSION=	35.55.20180516
5
CATEGORIES=	devel
6
7
MAINTAINER=	asomers@FreeBSD.org
8
COMMENT=	Coverage checker for ELF, Bash, and Python programs
9
10
LICENSE=	GPLv2
11
12
BUILD_DEPENDS=	binutils>=2.30:devel/binutils \
13
		cmake:devel/cmake
14
LIB_DEPENDS=	libcurl.so:ftp/curl \
15
		libintl.so:devel/gettext-runtime \
16
		libdw.so:devel/elfutils \
17
		libelf.so:devel/elfutils
18
19
USES=		cmake:outsource shebangfix python:build
20
21
CMAKE_ARGS+=	-DKCOV_INSTALL_MANDIR=${PREFIX}/man
22
23
python_CMD=	${PYTHON_CMD}
24
SHEBANG_REGEX=	'.*\.py'
25
26
# Use a GitHub tag until version 36 gets released, whenever that might be
27
USE_GITHUB=	yes
28
GH_ACCOUNT=	SimonKagstrom
29
GH_PROJECT=	kcov
30
GH_TAGNAME=	69dfa9c
31
32
PLIST_FILES=	bin/kcov \
33
		man/man1/kcov.1.gz
34
35
PORTDOCS=	COPYING \
36
		COPYING.externals \
37
		ChangeLog
38
39
.include <bsd.port.mk>
(-)devel/kcov/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1526500915
2
SHA256 (SimonKagstrom-kcov-35.55.20180516-69dfa9c_GH0.tar.gz) = 329bfbd9da30faea40f7376c4e71657c966486988d579d45e981b80c3d00fd16
3
SIZE (SimonKagstrom-kcov-35.55.20180516-69dfa9c_GH0.tar.gz) = 301874
(-)devel/kcov/pkg-descr (+8 lines)
Line 0 Link Here
1
Kcov is a FreeBSD/Linux/OSX code coverage tester for compiled languages, Python
2
and Bash. Kcov was originally a fork of Bcov, but has since evolved to support
3
a large feature set in addition to that of Bcov.
4
5
Kcov, like Bcov, uses DWARF debugging information for compiled programs to make
6
it possible to collect coverage information without special compiler switches.
7
8
WWW: https://simonkagstrom.github.io/kcov/index.html

Return to bug 228308