2012-10-05 17:02:43 +02:00
|
|
|
# Created by: Simon Barner <barner@gmx.de>
|
2004-07-31 20:24:18 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= kcachegrind
|
2012-12-01 11:46:53 +01:00
|
|
|
PORTVERSION= 0.7.3
|
2004-07-31 20:24:18 +02:00
|
|
|
CATEGORIES= devel kde
|
2012-01-18 13:30:20 +01:00
|
|
|
MASTER_SITES= http://kcachegrind.sourceforge.net/
|
2004-07-31 20:24:18 +02:00
|
|
|
|
2009-05-10 20:20:11 +02:00
|
|
|
MAINTAINER= beat@FreeBSD.org
|
2004-07-31 20:24:18 +02:00
|
|
|
COMMENT= Profiling Visualization Tool
|
|
|
|
|
2010-06-05 11:59:54 +02:00
|
|
|
LICENSE= GPLv2
|
|
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
|
2009-07-10 15:30:26 +02:00
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
2004-07-31 20:24:18 +02:00
|
|
|
|
2013-04-26 12:44:28 +02:00
|
|
|
USES= cmake gettext
|
2012-01-18 13:30:20 +01:00
|
|
|
USE_KDE4= automoc4 kdehier kdelibs
|
2012-06-06 08:44:37 +02:00
|
|
|
USE_QT4= moc_build qmake_build rcc_build uic_build
|
2009-05-10 20:20:11 +02:00
|
|
|
INSTALLS_ICONS= yes
|
2004-07-31 20:24:18 +02:00
|
|
|
|
2012-10-05 17:02:43 +02:00
|
|
|
OPTIONS_DEFINE= DOT VALGRIND
|
|
|
|
OPTIONS_DEFAULT= DOT
|
|
|
|
DOT_DESC= Use GraphViz/dot to render call graphs
|
|
|
|
VALGRIND_DESC= Install devel/valgrind
|
2004-09-01 18:27:21 +02:00
|
|
|
|
2012-10-05 17:02:43 +02:00
|
|
|
.include <bsd.port.options.mk>
|
2004-09-01 18:27:21 +02:00
|
|
|
|
2012-10-05 17:02:43 +02:00
|
|
|
.if ${PORT_OPTIONS:MDOT}
|
2004-09-01 18:27:21 +02:00
|
|
|
RUN_DEPENDS+= dot:${PORTSDIR}/graphics/graphviz
|
|
|
|
.endif
|
|
|
|
|
2012-10-05 17:02:43 +02:00
|
|
|
.if ${PORT_OPTIONS:MVALGRIND}
|
2010-06-05 11:59:54 +02:00
|
|
|
RUN_DEPENDS+= valgrind:${PORTSDIR}/devel/valgrind
|
2009-07-10 15:30:26 +02:00
|
|
|
.endif
|
|
|
|
|
2012-10-05 17:02:43 +02:00
|
|
|
.include <bsd.port.mk>
|