f5eab73fba
Changes since 1.5.0: * Improved: Updated the documentation * Improved: Implemented multiple-call nodes in the call-graph * Improved: Workspace toolbar buttons re-arranged * Improved: Hitting Enter in the "Open Project" dialogue's list of recent projects opens the selected project * Bug fix: Handle file extensions correctly in the file list * Bug fix: Avoid hanging status bar messages when a project is closed * Bug fix: Prevent infinite loops in the file finder in the presence of recursive symbolic links * Bug fix: Child windows should not disappear when dialogues are invoked * Bug fix: Added padding to the call graph, to avoid chopped-off drawing of nodes close to the borders * Bug fix: Honour the preferred font when drawing the graph * Bug fix: Delete temporary dot files used for drawing graphs * Bug fix: Save call-tree files when a project is closed * Bug fix: Clean-up a project's directory name after it is created Maintainer update by Martijn van Buul via PR 37701.
35 lines
905 B
Makefile
35 lines
905 B
Makefile
# $NetBSD: Makefile,v 1.16 2008/01/05 23:29:42 rillig Exp $
|
|
#
|
|
|
|
DISTNAME= kscope-1.6.0
|
|
CATEGORIES= devel kde
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=kscope/}
|
|
|
|
MAINTAINER= martijn.van.buul@gmail.com
|
|
HOMEPAGE= http://kscope.sourceforge.net/
|
|
COMMENT= KDE frontend for cscope
|
|
|
|
DEPENDS+= cscope>=15.6:../../devel/cscope
|
|
DEPENDS+= exctags>=5.5.4:../../devel/exctags
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= gmake pkg-config
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_LANGUAGES= c c++
|
|
|
|
post-build:
|
|
sed -e "s,@LOCALBASE@,${LOCALBASE},g" \
|
|
${FILESDIR}/kscoperc > ${WRKDIR}/kscoperc
|
|
|
|
pre-install:
|
|
${INSTALL_DATA} ${WRKDIR}/kscoperc ${KDEDIR}/share/kde/config
|
|
|
|
.include "../../meta-pkgs/kde3/kde3.mk"
|
|
|
|
.include "../../graphics/graphviz/buildlink3.mk"
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../x11/kdebase3/buildlink3.mk"
|
|
.include "../../x11/kdelibs3/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|